From ae55299f01ab9f4a72fcd308f5cf48c8eae8e6ed Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 3 Dec 2024 02:38:39 +0300 Subject: [PATCH] docs(typst): Add README --- typst/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 typst/README.md diff --git a/typst/README.md b/typst/README.md new file mode 100644 index 0000000..fc29e81 --- /dev/null +++ b/typst/README.md @@ -0,0 +1,11 @@ +# Decasify package for Typst + +A thin wrapper around the *decasify* crate providing Typst functions for locale and style guide aware text casing functions. +Provides functionns for title-case (and other cases) that adapt to the language of the current document context. +Includes support for Turkish and multiple style guides. + +```typst +#import "decasify.typ": titlecase +#set text(lang: "tr") +#titlecase("ilk ışıltı") +```