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.
Jan Magnusson 42af3f01e7
Merge aaa83bc7fa into 6b9dd249cf
7 years ago
docs test new documenter 7 years ago
examples Upgrade to Julia v0.7 (#14) 8 years ago
src Verify that inputfile exist before working with it, fix #24. 7 years ago
test Verify that inputfile exist before working with it, fix #24. 7 years ago
.codecov.yml change to comment=off (#2) 8 years ago
.gitignore Upgrade to Julia v0.7 (#14) 8 years ago
.travis.yml CI: don't test on 0.7. 7 years ago
LICENSE.md s/Examples/Literate 8 years ago
Project.toml Set version to 1.0.0. 7 years ago
README.jl Add ridiculous example 7 years ago
README.md Add ridiculous example 7 years ago
REQUIRE Upgrade to Julia v0.7 (#14) 8 years ago
appveyor.yml CI: don't test on 0.7. 7 years ago

README.md

EditURL = "https://github.com/TRAVIS_REPO_SLUG/blob/master/"

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 is generated directly from this source file with these two commands:

using Literate
Literate.markdown("README.jl", ".")

#- This page was generated using Literate.jl.