blob: c2a600fe88eb5fe1bce892922c872b551a070d51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# The Mana World Policies
Contains the legal documents and policies observed by The Mana World.
## Policy files
Policy files are are located in the [policies](policies) directory.
Currently, only Markdown is supported for policy files.
### Front Matter
The Front Matter is a YAML document that defines the properties of the policy.
#### Required properties
- name: the full name of the policy
- description: a short summary of the policy
#### Optional properties
- aliases: an array of path aliases (redirects)
- ignore: prevents the policy file from being built
### Example
```md
---
name: Policy Name
description: A short sumary
aliases: [foo, bar]
---
# title
content
```
<br>
---
## Generating the static site
### Dependencies
- GNU Make (pre-installed in most linux distros)
- [Deno](https://deno.land) 1.x (can be installed with `make deno`)
```sh
make build
```
|