ekms 8.9.1-beta.11 → 8.9.1-beta.12
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.
- package/common/crew.instance.json +384 -0
- package/common/edible.instance.json +36 -0
- package/common/fastfood.instance.json +353 -405
- package/common/ordinals.js +3 -0
- package/common/ordinals.test.json +327 -0
- package/common/pipboy.instance.json +72 -0
- package/common/reports.instance.json +1 -1
- package/common/wp.instance.json +42 -2
- package/common/wp.js +17 -12
- package/common/wp.test.json +6638 -0
- package/package.json +2 -2
package/common/wp.js
CHANGED
@@ -9,27 +9,30 @@ const wp_tests = require('./wp.test.json')
|
|
9
9
|
const instance = require('./wp.instance.json')
|
10
10
|
|
11
11
|
/*
|
12
|
-
|
12
|
+
done
|
13
13
|
bold the first word
|
14
14
|
bold the first paragraph
|
15
15
|
bold the first letter
|
16
|
-
|
17
|
-
current
|
18
|
-
|
19
|
-
underline the bolded paragraphs
|
20
|
-
underline the paragraphs that contain bolded words
|
21
|
-
|
22
|
-
after
|
23
16
|
bold the first word of every paragraph
|
24
17
|
bold the first word of the second and third paragraph
|
25
|
-
bold the
|
18
|
+
bold the paragraph that contains words that start with t
|
19
|
+
underline the paragraph that contains bolded words
|
20
|
+
underline the paragraphs that contain bolded words
|
26
21
|
bold the first letter of every word
|
22
|
+
bold the third letter of the second paragraph
|
23
|
+
|
24
|
+
current
|
25
|
+
|
27
26
|
bold the first letter of every word that starts with t
|
27
|
+
|
28
|
+
todo
|
29
|
+
bold the first word of the second paragraph and third paragraph
|
28
30
|
bold the first letter of the words that start with t in the third paragraph
|
29
|
-
|
30
|
-
underline the paragraph that contains bolded words
|
31
|
+
underline the bolded paragraphs
|
31
32
|
bold the paragraph that contains three bolded words
|
32
|
-
|
33
|
+
capitalize the first letter of the words that start with t
|
34
|
+
underline the first bolded word
|
35
|
+
underline the first bolded word that start with t
|
33
36
|
the paragraph that contains the word boobies
|
34
37
|
|
35
38
|
after
|
@@ -341,6 +344,8 @@ template = {
|
|
341
344
|
],
|
342
345
|
priorities: [
|
343
346
|
{ "context": [['paragraphComparisonVerb_wp', 0], ['word_wp', 0], ['wordComparisonWithVerb_wp', 0]], ordered: true, choose: [2] },
|
347
|
+
{ "context": [['statefulElementInContext_wp', 0], ['word_wp', 0], ['wordComparisonWithVerb_wp', 0]], ordered: true, choose: [2] },
|
348
|
+
{ "context": [['statefulElementInContext_wp', 0], ['comparisonWith_wp', 0]], choose: [1] },
|
344
349
|
{ "context": [['paragraphComparisonVerb_wp', 0], ['wordComparisonWithVerb_wp', 0]], choose: [1] },
|
345
350
|
{ "context": [['ordinal',1], ['list', 0], ['ordinal', 1], ['word_wp', 1]], ordered: true, choose: [1] },
|
346
351
|
{ "context": [['changeState_wp',0], ['every', 0], ['word_wp', 1], ['list', 1]], ordered: true, choose: [1] },
|