tlienart / Franklin.jl

(yet another) static site generator. Simple, customisable, fast, maths with KaTeX, code evaluation, optional pre-rendering, in Julia.
https://franklinjl.org
MIT License
960 stars 113 forks source link

Div bugs #97

Closed tlienart closed 5 years ago

tlienart commented 5 years ago
@@gh-table
@@
@@center
@@gh-table
...
@@
@@
@@gh-table
| Status | Coverage |
| :----: | :----: |
| blah | blih |

the <table> element gets chopped off a fair bit

tlienart commented 5 years ago

Nesting seems ok

st = raw"""
    @@gh-table
    @@other
    blah
    @@
    @@
    """ * J.EOS

(m, jdv) = J.convert_md(st, collect(values(J.JD_GLOB_LXDEFS)))
content = J.convert_html(J.str(m), jdv)

gives

"<div class=\"gh-table\"><div class=\"other\">blah</div>\n</div>\n"