You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
David Métivier 5f713cc31f
Merge 81819c61ca into 17e8ef55d0
4 days ago
.github Bump actions/checkout from 5 to 6 (#283) 4 days ago
docs Release 2.21.0 (#281) 2 weeks ago
examples Update README links 12 months ago
src Merge 81819c61ca into 17e8ef55d0 4 days ago
test Merge 81819c61ca into 17e8ef55d0 4 days ago
.codecov.yml Consistent naming of CI configuration files. 7 years ago
.git-blame-ignore-revs Add formatting commit to blame ignore list 12 months ago
.gitignore Use a coverage project for code coverage submission. 7 years ago
CHANGELOG.md Release 2.21.0 (#281) 2 weeks ago
LICENSE.md Use IOCapture instead of withoutput (#124) 5 years ago
Project.toml Release 2.21.0 (#281) 2 weeks ago
README.md Update README links 12 months ago

README.md

Literate

Documentation CI Codecov code style: runic

Literate is a package for Literate Programming. The main purpose is to facilitate writing Julia examples/tutorials that can be included in your package documentation.

Literate can generate markdown pages (for e.g. Documenter.jl), and Jupyter notebooks, from the same source file. There is also an option to "clean" the source from all metadata, and produce a pure Julia script. Using a single source file for multiple purposes reduces maintenance, and makes sure your different output formats are synced with each other.

This README was generated directly from this source file running these commands from the package root of Literate.jl:

using Literate
Literate.markdown("examples/README.jl", "."; flavor = Literate.CommonMarkFlavor())
  • Weave.jl can generate Jupyter notebooks, HTML, or PDF directly from a Markdown format containing Julia code blocks.
  • Quarto can generate Jupyter notebooks, HTML, or PDF directly from a Markdown format containing Julia code blocks, and also works with R and Python. (Note that Literate.jl can produce Quarto input markdown files (.qmd) as well.)

This page was generated using Literate.jl.