openzca 0.1.44 → 0.1.45
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/dist/cli.js +1 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -692,7 +692,7 @@ var TAG_STYLE_MAP = {
|
|
|
692
692
|
orange: TextStyle.Orange,
|
|
693
693
|
yellow: TextStyle.Yellow,
|
|
694
694
|
green: TextStyle.Green,
|
|
695
|
-
small:
|
|
695
|
+
small: null,
|
|
696
696
|
big: TextStyle.Big,
|
|
697
697
|
underline: TextStyle.Underline
|
|
698
698
|
};
|
|
@@ -740,8 +740,6 @@ function parseTextStyles(input) {
|
|
|
740
740
|
lineStyles.push({ lineIndex, style: TextStyle.Bold });
|
|
741
741
|
if (depth === 1) {
|
|
742
742
|
lineStyles.push({ lineIndex, style: TextStyle.Big });
|
|
743
|
-
} else if (depth === 3 || depth === 4) {
|
|
744
|
-
lineStyles.push({ lineIndex, style: TextStyle.Small });
|
|
745
743
|
}
|
|
746
744
|
processedLines.push(headingMatch[2]);
|
|
747
745
|
continue;
|