-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from dehilsterlexis/VISUALTEXT-FILES-002
VISUALTEXT-FILES-002 Adding formatting
- Loading branch information
Showing
6 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
############################################### | ||
# FILE: paragraphs.pat | ||
# SUBJ: comment | ||
# AUTH: David de Hilster | ||
# CREATED: 26/May/20 19:43:46 | ||
# MODIFIED: | ||
############################################### | ||
|
||
@NODES _ROOT | ||
|
||
@RULES | ||
_paragraph <- | ||
_xWILD [match=(_LINE)] ### (2) | ||
@@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
############################################### | ||
# FILE: sentenceEnders.pat | ||
# SUBJ: comment | ||
# AUTH: David de Hilster | ||
# CREATED: 22/Apr/20 18:24:07 | ||
# MODIFIED: | ||
############################################### | ||
|
||
@NODES _ROOT | ||
|
||
@POST | ||
singler(2,2); | ||
|
||
@RULES | ||
_endSent <- | ||
_xWILD [s one match=(_xALPHA _xNUM)] ### (1) | ||
_xWILD [one trig match=(\. \? \!)] ### (2) | ||
_xWILD [one match=(_xWHITE _xALPHA _xNUM _xEND _xCTRL)] ### (3) | ||
@@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
############################################### | ||
# FILE: sentences.pat | ||
# SUBJ: comment | ||
# AUTH: David de Hilster | ||
# CREATED: 22/Apr/20 18:24:07 | ||
# MODIFIED: | ||
############################################### | ||
|
||
@NODES _paragraph | ||
|
||
@RULES | ||
_sentence <- | ||
_xWILD [fail=(_endSent _BLANKLINE)] ### (1) | ||
_xWILD [one match=(_endSent _BLANKLINE)] ### (2) | ||
@@ |