computable-pandoc/README.md

80 lines
2.1 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-10 21:09:31 -06:00
Literate Pandoc is a [Pandoc reader] written in [Lua] for [literate] and
[natural] programming (LNP), 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-09 20:13:01 -06:00
2. Download the latest version of `literate.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-09 20:13:01 -06:00
With `literate.lua` downloaded and Pandoc installed, do:
2023-02-16 19:19:47 -06:00
2023-03-09 20:13:01 -06:00
pandoc -f PATH/TO/literate.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-09 20:13:01 -06:00
pandoc -f PATH/TO/literate.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-08 21:05:42 -06:00
Learn how to do LNP [here].
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
## Test
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
Inside, do:
2023-03-08 21:05:42 -06:00
sh scripts/test.sh FORMAT1 FORMAT2
2023-02-16 19:19:47 -06:00
2023-03-08 21:05:42 -06:00
For example, if `FORMAT1` is Markdwon and `FORMAT2` is HTML, do:
2023-02-17 13:38:38 -06:00
2023-03-08 21:05:42 -06:00
sh tests/test.sh markdown html
For distribution tests, do:
sh scripts/test.sh --dist FORMAT1 FORMAT2
## 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
requirements for LNP.
- [Lua][]: programming language; enables LNP.
- [Fennel][]: [Lisp] dialect with full Lua compatibility; allows to go from
LNP 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-09 20:13:01 -06:00
[Pandoc reader]: https://pandoc.org/custom-readers.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