taraskevizer 8.0.7 → 8.0.8
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/README.md +5 -4
- package/dist/bin.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ tarask('яна і іншыя', abcOnlyPipeline, latinWithJiCfg);
|
|
|
74
74
|
|
|
75
75
|
## tarF
|
|
76
76
|
|
|
77
|
-
Difference between
|
|
77
|
+
Difference between the input and the output word.
|
|
78
78
|
|
|
79
79
|
```html
|
|
80
80
|
<tarF>this_part_of_word_is_fixed</tarF>
|
|
@@ -85,8 +85,8 @@ Difference between an input and an output word.
|
|
|
85
85
|
## tarL
|
|
86
86
|
|
|
87
87
|
A part of a word wrapped in this tag is variable,
|
|
88
|
-
variations are mentioned in a `data-l` attribute
|
|
89
|
-
|
|
88
|
+
variations are mentioned in a `data-l` attribute,
|
|
89
|
+
separated with commas.
|
|
90
90
|
|
|
91
91
|
```html
|
|
92
92
|
<tarL data-l="variation2,variation3">variation1</tarL>
|
|
@@ -96,7 +96,8 @@ and are separated by commas
|
|
|
96
96
|
|
|
97
97
|
## tarH
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
May be toggled between `г`(`h`) and `ґ`(`g`).
|
|
100
|
+
Appears only if alphabet is cyrillic.
|
|
100
101
|
|
|
101
102
|
```html
|
|
102
103
|
<tarH>г</tarH>
|
package/dist/bin.js
CHANGED
|
@@ -14,7 +14,7 @@ const printWithPrefix = (msg) => {
|
|
|
14
14
|
process.argv.splice(0, 2);
|
|
15
15
|
const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
|
|
16
16
|
if (checkForOptions(["-v", "--version"])) {
|
|
17
|
-
printWithPrefix("8.0.
|
|
17
|
+
printWithPrefix("8.0.8");
|
|
18
18
|
process.exit(0);
|
|
19
19
|
}
|
|
20
20
|
if (checkForOptions(["-h", "--help"])) {
|