mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-13 14:59:32 -06:00
12 lines
286 B
Plaintext
12 lines
286 B
Plaintext
concrete TextTha of Text = CommonX ** {
|
|
|
|
-- 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} ;
|
|
|
|
}
|