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