yaml_body | R Documentation |
Split a document into the YAML metadata (which starts with ---
in the
beginning of the document) and the body. The YAML metadata will be parsed.
yaml_body(x, ...)
x |
A character vector of the document content. |
... |
Arguments to be passed to |
A list of components yaml
(the parsed YAML data), lines
(starting
and ending line numbers of YAML), and body
(a character vector of the
body text). If YAML metadata does not exist in the document, the components
yaml
and lines
will be missing.
xfun::yaml_body(c("---", "title: Hello", "output: litedown::html_format", "---",
"", "Content."))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.