heading {preregr} | R Documentation |
Print a heading
Description
This is just a convenience function to print a markdown or HTML heading at a given 'depth'.
Usage
heading(
...,
headingLevel = preregr::opts$get("defaultHeadingLevel"),
output = "markdown",
cat = TRUE
)
Arguments
... |
The heading text: pasted together with no separator. |
headingLevel |
The level of the heading; the default can be set
with e.g. |
output |
Whether to output to HTML (" |
cat |
Whether to cat (print) the heading or just invisibly return it. |
Value
The heading, invisibly.
Examples
heading("Hello ", "World", headingLevel=5);
### This produces: "\n\n##### Hello World\n\n"
[Package preregr version 0.2.9 Index]