forked from GitHub/gf-core
12 lines
301 B
Plaintext
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} ;
|
|
|
|
}
|