1
0
forked from GitHub/gf-core
Files
gf-core/lib/src/thai/TextTha.gf

12 lines
301 B
Plaintext

concrete TextTha of Text = CommonX ** open ResTha in {
-- No punctuation - but make sure to leave spaces between sentences!
lin
TEmpty = {s = []} ;
TFullStop x xs = {s = x.s ++ "" ++ xs.s} ;
TQuestMark x xs = {s = x.s ++ "" ++ xs.s} ;
TExclMark x xs = {s = x.s ++ "" ++ xs.s} ;
}