tpmkms_4wp 8.9.1-beta.13 → 8.9.1-beta.14
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/wp.js +3 -2
- package/common/wp.test.json +4163 -0
- package/package.json +2 -2
package/common/wp.js
CHANGED
@@ -22,14 +22,14 @@ const instance = require('./wp.instance.json')
|
|
22
22
|
bold the first letter of every word
|
23
23
|
bold the third letter of the second paragraph
|
24
24
|
bold the first letter of every word that starts with t
|
25
|
+
underline the bolded words in the second paragraph
|
25
26
|
|
26
27
|
current
|
27
28
|
|
28
|
-
|
29
|
+
bold the words that start with t in the second paragraph
|
29
30
|
|
30
31
|
todo
|
31
32
|
|
32
|
-
bold the words that start with t in the third paragraph
|
33
33
|
bold the first letter of the words that start with t in the third paragraph
|
34
34
|
underline the bolded paragraphs
|
35
35
|
bold the paragraph that contains three bolded words
|
@@ -347,6 +347,7 @@ template = {
|
|
347
347
|
},
|
348
348
|
],
|
349
349
|
priorities: [
|
350
|
+
{ "context": [['word_wp', 1], ['wordComparisonWithVerb_wp', 0], ['comparisonWith_wp', 1], ['statefulElementInContext_wp', 0]], ordered: true, choose: [1] },
|
350
351
|
{ "context": [['paragraphComparisonVerb_wp', 0], ['word_wp', 0], ['wordComparisonWithVerb_wp', 0]], ordered: true, choose: [2] },
|
351
352
|
{ "context": [['statefulElementInContext_wp', 0], ['word_wp', 0], ['wordComparisonWithVerb_wp', 0]], ordered: true, choose: [2] },
|
352
353
|
{ "context": [['statefulElementInContext_wp', 0], ['comparisonWith_wp', 0]], choose: [1] },
|