Skip to contents

Produces the ATX-style markdown header (i.e., a number of hashes) for the input header level.

Usage

atx_header(level)

Arguments

level

numeric; Integer number of header level.

Value

String of ATX-style markdown header.

Examples

h1 <- atx_header(1)
h2 <- atx_header(2)
h3 <- atx_header(3)
h4 <- atx_header(4)