Sha256: 4c81757edf942de7ed1a61e4a8be580ed6e197c7a90ee4ed376b155bb459f0c1
Contents?: true
Size: 1.46 KB
Versions: 8
Compression:
Stored size: 1.46 KB
Contents
* Bullet lists are created by prefixing a space and an asterisk to a line. * You can create sublists by adding more spaces on the front. 1 Numbered lists are created by prefixing a space and a number to a line. ---- '''Markup Text'''{{{ * Item one * sub item one * sub item two * Item two. 1 sub item 2 2 sub item 3 * sub sub item one 1 sub sub sub item one. }}}----'''Displays as:''' * Item one * sub item one * sub item two * Item two. 1 sub item 2 2 sub item 3 * sub sub item one 1 sub sub sub item one. ---- '''Long numeric lists''' Beware when using numeric lists that only single digit numbers are identified as numeric lists. The following 11 item list renders incorrectly. {{{ 1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 10 item ten 11 item eleven }}} 1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 10 item ten 11 item eleven This can be corrected by simply using a single digit (1-9, but not zero)- the actual numeric value is correct as the HTML is rendered using !-<ol>-! notation. {{{ 1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 1 item ten 1 item eleven }}} 1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 1 item ten 1 item eleven
Version data entries
8 entries across 8 versions & 1 rubygems