Bullet Lists

Description

Bullet lists (unordered lists) present items in no particular order using bullet markers. They support nesting, multiple marker types, and custom attributes for styling. Bullet lists can contain rich content including text formatting, links, and nested elements.

.md markdown syntax

Basic Bullet Lists

- Item 1
- Item 2
- Item 3

Alternative Markers

* Item using asterisk
+ Item using plus sign
- Item using hyphen

Nested Lists

- Item 1
  - Nested item 1.1
  - Nested item 1.2
    - Deep nested item 1.2.1
- Item 2
- Item 3

Lists with Custom Attributes

.adf-schema.json schema

Examples

Simple List

List with Formatting

Multi-level Nested List

List with Rich Content

  • Install Dependencies

    Add the required packages:

    • Production dependencies

    • Development dependencies

    • Optional peer dependencies

  • Configuration

    Create configuration files for:

    1. TypeScript (tsconfig.json)

    2. ESLint (.eslintrc.js)

    3. Prettier (.prettierrc)

Mixed Content List

Last updated