Alexandre Mutel
Alexandre Mutel
FYI, I wrote a .NET library [grpc-curl](https://github.com/xoofx/grpc-curl) that provides an API to access dynamically a gRPC service by using reflection. It's available in the NuGet package [DynamicGrpc](https://www.nuget.org/packages/DynamicGrpc) You can access...
> In the [GridTableParser.cs](https://github.com/xoofx/markdig/blob/1a1bbecc467a800dd6b39e68825df50309f6065c/src/Markdig/Extensions/Tables/GridTableParser.cs#L15-L16), the OpeningCharacters is +. Because this is coming from https://pandoc.org/MANUAL.html#extension-grid_tables > But in [PipeTableBlockParser.cs](https://github.com/xoofx/markdig/blob/1a1bbecc467a800dd6b39e68825df50309f6065c/src/Markdig/Extensions/Tables/PipeTableBlockParser.cs#L25-L26), the OpeningCharacters is -. Why -? Because this is coming from GitHub...
As explained in the comment of PipeTableBlockParser [here](https://github.com/xoofx/markdig/blob/1a1bbecc467a800dd6b39e68825df50309f6065c/src/Markdig/Extensions/Tables/PipeTableBlockParser.cs#L11-L17) it is to discard list (that can start with `-`). ```md a | b - | - 0 | 1 ``` which...
> I never know that. I always think it's a block parser. Can you implement another block-based PipeTable parser? I never know there is a scenario for inline usage. At...
It is reproduced [here](https://babelmark.github.io/?text=Superscript%5E%2B%5E+or+Subscript+~%2B~%0A) I would believe it is a bug but don't have personal time dedicated to fix it, so PR welcome if someone is motivated. Not entirely sure...
Hey, Just want to raise my voice on this issue, as it is causing many of my packages to not render correctly on NuGet. For example: https://www.nuget.org/packages/Tomlyn/ On all my...
> @xoofx is this a good idea to remove reference (``) before adding in this part of code? I can create PR but I'm not sure about this fix. Dunno,...
> I just want to ask if you have any plans to extend NPlug for a host-side cross-platform library, for a DAW host to be able to use VST3s from...
Let me try to clarify a bit the interop used in NPlug. In order to interop with VST from C#, we need to generate 2 kind of managed wrapper, and...
> For example, since IPluginFactory is marked [plug imp], I need add [host imp] so that it generates both wrappers? You don't need to add `host imp` but change the...