all repos — grayfriday @ 93aad334f476fe5ecc0db49d91293fce5b4cd279

blackfriday fork with a few changes

Update README.md

link to markdownfmt, add note about LaTeX output
Russ Ross russ@russross.com
Wed, 14 May 2014 13:27:37 -0600
commit

93aad334f476fe5ecc0db49d91293fce5b4cd279

parent

bb14a3f92abb117a2e4bba11d3a8f9efa1cd0eeb

1 files changed, 16 insertions(+), 8 deletions(-)

jump to
M README.mdREADME.md

@@ -177,16 +177,24 @@ becomes `<sup>4</sup>&frasl;<sub>5</sub>`, which renders as

<sup>4</sup>&frasl;<sub>5</sub>. -LaTeX Output ------------- +Non-HTML output +--------------- -A rudimentary LaTeX rendering backend is also included. To see an -example of its usage, see `main.go`: +Blackfriday is structured to allow alternative rendering engines. Here +are a few of note: -It renders some basic documents, but is only experimental at this -point. In particular, it does not do any inline escaping, so input -that happens to look like LaTeX code will be passed through without -modification. +* [markdownfmt](https://github.com/shurcooL/markdownfmt): like gofmt, + but for markdown. + +* LaTeX output: renders output as LaTeX. This is currently part of the + main Blackfriday repository, but may be split into its own project + in the future. If you are interested in owning and maintaining the + LaTeX output component, please be in touch. + + It renders some basic documents, but is only experimental at this + point. In particular, it does not do any inline escaping, so input + that happens to look like LaTeX code will be passed through without + modification. Todo