Skip to content

Tags: adsabs/Python-Markdown

Tags

2.0.2_Final

Toggle 2.0.2_Final's commit message
Upped version to 2.0.2-Final and added release notes.

2.0.1

Toggle 2.0.1's commit message
Upped version to 2.0.1-Final and added release notes.

2.0-Final

Toggle 2.0-Final's commit message
Upped version to 2.0 and a few edits to release notes.

2.0-rc1

Toggle 2.0-rc1's commit message
Upped version to 2.0-rc1

2.0-beta

Toggle 2.0-beta's commit message
Tag 2.0-beta

2.0-alpha

Toggle 2.0-alpha's commit message
Added alpha version tag.

1.7_Final

Toggle 1.7_Final's commit message
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.