p.li.bulleted()

Table of Contents

Syntax #

p.li.bulleted(level)

level

nesting level for the list, any integer

Purpose #

This annotation is used to create a bulleted list of items. A bulleted list is a collection of items placed in no specific order. The parentheses must contain a number that corresponds to the nesting level of the list item. Unordered lists can be as deeply nested as you want.

The character at the beginning of the list will sometimes be a bullet, sometimes a dash, and sometimes it is some other character. That is dependent on the style of the author and, sometimes, on the nesting level of the list item.

Here is a bulleted list with two nesting levels.

  • The SoC voltage can be in the range of 1.0 to 3.3V.
  • Trace information is time stamped at a resolution of 10ns.
  • QuickTrace forms one component in the BirdsEye’s real time trace debugging system.
    QuickTrace consists of:

    • Trace Debug Tools (TDT)
    • QuickTrace
    • ICE+
    • RealEyeMon.

This will require two rules, one for each nesting level.

p.li.bulleted() rule level 1 and 2

This is the output you may get from these rules.

<ul>
  <li>The SoC voltage can be in the range of 1.0 to 3.3V.</li>
  <li>Trace information is time stamped at a resolution of 10ns.</li>
  <li>
    QuickTrace forms one component in the BirdsEye’s real time trace debugging system.
    QuickTrace consists of:
    <ul>
      <li>Trace Debug Tools (TDT)</li>
      <li>QuickTrace</li>
      <li>ICE+</li>
      <li>RealEyeMon.</li>
    </ul>
  </li>
</ul>