David Gamba
David Gamba
Hi @evalphobia sorry for the long delay in answering. It looks good, I need to give it a try but I wont be able to get to that in a...
Got this working using multiple function returns: First, declaring my mock: ```go func (g *testGitHubAPI) FilesContent(ctx context.Context, owner string, repo string, branch string, filepaths []string) (github.FileContentByPath, error) { args :=...
This is my current implementation of the calculator from chapter 4 using the visitor pattern. https://github.com/DavidGamba/go-antlr-calc Hopefully someone finds it useful. Couldn't get the underline error to work. As mentioned...
Newcomer instructions: 1. get a theme from: https://github.com/darshandsoni/asciidoctor-skins ``` wget https://raw.githubusercontent.com/darshandsoni/asciidoctor-skins/gh-pages/css/asciidoctor.css ``` 2. build with css ``` libasciidoc file.adoc --css ./asciidoctor.css ``` 3. Optionally, generate a PDF ``` wkhtmltopdf --enable-local-file-access...
Is it possible to support this feature by supporting it through an include to the external CSV file? Maybe in that way the parser has an easier time determining the...
@xcoulon thanks for getting back to me. Yes, your implementation is correct for HTML content were the ID for the refs need to be lowercased. In my case, since I...
This is my source code template for a pseudo xhtml based backend (a la dockbook): ``` ``` Since I am placing the code inside a CDATA block, I expect to...
@xcoulon I think this is a chroma issue, I created https://github.com/alecthomas/chroma/issues/639 Looking at my history I actually had to add the prefix manually but chroma should be able to include...
@xcoulon sorry, yes, to confirm, the `chroma-class-prefix` attribute does embed the correct chroma attribute prefix as expected and setting the `chroma-class-prefix` attribute to empty removes the prefix. IMHO this ticket...
We are also facing this issue (though haven't put any time to fix it yet, everything else is working very well). The additional piece of information is that the bundled...