mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-10 03:32:51 -06:00
12 lines
349 B
Plaintext
12 lines
349 B
Plaintext
concrete TextChi of Text = CommonX - [Temp,Tense,Ant,Adv] ** open ResChi in {
|
|
|
|
-- No punctuation - but make sure to leave spaces between sentences!
|
|
|
|
lin
|
|
TEmpty = {s = []} ;
|
|
TFullStop x xs = {s = x.s ++ fullstop_s ++ xs.s} ;
|
|
TQuestMark x xs = {s = x.s ++ questmark_s ++ xs.s} ;
|
|
TExclMark x xs = {s = x.s ++ exclmark_s ++ xs.s} ;
|
|
|
|
}
|