This function should be called inside a code chunk, and its effect is the
same as the chunk option results = "asis". The input character vector will
be written verbatim to the output (and interpreted as Markdown).
raw_text(x, format = NULL)A character vector with a special class to indicate that it should be treated as raw output.
litedown::raw_text(c("**This**", "_is_", "[Markdown](#)."))
#> **This**
#> _is_
#> [Markdown](#).
litedown::raw_text("<b>Bold</b>", "html")
#>
#> ``` {=html}
#> <b>Bold</b>
#> ```
litedown::raw_text("\\textbf{Bold}", "latex")
#>
#> ``` {=latex}
#> \textbf{Bold}
#> ```