├── .gitignore ├── LICENSE ├── README.md ├── _extensions └── custom-numbered-blocks │ ├── _extension.yml │ ├── custom-numbered-blocks.lua │ └── style │ ├── foldbox.css │ ├── foldbox.lua │ └── foldbox.tex ├── doc ├── example.html ├── example.pdf └── example_files │ └── libs │ ├── bootstrap │ ├── bootstrap-icons.css │ ├── bootstrap-icons.woff │ ├── bootstrap.min.css │ └── bootstrap.min.js │ ├── clipboard │ └── clipboard.min.js │ ├── quarto-contrib │ └── foldbox │ │ └── foldbox.css │ └── quarto-html │ ├── anchor.min.js │ ├── popper.min.js │ ├── quarto-syntax-highlighting.css │ ├── quarto.js │ ├── tippy.css │ └── tippy.umd.min.js └── example.qmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/custom-numbered-blocks/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/_extensions/custom-numbered-blocks/_extension.yml -------------------------------------------------------------------------------- /_extensions/custom-numbered-blocks/custom-numbered-blocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/_extensions/custom-numbered-blocks/custom-numbered-blocks.lua -------------------------------------------------------------------------------- /_extensions/custom-numbered-blocks/style/foldbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/_extensions/custom-numbered-blocks/style/foldbox.css -------------------------------------------------------------------------------- /_extensions/custom-numbered-blocks/style/foldbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/_extensions/custom-numbered-blocks/style/foldbox.lua -------------------------------------------------------------------------------- /_extensions/custom-numbered-blocks/style/foldbox.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/_extensions/custom-numbered-blocks/style/foldbox.tex -------------------------------------------------------------------------------- /doc/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example.html -------------------------------------------------------------------------------- /doc/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example.pdf -------------------------------------------------------------------------------- /doc/example_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /doc/example_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /doc/example_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /doc/example_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /doc/example_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-contrib/foldbox/foldbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-contrib/foldbox/foldbox.css -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /doc/example_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/doc/example_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ute/custom-numbered-blocks/HEAD/example.qmd --------------------------------------------------------------------------------