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.
Fredrik Ekre 0cd17ff0b1
fix test again
2 years ago
.github Bump julia-actions/setup-julia from 1 to 2 (#241) 2 years ago
docs Code and doc formatting, changelog, mark as experimental. 2 years ago
examples Add link to Weave.jl under 'Related packages' in README, fixes #208. 3 years ago
src Code and doc formatting, changelog, mark as experimental. 2 years ago
test fix test again 2 years ago
.codecov.yml Consistent naming of CI configuration files. 7 years ago
.gitignore Use a coverage project for code coverage submission. 7 years ago
CHANGELOG.md Code and doc formatting, changelog, mark as experimental. 2 years ago
LICENSE.md Use IOCapture instead of withoutput (#124) 5 years ago
Project.toml Set version to 2.16.1. 2 years ago
README.md Add link to Weave.jl under 'Related packages' in README, fixes #208. 3 years ago

README.md

Literate

Documentation Build Status

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())

This page was generated using Literate.jl.