├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── content ├── articles │ ├── article1.md │ ├── article2.md │ ├── article3.md │ └── markdown.md └── index.md ├── dist ├── articles │ ├── article1.html │ ├── article2.html │ └── article3.html ├── index.html └── static │ └── style.css ├── src ├── cli.rs ├── main.rs └── mainbk.rs ├── static └── style.css └── templates ├── article_template.html └── template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/README.md -------------------------------------------------------------------------------- /content/articles/article1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/content/articles/article1.md -------------------------------------------------------------------------------- /content/articles/article2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/content/articles/article2.md -------------------------------------------------------------------------------- /content/articles/article3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/content/articles/article3.md -------------------------------------------------------------------------------- /content/articles/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/content/articles/markdown.md -------------------------------------------------------------------------------- /content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/content/index.md -------------------------------------------------------------------------------- /dist/articles/article1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/dist/articles/article1.html -------------------------------------------------------------------------------- /dist/articles/article2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/dist/articles/article2.html -------------------------------------------------------------------------------- /dist/articles/article3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/dist/articles/article3.html -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/dist/static/style.css -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mainbk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/src/mainbk.rs -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/article_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/templates/article_template.html -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromgodd/yachiru/HEAD/templates/template.html --------------------------------------------------------------------------------