Skip to main content

Function: unorderedList()

Creates an unordered list.

Example

console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3

unorderedList(items)

unorderedList(...items): string

Creates an unordered list.

Parameters

• ...items: string[]

Each item in the list.

Returns

string

The unordered list markdown.

The unordered list markdown.

Examples

console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3
console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3

Defined in

lib/markdown.ts:387

unorderedList(items)

unorderedList(items): string

Creates an unordered list.

Parameters

items: string[]

Each item in the list.

Returns

string

The unordered list markdown.

The unordered list markdown.

Examples

console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3
console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3

Defined in

lib/markdown.ts:406

unorderedList(options, items)

unorderedList(options, ...items): string

Creates an unordered list.

Parameters

options: UnorderedListOptions

The options for the unordered list. See UnorderedListOptions.

• ...items: string[]

Each item in the list.

Returns

string

The unordered list markdown.

The unordered list markdown.

Examples

console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3
console.log(
unorderedList(
'item1',
lines(
'item 2',
unorderedList({level: 2}, 'item a', 'item b')
),
'item3'
)
);
// Prints:
//
// - item1
//
// - item2
//
// - item a
//
// - item b
//
// - item3

Defined in

lib/markdown.ts:439

unorderedList(options, items)

unorderedList(options, items): string

Creates an unordered list.

Parameters

options: UnorderedListOptions

The options for the unordered list. See UnorderedListOptions.

items: string[]

Each item in the list.

Returns

string

The unordered list markdown.

The unordered list markdown.

Examples

console.log(unorderedList('item1', 'item2', 'item3'));
// Prints:
//
// - item1
//
// - item2
//
// - item3
console.log(
unorderedList(
'item1',
lines(
'item 2',
unorderedList({level: 2}, 'item a', 'item b')
),
'item3'
)
);
// Prints:
//
// - item1
//
// - item2
//
// - item a
//
// - item b
//
// - item3

Defined in

lib/markdown.ts:475