Create a glue vector of characters used to represent a thematic break. This
markdown leaf block is rendered as the <hr> HTML tag.
Usage
md_rule(char = c("*", "-", "_"), n = 3, space = FALSE)
Value
A repeated-character glue vector with length 1.
Arguments
char
The type of rule; either: -, _, or *. Defaults to *.
n
The width of the rule; an integer indicating number of times to
repeat each character. Defaults to the minimum of 3.
space
logical or numeric; How many spaces to place between each
char. Defaults to FALSE, which places 0 spaces.
Details
A line consisting of 0-3 spaces of indentation, followed by a sequence of
three or more matching -, _, or * characters, each followed optionally
by any number of spaces or tabs, forms a thematic break.