Skip to main content

Function: h4()

h4(title, ...contents): string

Defined in: lib/markdown.ts:107

Function to create a level 4 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(h4('Heading 4', 'This is the contents of the section.'));
// Prints:
//
// #### Heading 4
//
// This is the contents of the section.