├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── bake.sh ├── examples ├── README.md └── snippets.rs └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/README.md -------------------------------------------------------------------------------- /bake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/bake.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/snippets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/examples/snippets.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsichiX/md-bakery/HEAD/src/main.rs --------------------------------------------------------------------------------