All Projects → EuAndreh → cl-slug

EuAndreh / cl-slug

Licence: other
Small library to make slugs, mainly for URIs, from english and beyond.

Programming Languages

common lisp
692 projects

Projects that are alternatives of or similar to cl-slug

cl-bootstrap
Common Lisp web development widget library for Twitter's Bootstrap
Stars: ✭ 16 (-27.27%)
Mutual labels:  quicklisp
dotfiles
These are my dotfiles. All the config stuff that I use is here.
Stars: ✭ 16 (-27.27%)
Mutual labels:  quicklisp
mondo
Simple Common Lisp REPL
Stars: ✭ 40 (+81.82%)
Mutual labels:  roswell
dockerfiles
Dockerfiles for Common Lisp programming
Stars: ✭ 30 (+36.36%)
Mutual labels:  roswell
Awesome Cl
A curated list of awesome Common Lisp frameworks, libraries and other shiny stuff.
Stars: ✭ 1,736 (+7790.91%)
Mutual labels:  quicklisp
oclcl
S-expression to OpenCL C
Stars: ✭ 42 (+90.91%)
Mutual labels:  quicklisp
croatoan
Common Lisp bindings for the ncurses terminal library.
Stars: ✭ 111 (+404.55%)
Mutual labels:  quicklisp

cl-slug

Quicklisp Build Status Circle CI Coverage Status

Easily create slugs from any string. Supports many languages alphabets. See Supported languages to check for supported languages or to help to add one.

Inspired by Lisp Web Tales.

Usage

* (ql:quickload :cl-slug)
; => (:CL-SLUG)
* (import '(slug:slugify slug:asciify slug:CamelCaseFy))
; => T

The main function is called slugify:

* (slugify "My new cool article, for the blog (V. 2).")
; => "my-new-cool-article-for-the-blog-v-2"
* (slugify "André Miranda")
; => "andre-miranda"

slugify removes any accented character, replacing it with an unaccented equivalent, and any punctuation (a punctuation is a char that returns NIL for alphanumericp) and puts a dash (-) on it's place. You can change that by binding (of setfing) *slug-separator*:

* (let ((*slug-separator* #\_))
    (slugify "Testing the *slug-separator* var..."))
; => "testing_the_slug_separator_var"

slugify also ignores numbers:

* (slugify "one2three4five")
; => "one2three4five"

If you just want to remove accents and punctuation of a given string, use asciify:

* (asciify "Eu André!")
; => "Eu Andre!"

Or if you want a CamelCase, use CamelCaseFy:

* (CamelCaseFy "My new camel case string")
; => "MyNewCamelCaseString"

Available languages are stored in *available-languages*:

* slug:*available-languages*
((:TR . "Türkçe (Turkish)") (:SV . "Svenska (Swedish)") (:FI . "Suomi (Finnish)") 
 (:UK . "українська (Ukrainian)") (:RU . "Ру́сский (Russian)") (:RO . "Română (Romanian)")
 (:RM . "Rumàntsch (Romansh)") (:PT . "Português (Portuguese)") (:PL . "Polski (Polish)")
 (:NO . "Norsk (Norwegian)") (:LT . "Lietuvių (Lithuanian)") (:LV . "Latviešu (Latvian)")
 (:LA . "Lingua Latīna (Latin)") (:IT . "Italiano (Italian)") (:EL . "ελληνικά (Greek)")
 (:FR . "Français (French)") (:EO . "Esperanto") (:ES . "Español (Spanish)") (:EN . "English")
 (:DE . "Deutsch (German)") (:DA . "Dansk (Danish)") (:CS . "Čeština (Czech)")
 (:CURRENCY . "Currency"))

Dependencies

This library depends on CL-PPCRE. The test package uses the prove test library.

Installation

Available on Quicklisp:

(ql:quickload :cl-slug)

Supported languages

The languages that are supported right now are:

  • english
  • portuguese
  • esperanto
  • german
  • french
  • swedish
  • finnish
  • norwegian
  • danish
  • italian
  • spanish
  • romansh

Ported from Django():

  • currency
  • romanian
  • lithuanian
  • latvian
  • polish
  • czesh
  • ukranian
  • russian
  • turkish
  • greek
  • latin

At the present moment, adding new languages is a fairly manual process:

  1. Identify non-ASCII characters in a given language's alphabet
  2. Establish equivalence between the found characters and ASCII characters
  3. Write them down in the code.

All those things can actually be done for most of the dominant Western languages, but can't be applied for minor regional languages or many other non-Latin languages from the whole world, like Chinese. It's not generic and not scalable.

I couldn't think of a solution so far for this, but if you know a solution (even a partial one) I'd be glad to hear =].

Bugs

If you find any bug or inconsistency in the code, or if you find it too hard to use, please, feel free to open an issue.

Tests

This library is tested under ABCL, SBCL, CCL, CLISP and ECL Common Lisp implementations.

To run all the defined tests, use:

* (asdf:test-system :cl-slug)
; prints lots of (colorful) stuff...
; => T

Tests are ran with Travis CI and Circle CI using cl-travis, CIM, cl-coveralls and Roswell. Check it out!

Author

André Miranda.

License

LLGPL.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].