Skip to main content

Function: h6()

h6(title, ...contents): string

Function to create a level 6 heading.

Parameters

title: string

The title of the heading.

• ...contents: string[]

The contents of the section.

Returns

string

The markdown heading, with the contents section below it.

Example

console.log(h6('Heading 6', 'This is the contents of the section.'));
// Prints:
//
// ###### Heading 6
//
// This is the contents of the section.

Defined in

lib/markdown.ts:147