Krzysztof Kowalczyk

Results 319 comments of Krzysztof Kowalczyk

I don't understand what you mean.

Also validate the directory structure inside the archive is correct. Can I just archive top-level files (say, `foo.html`, `bar.html`) or do they have to be in a directory (like `corpus/foo.html`...

Understood, but looking from the perspective of submitting instructions to projects about how to integrate their projects with fuzzit, I would like to script as much as possible, so they...

@tmm1 Very solid analysis. If you can reproduce this I would recommend running under windbg (https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools) to debug this. Convert debug info to .pdb using https://github.com/kjk/cv2pdb Windbg would allow you...

Another thing I would recommend is looking into a list of DLLs loaded into process. On Windows other software likes to inject itself into every running process and sometimes this...

@neurolabusc to minimize use of #ifdef and amount of changes I would recommend using utf8 on windows Do WCHAR -> utf8 at the beginning of wmain. Do utf8 => WCHAR...

According to babelmark majority of parsers do nested blockqutoe: https://babelmark.github.io/?text=%3E+Blockquotes+can+also+be+nested...%0A%3E%3E+...by+using+additional+greater-than+signs+right+next+to+each+other...%0A%3E+%3E+%3E+...or+with+spaces+between+arrows. Would be good to have that too, although probably not trivial to implement.

I'm happy to accept patches but to set expectation: I'm not going to work on this myself.

A minimized test case: ~~~markdown > ``` > fenced 1 > ``` ``` fenced 2 ``` ~~~ We generate: ~~~html > fenced 1 > ``` fenced 2 “` ~~~ It...

Seems like `Parser.fencedCodeBlock` would need to recognize end of fence line inside blockquote.