ceb9bc8ed7
* maybe_slugify() only does simple sanitation if config.slugify is false * slugify is disabled by default, turn on for backwards-compatibility * First docs changes for optional slugification * Remove # from slugs but not & * Add/fix tests for utf8 slugs * Fix test sites for i18n slugs * fix templates tests for i18n slugs * Rename slugify setting to slugify_paths * Default slugify_paths * Update documentation for slugify_paths * quasi_slugify removes ?, /, # and newlines * Remove forbidden NTFS chars in quasi_slugify() * Slugification forbidden chars can be configured * Remove trailing dot/space in quasi_slugify * Fix NTFS path sanitation * Revert configurable slugification charset * Remove \r for windows newlines and \t tabulations in quasi_slugify() * Update docs for output paths * Replace slugify with slugify_paths * Fix test * Default to not slugifying * Move slugs utils to utils crate * Use slugify_paths for anchors as well
26 lines
555 B
TOML
26 lines
555 B
TOML
[package]
|
|
name = "rendering"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
|
|
[dependencies]
|
|
tera = { version = "1", features = ["preserve_order"] }
|
|
syntect = "=3.2.0"
|
|
pulldown-cmark = "0.6"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
pest = "2"
|
|
pest_derive = "2"
|
|
regex = "1"
|
|
lazy_static = "1"
|
|
|
|
errors = { path = "../errors" }
|
|
front_matter = { path = "../front_matter" }
|
|
utils = { path = "../utils" }
|
|
config = { path = "../config" }
|
|
link_checker = { path = "../link_checker" }
|
|
|
|
[dev-dependencies]
|
|
templates = { path = "../templates" }
|
|
|