This repository has been archived on 2023-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
web/README.md

46 lines
1.1 KiB
Markdown
Raw Normal View History

2021-10-07 10:56:53 +02:00
mkht.php is a PHP script for building Gemini, Markdown and HTML/CSS sites from source documents in Gemini, Markdown, HTML, PHP, CSS and Less.
2021-10-07 10:56:53 +02:00
# Usage
2021-10-07 10:56:53 +02:00
Place your pages tree in `/src/*/*.(gmi|md)`.
2021-10-07 10:56:53 +02:00
Optionnal files:
2021-10-07 10:58:37 +02:00
* `/config.ini`
*`/style.less`
* `/logo.png`
* `/head.inc.html`
* `/footer.inc.html`
2021-10-07 10:56:53 +02:00
`mkht.php <site path> <destination >`
2021-04-05 18:32:22 +02:00
2021-10-07 10:56:53 +02:00
`destination` is optionnal and can be:
* `dns` if you want local links without exensions
* `onion` if you want links ending with .onion when available
2021-10-07 10:56:53 +02:00
# Input
2021-10-07 10:56:53 +02:00
Pages in `/src`can use Gemini (if using `gmi` extension), Markdown, HTML and PHP.
2021-04-05 18:32:22 +02:00
2021-10-07 10:56:53 +02:00
# Output
2021-10-07 10:58:37 +02:00
* `/*/*.gmi` (if using `.gmi` extension in /src)
* `/*/*.md`
* `/*/*.html`
* `/*/*.gz`
2021-10-07 10:56:53 +02:00
# External dependencies
* PHP
* gzip
* find
# Internal libraries used
| Name | Description | Source |
2021-04-05 18:32:22 +02:00
| --------- | --------------------------- | ------------------------------------------ |
2021-09-18 19:08:26 +02:00
| less.php | Compilateur Less en PHP | https://github.com/wikimedia/less.php |
2021-04-05 18:32:22 +02:00
| parsedown | Compilateur Markdown en PHP | https://parsedown.org |
2021-10-07 10:56:53 +02:00
# License
2021-10-07 10:56:53 +02:00
AGPLv3+