HTML-Renderer icon indicating copy to clipboard operation
HTML-Renderer copied to clipboard

Cross framework (WinForms/WPF/PDF/Metro/Mono/etc.), Multipurpose (UI Controls / Image generation / PDF generation / etc.), 100% managed (C#), High performance HTML Rendering library.

Results 143 HTML-Renderer issues
Sort by recently updated
recently updated
newest added

This does not work: ``` html /* comment */ body { color: blue }; This works: ``` html body { color: blue };

this is valid CSS ```css code[class*="language-"], pre[class*="language-"] { color: black; } ``` Matches ```html xyz ```` HTML-Renderer ignores it.

enhancement
CSS

Consider property This CSS should work, but doesn't: ``` css .token.property { color: #c92c2c; } ``` But this does ``` css .property { color: #c92c2c; } ```

bug
CSS

https://www.w3.org/International/questions/qa-escapes Thanks.

enhancement
HTML

When I execute: `PdfDocument pdf = PdfGenerator.GeneratePdf("Hello WorldThis is html rendered text", PageSize.A4);` happens this exeception: `Method not found: 'Void TheArtOfDev.HtmlRenderer.Core.HtmlContainerInt.set_PageSize(TheArtOfDev.HtmlRenderer.Adapters.Entities.RSize)'.` My HtmlRenderer.PdfSharp version: 1.5.1-beta1 Because I need do a...

bug
PDF

im trying to add an HtmlPanel to a TableLayoutPanel dynamically and i set the RowStyle to AutoSize so that it will fit to the inserted HtmlPanel but it doesn't show...

question

Hi, I tried to render a piece of HTML containing emojis, but they are not displayed - each one is replaced by a couple of empty square blocks. Perhaps you...

enhancement
HTML

I hope this support math tag, such as mfrac. Can you give me some advices?

enhancement
HTML

Is it possible to use this library in a Xamarin.Forms .NET Standard Library project?

question

Im trying to write an application which converts HTML to PDF. I have tried to cram it all in one string HTML and CSS but it does not seem to...