mirror of
https://github.com/getzola/zola
synced 2024-12-14 14:22:28 +00:00
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
25 lines
515 B
TOML
25 lines
515 B
TOML
[package]
|
|
name = "library"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
|
|
[dependencies]
|
|
slotmap = "0.4"
|
|
rayon = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tera = "1"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
regex = "1"
|
|
lazy_static = "1"
|
|
|
|
front_matter = { path = "../front_matter" }
|
|
config = { path = "../config" }
|
|
utils = { path = "../utils" }
|
|
rendering = { path = "../rendering" }
|
|
errors = { path = "../errors" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
toml = "0.5"
|
|
globset = "0.4"
|