Lists

class Lists "Lists"
    extends Modelica.Icons.Information;

    annotation (Documentation(info = "<html>\n<p>\nLists have to be placed <strong>outside</strong> of paragraphs to be HTML compliant.\n</p>\n\n<ol>\n<li> Items of a list shall start with\n<ul>\n    <li> a capital letter if each item is a full sentence</li>\n    <li> a small letter, if only text fragments are used or the list is fragment of a sentence</li>\n</ul></li>\n</ol>\n\n<h5>Example 1</h5>\n\n<p>This is a simple example of an enumerated (ordered) list</p>\n\n<pre>\n&lt;ol&gt;\n  &lt;li&gt;item 1&lt;/li&gt;\n  &lt;li&gt;item 2&lt;/li&gt;\n&lt;/ol&gt;\n</pre>\n<p>appears as</p>\n<ol>\n  <li>item 1</li>\n  <li>item 2</li>\n</ol>\n\n<h5>Example 2</h5>\n\n<p>This is a simple example of an unnumbered list.</p>\n\n<pre>\n&lt;ul&gt;\n  &lt;li&gt;item 1&lt;/li&gt;\n  &lt;li&gt;item 2&lt;/li&gt;\n&lt;/ul&gt;\n</pre>\n<p>appears as</p>\n<ul>\n  <li>item 1</li>\n  <li>item 2</li>\n</ul>\n</html>"));
end Lists;