Definition lists

Definition lists can be created with:

Input:

Term
: Definition

Output::

Term
Definition

Multiple definitions

Multiple definition can be used:

Input:

Term
: Definition 1
: Definition 2

Output::

Term
Definition 1
Definition 2

Markdown content

Both terms and definitions may contain markdown content:

Input:

Term **with** markdown
: Definition **with** markdown

Output::

Term with markdown
Definition with markdown

Nested content

The definition may contain nested lists, definition lists, and other complex content by indenting the block with four spaces:

Input:

`options`
: An object containing one or more properties:

    `foo`
    : Sets the foo option of the function call.

        Can be one of:

        * `"foo"`
        * `"bar"`

    `bar`
    : Sets the bar option of the function call.

        ```ts
        nestedCodeBlock("foo");
        ```

Output::

options

An object containing one or more properties:

foo

Sets the foo option of the function call.

Can be one of:

  • "foo"
  • "bar"
bar

Sets the bar option of the function call.

nestedCodeBlock("foo");

Esc för att stänga Pil upp/ner för att navigera Enter för att välja