hugo_to_json 0.3.9

A library and command line tool for producing a JSON representation of a Hugo site.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub const FORWARD_SLASH: &str = "/";
pub const EMPTY_STRING: &str = "";
pub const TOML_FENCE: &str = "+++";
pub const YAML_FENCE: &str = "---";
pub const MARKDOWN_EXTENSION: &str = "md";

pub const DRAFT: &str = "draft";
pub const TITLE: &str = "title";
pub const SLUG: &str = "slug";
pub const URL: &str = "url";
pub const DATE: &str = "date";
pub const DESCRIPTION: &str = "description";
pub const TAGS: &str = "tags";
pub const CATEGORIES: &str = "categories";
pub const SERIES: &str = "series";
pub const KEYWORDS: &str = "keywords";