Numbering in ordered list
Posted: Mon Jun 11, 2012 12:42 pm
Hello
I am using HTML formatted text and wamt tooutput a numbered list.
THe tag works, but the list items are numbered without . i.e.
is displayed as:
bar ordered list
1 one
2 two
3 three
and not as
bar ordered list
1. one
2. two
3. three
Is there a way to display the list as desired?
Thank you
Clemens
I am using HTML formatted text and wamt tooutput a numbered list.
THe tag works, but the list items are numbered without . i.e.
Code: Select all
bar
ordered list
<ol>
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
bar ordered list
1 one
2 two
3 three
and not as
bar ordered list
1. one
2. two
3. three
Is there a way to display the list as desired?
Thank you
Clemens