Description Usage Arguments Details Value Line styles Examples
The rule can include either a centered text label, or labels on the left and right side.
1 2 3 4 5 6 7 8 9 10 |
left |
Label to show on the left. It interferes with the |
center |
Label to show at the center. It interferes with the
|
right |
Label to show on the right. It interferes with the |
line |
The character or string that is used to draw the line.
It can also |
col |
Color of text, and default line color. Either an ANSI style
function (see ansi-styles), or a color name that is passed
to |
line_col, background_col |
Either a color name (used in
|
width |
Width of the rule. Defaults to the |
To color the labels, use the functions col_*
, bg_*
and style_*
functions, see ansi-styles, and the examples below.
To color the line, either these functions directly, or the line_col
option.
Character scalar, the rule.
Some strings for the line
argument are interpreted specially:
"single"
: (same as 1
), a single line,
"double"
: (same as 2
), a double line,
"bar1"
, "bar2"
, "bar3"
, etc., "bar8"
uses varying height bars.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ## Simple rule
rule()
## Double rule
rule(line = 2)
## Bars
rule(line = "bar2")
rule(line = "bar5")
## Left label
rule(left = "Results")
## Centered label
rule(center = " * RESULTS * ")
## Colored labels
rule(center = col_red(" * RESULTS * "))
## Colored line
rule(center = col_red(" * RESULTS * "), line_col = "red")
## Custom line
rule(center = "TITLE", line = "~")
## More custom line
rule(center = "TITLE", line = col_blue("~-"))
## Even more custom line
rule(center = bg_red(" ", symbol$star, "TITLE",
symbol$star, " "),
line = "\u2582",
line_col = "orange")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.