Alexandre Mutel

Results 478 comments of Alexandre Mutel

The only sane way to do this would be to rewrite the syntax tree of the template and to add these strings before/after code blocks. Otherwise, there is no easy...

Could you post a repro code you are using so that I can replicate it in a unit test?

> Is there a plan to include the PrivacyInfo.xcprivacy manifest as required by Apple?
ref: I don't understand this question. How is this related to Tomlyn?

> This fails - we would expect nicely triple-quoted strings to be present here - as that's one of the major features of TOML over JSON! Your test is failing...

I would use `/` instead of \\ and you wouldn't have to change the parser: ```md [example link](../example.md) [example link](/../example.md) ``` None of the CommonMark parser are supporting \\ in...

> Honestly the safest approach might be to explicitly document decimal is not supported, and also throw an exception on use. Yep, agreed. TOML was not meant for portable data...

> Is this the intended behavior, or is it a mistake? Yes, this is the correct behavior. `TypedObjectAccessor` is created when a .NET objects is dynamically accessed through the scripting...

Repro [here](https://babelmark.github.io/?text=-%0A%0A-%0A%0A++foo%0A) > Isn't this strange? Yes, it's probably a bug.

`RendererBase` has several methods [WriteChildren](https://github.com/xoofx/markdig/blob/3535701d70066d055d06adaeaa1531b10601c6ac/src/Markdig/Renderers/RendererBase.cs#L101) and [`Write(MarkdownObject)`](https://github.com/xoofx/markdig/blob/3535701d70066d055d06adaeaa1531b10601c6ac/src/Markdig/Renderers/RendererBase.cs#L165) that are used to traverse the objects. Your derived `MarkdownObjectRenderer` will call back to these methods as it is done for the HtmlRenderers...