FranklinParser.jl

Franklin's Markdown processor
Author tlienart
Popularity
0 Stars
Updated Last
1 Year Ago
Started In
November 2020

Franklin Parser

CI Actions Status codecov

Why not just CommonMark.jl?

CommonMark.jl is great, well coded, and aims to respect the commonmark specs.

At its core, Franklin also uses markdown and so leveraging CommonMark.jl seemed a natural step, possibly with additions. At some point however, it turned out that it was more difficult (for me) to work with CommonMark than re-write some of its functionalities. This is by no means related to the quality of CommonMark.jl but rather to how some of the additions in "Franklin-Markdown" require specific parsing rules, specifically to handle nesting and latex-like commands.

One big difference in the specs is that Franklin does not support indented lines for code blocks, only fenced code blocks are allowed and indentation is not significant. In CommonMark, allowing this requires a number of checks that some special markers start after at most 3 whitespaces after a line return, in Franklin this is irrelevant and, among other things, allows nesting with indentation which helps with readability e.g.:

@@class1
  @@class2
    ## section
  @@
  Some text
@@

In the example above the fact that the ATXHeading starts on an idented line does not matter.

For more details, check out test/partition/md_specs.jl and cmark/cmark.jl, where things are discussed in a bit more details on a case-by-case basis.

CM specs that are +- respected

Note: sometimes the parser is more, sometimes less tolerant, usually there's a good reason.

  • atxheadings (# ...)
  • blockquote (> ...)
  • fenced code blocks (```julia ... ```) no more than 5 backticks allowed
  • lists (only tight lists are allowed)
  • hrules (---, ...) requires a triple
  • emphasis (*a*, _a_, **a**, ...)
  • autolink (<...>)
  • htmlentity (&amp;)
  • inlinecode (`a`)
  • image, links (![...](...), [...](...), [...]: ...)

Notes:

  • for links, putting the destination between <...> is not supported
  • for links, the format [A](B C) is not supported, for refs, the format [A]: B C with B a link is not supported

CM specs that are not respected

  • setextheading
  • indented code blocks
  • html not inside ~~~...~~~
  • hard line breaks (use \\)

Additional "Franklin" specs

  • raw blocks ??? ... ??? (the content will be passed "as is" to X)
  • latex blocks %%% ... %%% (the content will be passed "as is" to HTML, nothing will be passed to HTML)
  • html blocks ~~~ ... ~~~ (the content will be passed "as is" to HTML, nothing will be passed to LaTeX)
  • math $...$, $$...$$, \[...\] etc
  • ...

Specs

For the specs with respect to CommonMark, see test/partition/md_specs.jl.

(ONGOING) additional test suite following CommonMark.jl.

Notes

  • assumption of LF convention i.e. that end of lines are \n and not \r\n. Windows users who are using an editor with that convention should switch their preferences (in VSCode this can be done by Settings > Text Editor > Files > EOL or putting "files.eol": "\n" in settings.json).
  • dropping @def multiline support; there's ambiguity with line returns; better to use +++...+++ blocks; @def x = 5 is still allowed.
  • adding ??? ... ??? as an overarching "escape" block, the effect is pretty much the same as that of ~~~ ... ~~~ but an advantage is that ??? is not recognised by Markdown highlighters (e.g. Atom's) and therefore if for instance a user wants to pass a block of text untouched to CommonMark.jl it's nicer if the Markdown remains highlighted properly between the ???.
  • adding possibility to disable some tokens for instance $ or indeed ??? by passing disable=[:MATH_INLINE, :RAW] etc.