diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2016-04-11 19:37:21 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-04-11 19:37:21 -0400 |
commit | 39655907c8f68440e3895495b3ef7f23d169a73d (patch) | |
tree | 9a29ef926df6c49ba06cb66a0bc1fc3e39c2cfdf /docs | |
parent | fcd4951af0fc4701a87f94925ea726625205a0ad (diff) | |
parent | 4d96f00fd3e4945b5c18d53ea81868bee5486c98 (diff) | |
download | markdown-39655907c8f68440e3895495b3ef7f23d169a73d.tar.gz markdown-39655907c8f68440e3895495b3ef7f23d169a73d.tar.bz2 markdown-39655907c8f68440e3895495b3ef7f23d169a73d.zip |
Merge branch 'master' of https://github.com/waylan/Python-Markdown
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference.txt b/docs/reference.txt index ac5c724..7268cc6 100644 --- a/docs/reference.txt +++ b/docs/reference.txt @@ -247,8 +247,8 @@ The following options are available on the `markdown.markdown` function: If `lazy_ol` is set to `False`, then markdown will output the following HTML: - <ol> - <li start="4">Apples</li> + <ol start="4"> + <li>Apples</li> <li>Oranges</li> <li>Pears</li> </ol> |