Jörg Battermann

Results 18 comments of Jörg Battermann

@JonathanMagnan is there any viable workaround / ETA when this will be fixed? This issue -does- create structurally different HTML: This: ``` Some list: - A - B - C...

@JonathanMagnan thanks for the update! I've found a workaround in the mean time that does switch the behaviour to the expected one (see also https://stackoverflow.com/a/5557297/2591): setting the static dictionary /...

Jonathan, XHTML syntax is an application of XML and therefore non-closed tags such as `` would violate its rules / well-formedness (see also http://w3c.github.io/html-reference/documents.html#conformant-xml and for HTML5 https://www.w3.org/TR/html5/the-xhtml-syntax.html#xhtml). So the...

Yeah - for non-XHTML it would make sense to make it _opt-in_ / off by default because in that case the specs simply allow it both ways and it is...

Ahhh.. that makes sense - I got a 'N' version of Windows 10 (European one without WMP by default installation).. will try it and report back if that helped. Thanks!

Unfortunately that was not it.. or not completely. Installed the Windows Media Player Feature, rebooted.. but still getting the exact same aforementioned exception. Is there any other dependency the screensaver...

Ah alright - as it turns out merely adding the 'Windows Media Player Feature' in Windows 10 itself is not enough for Windows N and KN versions - you need...

Thanks Robin & please, no hurry.. thanks for considering looking at it.. much appreciated 👍

I'd have a very easy repro @EliotJones if you're still interested and using v0.1.4: ``` using (var document = PdfDocument.Open(@"529-Article Text-2712-1-10-20130506.pdf")) { Parallel.For(0, document.NumberOfPages, (pageIndex, ls) => { var pageNumber...

One additional Q here: once the pages are retrieved in an interlocked way, so always exactly one thread accessing the document to call .GetPage(number) of it, is it safe to...