computable-pandoc/README.md

78 lines
1.9 KiB
Markdown
Raw Normal View History

2023-03-08 21:05:42 -06:00
# Literate Pandoc
2023-02-16 19:19:47 -06:00
2023-03-11 14:14:24 -06:00
Literate Pandoc is a [Pandoc filter] written in [Lua] for [literate] and
[natural] programming (LiNP or just Linp), i.e.: "[Programming \[...\] as the
process of creating works of literature][1]".
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
## Requirements
- [Pandoc]
## Install
2023-03-09 15:52:03 -06:00
1. Go to [Releases].
2023-03-11 14:14:24 -06:00
2. Download the latest version of `linp.lua`.
2023-03-09 15:52:03 -06:00
3. Done!
2023-02-17 13:38:38 -06:00
2023-02-16 19:19:47 -06:00
## Usage
2023-03-11 14:14:24 -06:00
With `linp.lua` downloaded and Pandoc installed, do:
2023-02-16 19:19:47 -06:00
2023-03-11 14:14:24 -06:00
pandoc -L PATH/TO/linp.lua -t FORMAT DOC
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
For example, if `DOC` is `source.md` and the output `FORMAT` is HTML, do:
2023-02-16 19:19:47 -06:00
2023-03-11 14:14:24 -06:00
pandoc -L PATH/TO/linp.lua -t html source.md
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
## Manual
2023-02-16 19:19:47 -06:00
2023-03-11 14:14:24 -06:00
Learn how to do LiNP [here].
2023-02-16 19:19:47 -06:00
2023-03-15 16:12:48 -06:00
## Develop
2023-02-16 19:19:47 -06:00
2023-03-09 15:58:14 -06:00
Clone this repo:
git clone https://git.cuates.net/perro/literate-pandoc.git
Enter the repo:
cd literate-pandoc
2023-03-15 16:12:48 -06:00
Inside, do the tests:
2023-03-08 21:05:42 -06:00
2023-03-15 16:12:48 -06:00
sh scripts/test.sh
2023-02-16 19:19:47 -06:00
2023-03-15 16:12:48 -06:00
For other kind of tests, do:
2023-02-17 13:38:38 -06:00
2023-03-15 16:12:48 -06:00
sh scripts/test.sh -h
2023-03-08 21:05:42 -06:00
2023-03-15 16:12:48 -06:00
Contribute!
2023-03-08 21:05:42 -06:00
## Acknowledgments
2023-02-17 13:38:38 -06:00
2023-03-08 21:05:42 -06:00
This wouldn't be possible without these projects and their collaborators:
2023-02-17 13:38:38 -06:00
2023-03-08 21:05:42 -06:00
- [Pandoc][]: universal document converter and parser; handles the
2023-03-11 14:14:24 -06:00
requirements for LiNP.
- [Lua][]: programming language; enables LiNP.
2023-03-08 21:05:42 -06:00
- [Fennel][]: [Lisp] dialect with full Lua compatibility; allows to go from
2023-03-11 14:14:24 -06:00
LiNP to Lisp or Lua.
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
## License
Literate Pandoc is under [GPLv3].
Happy hacking :)
2023-02-17 14:45:36 -06:00
2023-03-11 14:14:24 -06:00
[Pandoc filter]: https://pandoc.org/lua-filters.html
2023-02-16 19:19:47 -06:00
[Lua]: https://www.lua.org/
2023-03-08 21:05:42 -06:00
[literate]: https://en.wikipedia.org/wiki/Literate_programming
[natural]: https://en.wikipedia.org/wiki/Natural-language_programming
[1]: https://web.archive.org/web/20170605163729/http://www.desy.de/user/projects/LitProg/Philosophy.html
2023-03-10 21:09:31 -06:00
[Pandoc]: https://pandoc.org/
2023-03-09 15:52:03 -06:00
[Releases]: https://git.cuates.net/perro/literate-pandoc/releases
2023-03-08 21:05:42 -06:00
[here]: https://git.cuates.net/perro/literate-pandoc/src/branch/no-masters/man/README.md
[Fennel]: https://fennel-lang.org
[Lisp]: https://en.wikipedia.org/wiki/Lisp_(programming_language)
[GPLv3]: https://git.cuates.net/perro/literate-pandoc/src/branch/no-masters/LICENSE.txt