Version 2.0.9
* Workaround for configure and noexec-mounted /tmp.
Version 2.0.8
* Table processing modified to make it hew closer to the markdown extra
implementation.
* Optimized the code that's used to look for tables by scanning for pipe
symbols when I'm reading data into the input lines array.
* Documentation patches from David Banks argument prototype tweaks for
Solaris, from Allen Otis.
* --with-github-tags configuration option to to include - and _ in the
acceptable characters for maybe_tag_or_link() (code from Ryan Tomayko's
discount SCCS on github).
* In the markdown program, -f? gives a list of the known flags. Also,
-F? gives a list of the known flag bits.
* --with-id-anchor configuration options to have the table of contents code
emit id= instead of the dummy <a name= anchor I replaced it with
(name= is depreciated in xhtml, and may vanish.)
Version 2.0.7
* Finishes support for php markdown extra-style footnotes.
* Manpage typos corrected (patch from Alessandro Ghedini).
Markdown is a text-to-HTML conversion tool for web writers. Markdown
allows you to write using an easy-to-read, easy-to-write plain text
format, then convert it to structurally valid XHTML (or HTML).
The overriding design goal for Markdown's formatting syntax is to make
it as readable as possible. The idea is that a Markdown-formatted
document should be publishable as-is, as plain text, without looking
like it's been marked up with tags or formatting instructions. While
Markdown's syntax has been influenced by several existing text-to-HTML
filters, the single biggest source of inspiration for Markdown's
syntax is the format of plain text email.
Original Markdown implementation is written in Perl. Discount provides a
Markdown CLI tool and a library, written in C.