diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2016-03-30 15:03:17 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-03-30 15:03:17 -0400 |
commit | 882ce66dfde4c2bdd1df208f2368736301398b3c (patch) | |
tree | 81a5259bb7528cce44564a7539cd56ce53ec9b1f | |
parent | 829743a598f1cc226a95b77afe171090a3a3204b (diff) | |
parent | 403cc58b542354a130d1f2c94a559fd0ea2f16fa (diff) | |
download | markdown-882ce66dfde4c2bdd1df208f2368736301398b3c.tar.gz markdown-882ce66dfde4c2bdd1df208f2368736301398b3c.tar.bz2 markdown-882ce66dfde4c2bdd1df208f2368736301398b3c.zip |
Merge pull request #466 from sblondon/master
Fix lazy ordered list example in documentation
-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> |