srcweave
srcweave copied to clipboard
A literate programming system for any language.
The usual way to build common lisp apps is to build an image, so each program has its own copy of the interpreter/compiler. I did quite a bit of work...
I've got some code like below and I'd like to comment out all of the `64 bit test loop` with a single `//` line. But right now it only prefixes...
I was trying to produce a lit file from a lit file. But I don't find how to escape the code block inside the code block like the following example...
Running the current master on any `.lit` file (including the Hello World example) yields the above output. **Input**: ` srcweave --weave doc/ --formatter srcweave-format hello.lit` **Output**: `attempting to include unknown...
This should be an error: ``` --- block ++ ---- ```
weave can be slow, but tangle should be as fast as possible.
Currently we rely on prettifies auto detection. - File extensions/pattterns can determine file type for roots. - Anything included by a root file type should also take on that same...
To link to a chapter/section: [anchor text](@chapter or section title) This change adds a slot to the weaver to store a map of chapter/section titles to their IDs. Then when...
I was reading your documentation and I saw you mention: > [Literate](https://zyedidia.github.io/literate/) is the system I used for several years, before writing my own. It is self hosting, which I...