a-bakos / gazebo-cms

0 stars 0 forks source link

Permalink generator: add missing truncation methods #16

Open a-bakos opened 1 year ago

a-bakos commented 1 year ago
pub enum PermalinkTruncationMethod {
    // Simply cut the string at the end
    CutOffEnd,
    // Remove the least significant words
    RemoveLeastSignificantWords, // todo
    // Remove longest words
    RemoveLongestWords, // todo
}