1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

soupault: add page (#8559)

* soupault: add page

* Update pages/common/soupault.md
This commit is contained in:
Daniil Baturin 2022-10-01 17:26:58 +01:00 committed by GitHub
parent 9841d5fa3c
commit d7fa38828e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
pages/common/soupault.md Normal file
View file

@ -0,0 +1,25 @@
# soupault
> Soupault is a static website generator based on HTML element tree rewriting.
> It can also be used as an HTML post-processor or metadata extractor.
> More information: <https://soupault.app>.
- Initialize a minimal website project in the current working directory:
`soupault --init`
- Build a website:
`soupault`
- Override default config file and directory locations:
`soupault --config {{config_path}} --site-dir {{input_dir}} --build-dir {{output_dir}}`
- Extract metadata into a JSON file without generating pages:
`soupault --index-only --dump-index-json {{path/to/file.json}}`
- Show the effective config (values from `soupault.toml` plus defaults):
`soupault --show-effective-config`