marmite 0.1.6

MARkdown Makes sITEs is a very simple static site generator, mainly for simple blogs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
check:
  cargo fmt -- --check
  cargo clippy

pedantic:
  cargo fmt -- --check
  cargo clippy -- -W clippy::pedantic

fmt:
  cargo fmt

fix:
  cargo clippy --fix

pedantic_fix:
  cargo clippy --fix -- -W clippy::pedantic