tag name | 1.7_Final (ba4e1d11728acd877becdd30d2d8fd483d781693) |
tag date | 2008-04-28 23:12:29 -0400 |
tagged by | Waylan Limberg <waylan@gmail.com> |
tagged object | commit 4f63b9542f... |
download | markdown-1.7_Final.tar.gz markdown-1.7_Final.tar.bz2 markdown-1.7_Final.zip |
---|
Python-Makrdown 1.7 Final.
Note that various features marked as depreciated in 1.6 have
been removed, so this release is somewhat backward
incompatible. Most notably, `str(md)` will no longer work.
`md.convert(text)` should be used instead. The `toString`
and `toUnicode` methods no longer exist. The `__unicode__`
method calls `convert` and `__str__` returns some info about
the instance rather than the converted output (although I'm
open for suggestions for improvment in the info provided).
Additionally, the `encoding` argument has been removed from
both `markdown` and `Markdown`. Markdown expects unicode (or
ascii) input and it is the users responsibility to ensure
that's what is provided. Therefore, all output is in
unicode. Only `markdownFromFile` accepts an encoding.