Skip to content
Permalink
master
Switch branches/tags

Commits on Jun 3, 2022

  1. Allow closing fence to be followed by tabs.

    Closes #258.
    jgm committed Jun 3, 2022

Commits on Apr 5, 2022

  1. Replace deprecated String.prototype.substr() (#254)

    .substr() is deprecated so we replace it with functions which work similarily but aren't deprecated
    
    Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
    CommanderRoot committed Apr 5, 2022

Commits on Jul 17, 2021

  1. Fix bug with reference link normalization.

    We were only collapsing the first group of consecutive
    whitespace, not following ones.
    
    Reported at
    <https://talk.commonmark.org/t/link-label-collapse-all-internal-whitespace/3919/6>.
    jgm committed Jul 17, 2021

Commits on Jun 20, 2021

  1. Update changelog.

    jgm committed Jun 20, 2021
  2. Official 0.30 spec.txt.

    jgm committed Jun 20, 2021
  3. Simplify dingus Makefile.

    jgm committed Jun 20, 2021
  4. Bump to 0.30.0

    jgm committed Jun 20, 2021
  5. Dingus: tweak bootstrap version

    jgm committed Jun 20, 2021

Commits on Jun 19, 2021

  1. Better fix for cmark #383 regression.

    This parallels the new approach in cmark.
    jgm committed Jun 19, 2021
  2. Revert "Fix counterpart to commonmark/cmark#383."

    This reverts commit 10ed0d0.
    jgm committed Jun 19, 2021

Commits on Jun 15, 2021

  1. Fix regression test.

    jgm committed Jun 15, 2021
  2. Add failing regression test.

    cmark#383.
    jgm committed Jun 15, 2021
  3. Update test/spec.txt.

    jgm committed Jun 15, 2021

Commits on May 11, 2021

  1. Require lodash 4.17.21 or later.

    lodash versions prior to 4.17.21 are vulnerable to Command Injection via
    the template function.  We don't use the template function, but we
    require the later version anyway.
    jgm committed May 11, 2021

Commits on Mar 18, 2021

  1. Allow user to specify a function to escape the output (#217)

    * Correct `esc` function description.  The function doesn't take a second parameter.
    * HtmlRenderer, XmlRenderer: Allow user to specify a custom escape function, as the docs say you can.
    newfivefour committed Mar 18, 2021

Commits on Mar 2, 2021

  1. Fixes an iframe loading timing issue

    To quote https://stackoverflow.com/a/36155560/438544:
    
    > Using .load() isn't possible if the iframe has already been loaded (event will never fire)
    
    Closes commonmark/commonmark-spec-web#15.
    icyrockcom authored and jgm committed Mar 2, 2021

Commits on Feb 22, 2021

  1. Simplify reThematicBreak.

    jgm committed Feb 22, 2021

Commits on Feb 13, 2021

  1. Fix documentation for node.listType

    The parser produces lowercase strings, but the README said the strings are capitalized.
    TheWastl authored and jgm committed Feb 13, 2021

Commits on Feb 7, 2021

  1. Fix handling of type 7 HTML blocks.

    They can't interrupt paragraphs (even with laziness).
    Closes #213.
    jgm committed Feb 7, 2021

Commits on Feb 1, 2021

Commits on Jan 20, 2021

  1. Only match punctuation at the beginning of the string

    This makes the punctuation use match `reUnicodeWhitespaceChar` usage in `scanDelims`. It's effectively a no-op, as `char_after` is expected to only contain a single character anyways.
    Vladimir Pouzanov authored and jgm committed Jan 20, 2021

Commits on Dec 12, 2020

  1. Recognize '01' as start number 1.

    And in general treat it as a number.  Closes #207.
    jgm committed Dec 12, 2020

Commits on Dec 5, 2020

Older