diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-04-30 22:30:37 +0200 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-04-30 22:30:37 +0200 |
commit | 3d9fcee075802d8090a394e458e6bc7faba4af18 (patch) | |
tree | 850337863d3c84761e87357d6a13d7c43a7e63a9 /doc/bbcode.html | |
parent | 917bcb55fd3beee4eb8590256a458872b9da7605 (diff) | |
parent | 026787fc73cb76975b55425cdec9b6701a097935 (diff) | |
download | volse-hubzilla-3d9fcee075802d8090a394e458e6bc7faba4af18.tar.gz volse-hubzilla-3d9fcee075802d8090a394e458e6bc7faba4af18.tar.bz2 volse-hubzilla-3d9fcee075802d8090a394e458e6bc7faba4af18.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
Diffstat (limited to 'doc/bbcode.html')
-rw-r--r-- | doc/bbcode.html | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/doc/bbcode.html b/doc/bbcode.html index 3e9bda1d9..5a51135ea 100644 --- a/doc/bbcode.html +++ b/doc/bbcode.html @@ -27,12 +27,31 @@ <li>[list=a]<br /> <li>[list=A] <br /> <li>[ul]<br /> -<li>[ol] +<li>[ol]<br /> +<li>[dl]<br /> +<li>[dl terms="biumlh"] — where style of the terms can be any combination of: + <dl class="bb-dl dl-horizontal"> + <dt>b</dt><dd>bold</dd> + <dt>i</dt><dd>italic</dd> + <dt>u</dt><dd>underline</dd> + <dt>m</dt><dd>monospace</dd> + <dt>l</dt><dd>large</dd> + <dt>h</dt><dd>horizontal — like <em>this</em> defintion list</dd> + </dl> +</li> </ul>For example:<br />[ul]<br />[*] First list element<br />[*] Second list element<br />[/ul]<br /><br />Will render something like: <br /> <ul class="listbullet" style="list-style-type: circle;"> <li> First list element<br /> -<li> Second list element</ul><br /> +<li> Second list element</ul> + +or<br /><br />[dl terms="b"]<br />[*= First element term] First element description<br />[*= Second element term] Second element description<br />[/dl]<br /><br />Will render something like: <br /><br /> +<dl class="bb-dl dl-terms-bold"> +<dt> First element term </dt><dd>First element description</dd> +<dt> Second element term </dt><dd>Second element description</dd> +</dl><br /> + + <br />There's also:<br /> <ul class="listloweralpha" style="list-style-type: lower-alpha;"> <li>[hr]<br /> |