diff options
author | David M <davidmj@users.sourceforge.net> | 2007-05-17 18:55:52 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-05-17 18:55:52 +0000 |
commit | 7c9553dfc3f08091771edcb23582977107af39bb (patch) | |
tree | 1718e89d97235e6801a3032f003c2cce781fd896 /phpBB/language/en | |
parent | e206d63ed4b52675f56a8ce484695fbb557eba53 (diff) | |
download | forums-7c9553dfc3f08091771edcb23582977107af39bb.tar forums-7c9553dfc3f08091771edcb23582977107af39bb.tar.gz forums-7c9553dfc3f08091771edcb23582977107af39bb.tar.bz2 forums-7c9553dfc3f08091771edcb23582977107af39bb.tar.xz forums-7c9553dfc3f08091771edcb23582977107af39bb.zip |
#11102
git-svn-id: file:///svn/phpbb/trunk@7623 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en')
-rw-r--r-- | phpBB/language/en/help_bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php index 3f8d6875ca..8c7b4c2329 100644 --- a/phpBB/language/en/help_bbcode.php +++ b/phpBB/language/en/help_bbcode.php @@ -72,7 +72,7 @@ $help = array( ), array( 0 => 'Creating an Ordered list', - 1 => 'The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use <strong>[list=1][/list]</strong> to create a numbered list or alternatively <strong>[list=a][/list]</strong> for an alphabetical list. As with the unordered list items are specified using <strong>[*]</strong>. For example:<br /><br /><strong>[list=1]</strong><br /><strong>[*]</strong>Go to the shops<br /><strong>[*]</strong>Buy a new computer<br /><strong>[*]</strong>Swear at computer when it crashes<br /><strong>[/list]</strong><br /><br />will generate the following:<ol style="list-style-type: arabic-numbers"><li>Go to the shops</li><li>Buy a new computer</li><li>Swear at computer when it crashes</li></ol>Whereas for an alphabetical list you would use:<br /><br /><strong>[list=a]</strong><br /><strong>[*]</strong>The first possible answer<br /><strong>[*]</strong>The second possible answer<br /><strong>[*]</strong>The third possible answer<br /><strong>[/list]</strong><br /><br />giving<ol style="list-style-type: arabic-numbers"><li>The first possible answer</li><li>The second possible answer</li><li>The third possible answer</li></ol>' + 1 => 'The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use <strong>[list=1][/list]</strong> to create a numbered list or alternatively <strong>[list=a][/list]</strong> for an alphabetical list. As with the unordered list items are specified using <strong>[*]</strong>. For example:<br /><br /><strong>[list=1]</strong><br /><strong>[*]</strong>Go to the shops<br /><strong>[*]</strong>Buy a new computer<br /><strong>[*]</strong>Swear at computer when it crashes<br /><strong>[/list]</strong><br /><br />will generate the following:<ol style="list-style-type: arabic-numbers"><li>Go to the shops</li><li>Buy a new computer</li><li>Swear at computer when it crashes</li></ol>Whereas for an alphabetical list you would use:<br /><br /><strong>[list=a]</strong><br /><strong>[*]</strong>The first possible answer<br /><strong>[*]</strong>The second possible answer<br /><strong>[*]</strong>The third possible answer<br /><strong>[/list]</strong><br /><br />giving<ol style="list-style-type: lower-alpha"><li>The first possible answer</li><li>The second possible answer</li><li>The third possible answer</li></ol>' ), array( 0 => '--', |