gitextract_h5miewmq/ ├── .Rbuildignore ├── .github/ │ ├── copilot-instructions.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── copilot-setup-steps.yml │ └── github-pages.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── format.R │ ├── fuse.R │ ├── mark.R │ ├── package.R │ ├── preview.R │ ├── site.R │ ├── utils.R │ └── zzz.R ├── README.md ├── docs/ │ ├── 01-start.Rmd │ ├── 02-fuse.Rmd │ ├── 03-syntax.Rmd │ ├── 04-mark.Rmd │ ├── 05-assets.Rmd │ ├── 06-widgets.Rmd │ ├── 07-editor.Rmd │ ├── 08-site.Rmd │ ├── A-misc.Rmd │ ├── _litedown.yml │ └── index.Rmd ├── examples/ │ ├── 001-minimal.Rmd │ ├── 001-minimal.md │ ├── 002-attr-options.Rmd │ ├── 002-attr-options.md │ ├── 003-attr-callout.Rmd │ ├── 003-attr-callout.md │ ├── 004-caption-position.Rmd │ ├── 004-caption-position.md │ ├── 005-option-code.Rmd │ ├── 005-option-code.md │ ├── 006-option-collapse.Rmd │ ├── 006-option-collapse.md │ ├── 007-option-comment.Rmd │ ├── 007-option-comment.md │ ├── 008-option-device.Rmd │ ├── 008-option-device.md │ ├── 009-option-figure-decoration.Rmd │ ├── 009-option-figure-decoration.md │ ├── 010-option-plot-files.Rmd │ ├── 010-option-plot-files.md │ ├── 011-option-label.Rmd │ ├── 011-option-label.md │ ├── 012-option-order.Rmd │ ├── 012-option-order.md │ ├── 013-option-print.Rmd │ ├── 013-option-print.md │ ├── 014-option-purl.R │ ├── 014-option-purl.Rmd │ ├── 014-option-purl.md │ ├── 015-fill-chunk.Rmd │ ├── 015-fill-chunk.md │ ├── 016-option-results.Rmd │ ├── 016-option-results.md │ ├── 017-option-strip-white.Rmd │ ├── 017-option-strip-white.md │ ├── 018-option-table.Rmd │ ├── 018-option-table.md │ ├── 019-option-verbose.Rmd │ ├── 019-option-verbose.md │ ├── 020-inline.Rmd │ ├── 020-inline.md │ ├── 021-simple-datatables.Rmd │ ├── 021-simple-datatables.md │ ├── 022-dygraphs.Rmd │ ├── 022-dygraphs.md │ ├── 023-leaflet.Rmd │ ├── 023-leaflet.md │ ├── 024-chart-js.Rmd │ ├── 024-chart-js.md │ ├── 025-option-filter.Rmd │ ├── 025-option-filter.md │ ├── _run.R │ ├── test-collapse.Rmd │ ├── test-collapse.md │ ├── test-inline.Rmd │ ├── test-inline.md │ ├── test-options.Rmd │ ├── test-options.md │ ├── test-results-hide.Rmd │ └── test-results-hide.md ├── inst/ │ └── resources/ │ ├── default.css │ ├── listing.css │ ├── litedown.html │ ├── litedown.latex │ ├── server.css │ ├── server.js │ ├── snap.css │ └── snap.js ├── litedown.Rproj ├── man/ │ ├── crack.Rd │ ├── engines.Rd │ ├── fuse_book.Rd │ ├── fuse_env.Rd │ ├── fuse_site.Rd │ ├── get_context.Rd │ ├── html_format.Rd │ ├── litedown-package.Rd │ ├── mark.Rd │ ├── markdown_options.Rd │ ├── pkg_desc.Rd │ ├── raw_text.Rd │ ├── reactor.Rd │ ├── roam.Rd │ ├── smartypants.Rd │ ├── timing_data.Rd │ └── vest.Rd ├── playground/ │ ├── _default.Rmd │ └── setup.R ├── site/ │ ├── _footer.Rmd │ ├── _litedown.yml │ ├── action.yml │ ├── articles.Rmd │ ├── code.Rmd │ ├── examples.Rmd │ ├── index.Rmd │ ├── manual.Rmd │ ├── news.Rmd │ └── playground/ │ ├── _default.R │ └── index.html ├── tests/ │ ├── examples.R │ ├── test-cran/ │ │ ├── test-crack.R │ │ ├── test-fuse.R │ │ ├── test-fuse.md │ │ ├── test-mark.R │ │ ├── test-mark.md │ │ ├── test-reactor.R │ │ ├── test-reactor.md │ │ └── test-utils.R │ └── test-cran.R └── vignettes/ └── slides.Rmd