Jonas Wagner
Jonas Wagner
Hi, the following test passes for me with `0 tests, 0 assertions, 0 failures, 0 skipped`. To reproduce, save the code below to a file, and run `jasmine-node file.js`. ```...
I'm getting the following error when calling `step()`: > Error: Invalid Chai property: catch. Did you mean "match"? Any idea?
Keyboard navigation with repeat groups is a bit cumbersome. If I have a repeat group with a single text field, navigation goes like this: 1. Load the form. 2. Press...
The quickstart guide contains a code block with a link; this should be rendered as an `` HTML tag, but is rendered as an actual link. I've fixed the Markdown...
Hoedown parses footnotes and regular document content differently: - Footnotes are parsed straight from the source document - Regular text is first normalized, then the normalized version is parsed. This...
Problem: hoedown's `block_attr` may outlive the buffers that it is computed from. Consider the following test case: ``` - Some text{@list #foo} - More text. This needs to be sufficiently...
The following example produces unexpected output for line four: ```markdown *Emphasis with a link.* _Emphasis with a link._ *Emphasis with a link.* _Emphasis with a link._ ``` ```html Emphasis with...
People on the CommonMark forum have been designing a generic syntax for markdown extensions: https://talk.commonmark.org/t/generic-directives-plugins-syntax/444 The gist is to add support for things like - Inline elements, e.g. `:spoiler[it's a...
Expressions like `x{9999999999999999,3}` cause an integer overflow in `tre_parse_int`. This is undefined behavior in C. The following patch prevents this from happening. The overflow check is a bit conservative, but...
Expressions like the following cause TRE's run-time to be very high: ``` echo 'x' | agrep 'x?{100}{100}' echo 'x' | agrep 'x?{5}{5}{5}{5}{5}{5}' ``` Found using LLVM's LibFuzzer.