R Under development (unstable) (2024-06-03 r86679 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > local({ + if (!file.exists(f <- '../inst/examples/render-options.R')) + f = markdown:::pkg_file('examples', 'render-options.R') + source(f, local = TRUE, echo = TRUE) + }) > library(markdown) > mkd <- c("# Header 1", "p1", "## Header 2", "p2") > cat(mark(mkd, options = "+number_sections"))
p1
p2
> cat(mark(mkd, options = "+number_sections+toc"))p1
p2
> cat(mark("foo\nbar\n"))foo bar
> cat(mark("foo\nbar\n", options = "hard_wrap"))foo
bar
$x$
is inline math \(x\)!
Display style:
$$x + y$$
\begin{eqnarray} a^{2}+b^{2} & = & c^{2}\\ \sin^{2}(x)+\cos^{2}(x) & = & 1 \end{eqnarray}
> cat(mark(mkd, options = "-latex_math"))$x$
is inline math $x$!
Display style:
$$x + y$$
\begin{eqnarray} a^{2}+b^{2} & = & c^{2}\ \sin^{2}(x)+\cos^{2}(x) & = & 1 \end{eqnarray}
> cat(mark("\nFirst Header | Second Header\n------------- | -------------\nContent Cell | Content Cell\nContent Cell | Content Cell\n"))First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
First Header | Second Header ———–– | ———–– Content Cell | Content Cell Content Cell | Content Cell
> cat(mark("https://www.r-project.org/")) > cat(mark("https://www.r-project.org/", options = "-autolink"))https://www.r-project.org/
> cat(mark("~~awesome~~"))awesome
~~awesome~~
> cat(mark("2^10^"))210
> cat(mark("2^10^", options = "-superscript"))2^10^
> cat(mark("H~2~O"))H2O
> cat(mark("H~2~O", options = "-subscript"))H~2~O
> cat(mark("```r\n1 + 1;\n```"))1 + 1;
> cat(mark("```{.r}\n1 + 1;\n```"))
1 + 1;
> cat(mark("```{.r .js}\n1 + 1;\n```"))
1 + 1;
> cat(mark("```{.r .js #foo}\n1 + 1;\n```"))
1 + 1;
> cat(mark("```{.r .js #foo style=\"color:red;\"}\n1 + 1;\n```"))
1 + 1;
> cat(mark("````\n```{r, echo=TRUE}\n1 + 1;\n```\n````"))
```{r, echo=TRUE}
1 + 1;
```
> cat(mark("```{=html}\nraw HTML
\n```"))raw HTML
> cat(mark("```{=latex}\nraw HTML
\n```")) > mkd = "\n[Hello](#)" > cat(mark(mkd)) > > proc.time() user system elapsed 0.39 0.10 0.48