Serhan Apaydın

Results 15 comments of Serhan Apaydın

@fazleskhan MarkdownViewerPlusPlus uses [HTML-Renderer](https://github.com/ArthurHub/HTML-Renderer) to render HTML code but SVG (among many other things) is not supported. Although I guess it's still possible to convert svg images to png files...

Hi @frank-mi-usa I had the same problem but it's not directly related to MarkdownViewerPlusPlus itself. The problem is with the markdig package (The one that converts markdown code to html)....

Hey there, this is what my fork looks like: ![markdown-viewer-plus-plus](https://user-images.githubusercontent.com/540974/178296639-e5e75bd9-3b20-4b9c-be3d-4021ab7331ef.gif) If anyone's interested, I can upload the build assets and the stylesheet file.

Sorry for the delay, here you go: https://github.com/monoblaine/MarkdownViewerPlusPlus/releases/tag/v0.9.0

> @monoblaine Could I ask you to generate the 64 bit version of that? I've been unable to get it to build (as of 3 weeks ago) Here is the...

That's because HTMLRenderer cannot properly apply `vertical-align: baseline` to the monospaced element. The height of the element with monospaced text is smaller than its line box. When this is the...

MarkdownViewer uses [HTML-Renderer](https://github.com/ArthurHub/HTML-Renderer) to render HTML code but it lacks support for some css features (`:nth-child` selector is probably one of them). I have an experimental and a-little-buggy fork here:...

I've also come across this problem. The `>` characters are lost when the output html is parsed and converted to string: [Link to line](https://github.com/nea/MarkdownViewerPlusPlus/blob/ddf6512558e396206d684f9338c515a8ecf0188e/MarkdownViewerPlusPlus/Forms/AbstractRenderer.cs#L269) ```cs html = XDocument.Parse(html).ToString(); ``` @nea,...

Hi @bchavez , Have you tried changing the `OutputPath`? If not, change the `OutputPath` in your main project from ``` xml ... bin\Debug\ ... ... bin\Release\ ... ``` to ```...

> @monoblaine Any plans on enabling the Issues tab in your fork? Done.