I am trying to add an ordered list to the documentation of a script but it doesn't work.
The code is:
\list[ordered]
{
{ ..... }
}
I have analyzed this problem and I have found a bug in the CSS of DocumentationCompiler. It assigns the style "list-style-type: square" to both <ul> and <ol>.
This can be found in pidoc-common.css:
ul, ol {
position: relative;
left: 1em;
padding-left: 1em;
margin-top: 1.1em;
margin-bottom: 1.1em;
list-style-position: outside;
list-style-type: square;
}