Open yenson-lau opened 4 years ago
Just wanted to note that I also stumbled upon this and give a little more context:
A html comment like
<!-- Comment -->
in index.md will result in
<!– Comment –>
in the index.html
generated by Remark.jl. Note that --
is converted to the Unicode 'en dash' character –
(U+2013) and the comment will not render properly.
This seems to be somehow connected to Documenter, since adding the documenter=false
option during slideshow generation makes the problem disappear.
In my
index.md
, suppose my first slide contains something likeThe commented block unfortunately shows up on the slide.