|
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> |
6 | | -<meta name="generator" content="litedown 0.4.2"> |
| 6 | +<meta name="generator" content="litedown 0.4.3"> |
7 | 7 | <title>litedown: R Markdown Reimagined</title> |
8 | 8 | <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/@xiee/[email protected]/css/prism-xcode.min.css" > |
9 | 9 | <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" > |
|
20 | 20 | <div class="frontmatter"> |
21 | 21 | <div class="title"><h1>litedown: R Markdown Reimagined</h1></div> |
22 | 22 | <div class="author"><h2>Yihui Xie</h2></div> |
23 | | -<div class="date"><h3>2024-11-13</h3></div> |
| 23 | +<div class="date"><h3>2024-11-15</h3></div> |
24 | 24 | </div> |
25 | 25 | <div class=""> |
26 | 26 | <div id="TOC"> |
@@ -1415,27 +1415,22 @@ <h3 id="sec:top-level"><span class="section-number">3.1.14</span> <code>top_leve |
1415 | 1415 | <code>commonmark::markdown_*()</code> functions, and the <code>table</code> option is for the <code>table</code> |
1416 | 1416 | extension in <strong>commonmark</strong>’s extensions.</p> |
1417 | 1417 | <pre><code class="language-r">litedown::markdown_options() |
1418 | | -</code></pre> |
1419 | | -<pre><code>#> [1] "-cleveref" "-hardbreaks" "-number_sections" |
| 1418 | +#> [1] "-cleveref" "-hardbreaks" "-number_sections" |
1420 | 1419 | #> [4] "-smartypants" "-tagfilter" "-toc" |
1421 | 1420 | #> [7] "+auto_identifiers" "+autolink" "+cross_refs" |
1422 | 1421 | #> [10] "+embed_cleanup" "+embed_resources" "+js_highlight" |
1423 | 1422 | #> [13] "+js_math" "+latex_math" "+smart" |
1424 | 1423 | #> [16] "+strikethrough" "+subscript" "+superscript" |
1425 | 1424 | #> [19] "+table" "+tasklist" |
1426 | | -</code></pre> |
1427 | | -<pre><code class="language-r"># commonmark's arguments |
| 1425 | +# commonmark's arguments |
1428 | 1426 | opts = formals(commonmark::markdown_html) |
1429 | 1427 | opts = opts[setdiff(names(opts), c('text', 'extensions'))] |
1430 | 1428 | unlist(opts) |
1431 | | -</code></pre> |
1432 | | -<pre><code>#> hardbreaks smart normalize sourcepos footnotes |
| 1429 | +#> hardbreaks smart normalize sourcepos footnotes |
1433 | 1430 | #> FALSE FALSE FALSE FALSE FALSE |
1434 | | -</code></pre> |
1435 | | -<pre><code class="language-r"># commonmark's extensions |
| 1431 | +# commonmark's extensions |
1436 | 1432 | commonmark::list_extensions() |
1437 | | -</code></pre> |
1438 | | -<pre><code>#> [1] "table" "strikethrough" "autolink" "tagfilter" |
| 1433 | +#> [1] "table" "strikethrough" "autolink" "tagfilter" |
1439 | 1434 | #> [5] "tasklist" |
1440 | 1435 | </code></pre> |
1441 | 1436 | <h2 id="sec:templates"><span class="section-number">3.2</span> Templates</h2> |
|
0 commit comments