User's guide
Create an AtticOrthography:
using AtticGreek, Orthography
attic = atticGreek()
typeof(attic)AtticOrthographyIt inherits from OrthographicSystem:
typeof(attic) |> supertypePolytonicGreek.GreekOrthographySo we can validate strings:
s = nfkc("έδοχσεν τôι δέμοι")
validstring(s, attic)truevalidstring("μῆνιν", attic)falseAnd tokenize strings:
tokens = Orthography.tokenize(s, attic)
length(tokens)3tokens[1].tokencategoryOrthography.LexicalToken()tokens[1].text"έδοχσεν"