Crates.io | yassg |
lib.rs | yassg |
version | 0.2.0 |
source | src |
created_at | 2023-02-16 20:55:32.033638 |
updated_at | 2023-07-10 11:09:46.972765 |
description | Yet another (another) (simple) static site generator |
homepage | https://github.com/rafal06/yassg |
repository | https://github.com/rafal06/yassg |
max_upload_size | |
id | 787054 |
size | 37,579 |
Very simple static site generator that compiles files to plain HTML
Features include:
First, you have to install Rust. Then, install Yassg by executing:
$ cargo install yassg
If you want to install the unreleased version from Git, clone this repo, and then run cargo install --path .
Create a folder for your project. In the new src
directory, create a file index.html
and a folder named components
.
The file structure should look like this:
my-project
└── src
├── components
└── index.html
Inside the components
folder, create a file Greeting.html
, or whatever name you'd like. It must start with an uppercase letter and not contain a space. PascalCase is recommended.
Inside this file put some html, for example
<div>
<p>Hello, {{name}}!</p>
</div>
{{name}}
is a variable referenced in the HTML. We assign them values when using the components.
Open index.html
, and insert this code:
<!DOCTYPE html>
<html>
<head></head>
<body>
<Greeting name="World" />
</body>
</html>
Remember the name we gave to the file in the components directory? We use the same name (without the file extension) in our HTML to use the component. We then assign value World
to the variable name
we used in our component.
After we added some code, we can run Yassg to compile it.
$ yassg .
Info
If you want Yassg to automatically rebuild the project when you change something, pass in the--watch
flag
It will read all component files, and place them inside the index.html
file, with the assigned variables, resulting in the following output in the dist
directory:
<!DOCTYPE html>
<html>
<head></head>
<body>
<div>
<p>Hello, World!</p>
</div>
</body>
</html>
Congrats on making your first static page with Yassg!
Bug reports and pull requests are welcome on GitHub at https://github.com/rafal06/yassg.
Yassg is available as open source under the terms of the MIT License.