Skip to content

BulletList

Overview

The "bullet_list" instance initiates a bulleted or numbered list in the output document.

Required properties

The "bullet_list" should be specified using "bullet_list_style" and "items".

- bullet_list:
    bullet_list_style:
    items:
      # ...

Back to components

Required Properties:

Bullet List Style

  • Type: string

  • Default: N/A

  • Description: The "bullet_list_style" property specifies the Microsoft Word style of bulleted list.

  • Available options:

 ['List', 'List 2', 'List 3', 'List Bullet', 'List Bullet 2', 'List Bullet 3', 'List Continue', 'List Continue 2', 'List Continue 3', 'List Number', 'List Number 2', 'List Number 3', 'List Paragraph']
  • Example:
 bullet_list_style: List Number

Items

  • Type: -

  • Default: N/A

  • Description: The "items" instance lists all object instances applicable for this bullet list. Optional instances: "text" and "math_expression".

  • Example:

items: 
  - text:
      # ...
  - text:
      # ...
  - math_expression:
      # ...

Continue to Components generation

Back to top

Back to homepage