A Unicode string case converter that handles HTML
NOTE: This is a work in progress, not all features are working as intended or at all
Written in Elixir
Converts capitalization of an input unicode string, including the inner text of an HTML string or document. Available conversions are:
- all uppercase
- all lowercase
- title case
- capitalize words
- capitalize sentences
- capitalize lines
Once I've finished, and Casey is available in Hex, the package can be installed
by adding casey
to your list of dependencies in mix.exs
:
def deps do
[
{:casey, "~> 0.1.0"}
]
end