Alexandre Mutel
Alexandre Mutel
> I was just wondering if I could insert them while parsing the document by putting their renderer first and then telling the parser to parse the span of my...
> I'm sorry I meant to write put the section parser first, then find the sections and then parse the sections for other blocks. I basically woke op from the...
It is supposed to be formatted, all the tests in `Tomlyn.Tests` are relying on this, but it could be something else on your side that I can't tell. If you...
For both issues, it is likely, as stated in the readme: > **NOTICE** > > By default, Properties and methods of .NET objects are automatically exposed with lowercase and `_`...
> Is there a way to exclude partially received syntax from rendered HTML? e.g. if a backtick is received to start an inline code span, the backtick and content after...
Feel free to make a PR @JamesNK if you are satisfied with the code. Keeping it as an extension method on `MarkdownDocument` might be the less disruptive and might be...
> Where would the method go? You could add it to [MarkdownObjectExtensions](https://github.com/xoofx/markdig/blob/master/src/Markdig/Syntax/MarkdownObjectExtensions.cs), apply it maybe to `ContainerBlock` on the signature (doesn't have to be strictly a `MarkdownDocument`) > What name...
`d | array.size` should work, as implemented [here](https://github.com/scriban/scriban/blob/ff2056b212d34fdf7798fa8de10d1715b3d50aa9/src/Scriban/Functions/ArrayFunctions.cs#L596C27-L610) > But somethig trivial would be nice. It can't be any of > size: {{ d.size }} > count: {{ d.count }}...
> Should be: Not exactly. The syntax: ``` {{ if ... else if ... else ... end }} ``` is actually supported (multiline code block) as much as the other...
Indeed, possibly a bug. As a workaround, could you try to put the interpolation between `(`...`)`? _(Note: Too busy these days to have a look at bug fixing for this...