diff --git a/in/pages/overview.md b/in/pages/overview.md index 2cb6f27..940022b 100644 --- a/in/pages/overview.md +++ b/in/pages/overview.md @@ -3,13 +3,13 @@ {% block content %} Roxy is a static site generator. The hope is that using it will reduce the amount of boilerplate HTML that usually comes with handwriting static websites. -[roxy-cli](https://fem.mint.lgbt/kitsunecafe/roxy-cli) is a tool written using the [roxy-core](https://fem.mint.lgbt/kitsunecafe/roxy-core) which achieves the above goal by using markdown and templating. The default parsers are +[roxy_cli](https://fem.mint.lgbt/kitsunecafe/roxy-cli) is a tool written using the [roxy_core](https://fem.mint.lgbt/kitsunecafe/roxy-core) which achieves the above goal by using markdown and templating. The default parsers are * [pulldown_cmark](https://docs.rs/pulldown-cmark/0.10.0/pulldown_cmark/) for Markdown to HTML * [Tera](https://docs.rs/tera/1.19.1/tera/index.html) for templating * [Syntect](https://docs.rs/syntect/5.2.0/syntect/index.html) for syntax highlighting When creating the output, Roxy will do its best to preserve the original directory structure with a few changes. Mostly notably, any bare markdown files will be given their own subdirectory and named `index.html`. -This tool was written for my use case and there is a high chance it may not support yours. In that case, do some combination of the following things: open an issue against `roxy-cli`, write your own generator using `roxy-core`, or find another generator (it won't hurt my feelings, promise). +This tool was written for my use case and there is a high chance it may not support yours. In that case, do some combination of the following things: open an issue against `roxy_cli`, write your own generator using `roxy_core`, or find another generator (it won't hurt my feelings, promise). {% endblock content %} diff --git a/in/pages/quick-start.md b/in/pages/quick-start.md index 5371892..b4d3470 100644 --- a/in/pages/quick-start.md +++ b/in/pages/quick-start.md @@ -28,10 +28,10 @@ This is my new site! EOF ``` -Build the site with `roxy-cli`. +Build the site with `roxy_cli`. ```bash -roxy-cli ./input/ ./output/ +roxy_cli ./input/ ./output/ ``` Host the content and view it.