wikidot-normalize 0.2.0

Simple library to provide Wikidot-compatible string normalization
Documentation

wikidot-normalize

Build Status

Simple library to provide Wikidot-compatible string normalization.

Wikidot normal form is used in the site's page names. Essentially it ensures the following:

  • All ASCII is lowercase.
  • All characters outside of _, :, a-z, 0-9, or - are replaced with dashes.
  • Any leading or trailing dashes are removed.
  • Any set of multiple dashes are replaced with a single dash.

Examples:

  • "Big Cheese Horace" -> "big-cheese-horace"
  • "bottom--Text" -> "bottom-text"
  • "Tufto's Proposal" -> "tufto-s-proposal"
  • "-test-" -> "test"

Available under the terms of the MIT License. See LICENSE.md.

Compilation

This library targets the latest stable Rust. At time of writing, that is 1.38.0

$ cargo build --release

Testing

$ cargo test

Add -- --nocapture to the end if you want to see test output.