diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-13 18:49:13 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-13 18:49:13 +0000 |
commit | ac6e3f50856db361984a53db53f95b5e29df4854 (patch) | |
tree | 1c776d87c5204cdd12c009da4297b489f78be415 /public/help/lv | |
parent | b55d248597823d62f6db2ba6f74957250ffe6f37 (diff) | |
download | redmine-ac6e3f50856db361984a53db53f95b5e29df4854.tar.gz redmine-ac6e3f50856db361984a53db53f95b5e29df4854.zip |
Wiki formatting documentation for nested lists (#4518).
Patch by Matt Wiseley.
git-svn-id: http://svn.redmine.org/redmine/trunk@13756 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/lv')
-rw-r--r-- | public/help/lv/wiki_syntax.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/help/lv/wiki_syntax.html b/public/help/lv/wiki_syntax.html index d67dc885a..aa645cc6e 100644 --- a/public/help/lv/wiki_syntax.html +++ b/public/help/lv/wiki_syntax.html @@ -36,8 +36,8 @@ table td h3 { font-size: 1.2em; text-align: left; } </td></tr> <tr><th colspan="3">Lists</th></tr> -<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />* Item 2</td><td><ul><li>Item 1</li><li>Item 2</li></ul></td></tr> -<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br /># Item 2</td><td><ol><li>Item 1</li><li>Item 2</li></ol></td></tr> +<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr> +<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr> <tr><th colspan="3">Headings</th></tr> <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr> |