diff options
author | sblondon <sblondon@users.noreply.github.com> | 2016-03-30 20:09:26 +0200 |
---|---|---|
committer | sblondon <sblondon@users.noreply.github.com> | 2016-03-30 20:09:26 +0200 |
commit | 403cc58b542354a130d1f2c94a559fd0ea2f16fa (patch) | |
tree | 81a5259bb7528cce44564a7539cd56ce53ec9b1f /tests/safe_mode | |
parent | 829743a598f1cc226a95b77afe171090a3a3204b (diff) | |
download | markdown-403cc58b542354a130d1f2c94a559fd0ea2f16fa.tar.gz markdown-403cc58b542354a130d1f2c94a559fd0ea2f16fa.tar.bz2 markdown-403cc58b542354a130d1f2c94a559fd0ea2f16fa.zip |
Fix lazy ordered list example in documentation
The documentation is not accurate when lazy_ol=False parameter is called.
The example shows the 'start' attribute to the first <li> tag. However, the attribute is in the <ol> tag:
>>> import markdown
>>> s = """
... 4. Apples
... 5. Oranges
... 6. Pears"""
>>> markdown.markdown(s, lazy_ol=False)
u'<ol start="4">\n<li>Apples</li>\n<li>Oranges</li>\n<li>Pears</li>\n</ol>'
The behaviour of the library is the correct one (https://developer.mozilla.org/fr/docs/Web/HTML/Element/ol), so the documentation need to be fixed, not the library.
Diffstat (limited to 'tests/safe_mode')
0 files changed, 0 insertions, 0 deletions