slaw 3.3.1 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/slaw/grammars/za/act.treetop +13 -3
- data/lib/slaw/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8ee67f5faf27fbf0798c473d13ed04fdb23f50e84fd5da699688e91a9243c81
|
|
4
|
+
data.tar.gz: fa1e18df9ddece8b4e81604a9697e711b846fae2dfac465ddce7efdedb3e6e7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71e49ed835dad5c8d8e1663ec1df605c41bf43fb9e6691d41854be88f60923da7b425522c527bd154cc200b5c42bbf0f7db8bf3e46593f334b4c7ec209cb5d7a
|
|
7
|
+
data.tar.gz: 1a55315fa951c9208438ecea2718da71e9e2ab70bf23adbc16bb7d910855a6b8e9bad56e74f0d43474e56ad542f1f9d1124d84f4695f1f8d7c2bb11fbe81ef5e
|
data/README.md
CHANGED
|
@@ -81,6 +81,10 @@ You can create your own grammar by creating a gem that provides these files and
|
|
|
81
81
|
|
|
82
82
|
## Changelog
|
|
83
83
|
|
|
84
|
+
### 3.3.2 (15 May 2019)
|
|
85
|
+
|
|
86
|
+
* Internal adjustments to make rules easier to override
|
|
87
|
+
|
|
84
88
|
### 3.3.1 (15 May 2019)
|
|
85
89
|
|
|
86
90
|
* Crossheadings at start of body (ending preface and preamble)
|
|
@@ -178,18 +178,18 @@ module Slaw
|
|
|
178
178
|
# and is ignored. This allows escaping of section headings, etc.
|
|
179
179
|
|
|
180
180
|
rule naked_statement
|
|
181
|
-
space? !
|
|
181
|
+
space? !body_hierarchy_prefix '\\'? inline_items:inline_items? eol
|
|
182
182
|
<NakedStatement>
|
|
183
183
|
end
|
|
184
184
|
|
|
185
185
|
rule preface_statement
|
|
186
|
-
space? !
|
|
186
|
+
space? !non_body_hierarchy_prefix
|
|
187
187
|
content:(longtitle / ('\\'? inline_items:inline_items eol))
|
|
188
188
|
<PrefaceStatement>
|
|
189
189
|
end
|
|
190
190
|
|
|
191
191
|
rule preamble_statement
|
|
192
|
-
space? !
|
|
192
|
+
space? !non_body_hierarchy_prefix '\\'? inline_items eol
|
|
193
193
|
<NakedStatement>
|
|
194
194
|
end
|
|
195
195
|
|
|
@@ -237,6 +237,16 @@ module Slaw
|
|
|
237
237
|
num:dotted_number_2 '.'? (space / newline)
|
|
238
238
|
end
|
|
239
239
|
|
|
240
|
+
rule body_hierarchy_prefix
|
|
241
|
+
# Text that indicates the start of a hierarchy element, in the body
|
|
242
|
+
chapter_heading / part_heading / section_title / schedule_title / subsection_prefix / crossheading
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
rule non_body_hierarchy_prefix
|
|
246
|
+
# Text that indicates the start of a hierarchy element, in the preamble or preface
|
|
247
|
+
chapter_heading / part_heading / section_title / schedule_title / crossheading
|
|
248
|
+
end
|
|
249
|
+
|
|
240
250
|
include Slaw::Grammars::Inlines
|
|
241
251
|
include Slaw::Grammars::Tables
|
|
242
252
|
include Slaw::Grammars::Schedules
|
data/lib/slaw/version.rb
CHANGED