Matti Pastell
Matti Pastell
I'm looking into adding support for citations in `m2html` and `md2pdf` formats (#144). Current state and plans: - [x] Parse citations from Markdown - [x] Format citations for output as...
Types still print ANSI colors even if I run julia using `julia --color no`. This breaks displays that don't support ANSI colors (Weave.jl) for one.
Tangling is only tested using the Pweb class, lead to #79
This implements improved (IMHO) tab completion for latex symbols and emojis. It completes the list of symbols and names starting with that symbol as well. Is this something that others...
Markdown.jl should escape special characters. Currently I get: ``` julia julia> input = """ `` """ "``\n" julia> output = stringmime("text/html", Markdown.parse(input)) "\n\n\n" ``` which does not work render well...
Is there a particular reason to use `pandoc2html` instead of `md2html` to render the reports? The advantage for using `md2html` is that you don't need pandoc, but then again you...