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
28 lines
476 B
TOML
28 lines
476 B
TOML
title = "My site"
|
|
base_url = "https://replace-this-with-your-url.com"
|
|
highlight_code = true
|
|
compile_sass = true
|
|
generate_rss = true
|
|
theme = "sample"
|
|
slugify_paths = true
|
|
|
|
taxonomies = [
|
|
{name = "categories", rss = true},
|
|
]
|
|
|
|
extra_syntaxes = ["syntaxes"]
|
|
|
|
ignored_content = ["*/ignored.md"]
|
|
|
|
[link_checker]
|
|
skip_prefixes = [
|
|
"http://[2001:db8::]/",
|
|
]
|
|
|
|
skip_anchor_prefixes = [
|
|
"https://github.com/rust-lang/rust/blob/",
|
|
]
|
|
|
|
[extra.author]
|
|
name = "Vincent Prouillet"
|