You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
838 B
Markdown

2 years ago
# vss
A static site generator
## Caution
vss is still under development and the API is not stable.
Be aware that destructive changes will be made if you use it!
2 years ago
## Install
```
git clone https://github.com/zztkm/vss.git
cd vss
v vss.v
```
2 years ago
## Usage
Setup contents
```
tree
.
├── index.md
└── vss (executable)
cat index.md
# Open Sea
A static site generator
- [GitHub](https://github.com/zztkm)
```
2 years ago
Build your site
```
vss
```
2 years ago
Output
```
tree
.
├── dist
│ └── index.html
├── index.md
└── vss
1 directory, 3 files
cat dist/index.html
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>tsurutatakumi.info</title>
</head>
<body>
<h1>Open Sea</h1>
<p>A static site generator</p>
<ul>
<li><a href="https://github.com/zztkm">GitHub</a></li>
</ul>
</body>
```