Adds regular text elements to a website.
Usage
page_text(text, ..., tag = "p")
Arguments
- text
A character vector of text to add. Each entry will be a separate element. Text can include
links to be embedded, in the form "[text](url)"
.
- ...
Attributes to add to each element.
- tag
The tag name of each element.
Value
A character vector of the content to be added.
Examples
if (FALSE) {
# regular text
page_text("text to be added")
}