eren

Results 6 comments of eren

If I didn't misunderstand the API, the split function only splits the document into two. I was looking for something that can be used to split a 10 page document...

Thank you for the prompt response. I started looking at the source, and I think it may be simpler to create a `CustomConverter` (which doesn't exist) using the converters that...

I could hack something together using your code: ```cs public class CustomConverter : ReverseMarkdown.Converter { private readonly IDictionary _converters = new Dictionary(); private readonly IConverter _innerTextConverter; public CustomConverter() { _converters["p"]...

I think NuGet package sources are stored in `nuget.config` file (https://docs.microsoft.com/en-us/nuget/reference/nuget-config-file). And one can use the `packageSourceCredentials` to get crendentials per source.

It looks like this project already implements mermaid syntax highlighting for markdown: https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight I wonder if it would be easy/possible to reuse the code/logic?