@bablr/cli 0.11.1 → 0.11.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.
- package/lib/syntax.js +4 -1
- package/package.json +1 -1
package/lib/syntax.js
CHANGED
|
@@ -90,7 +90,10 @@ function* __higlightStrategy(tags) {
|
|
|
90
90
|
) {
|
|
91
91
|
yield buildAnsiPushEffect('magenta bold');
|
|
92
92
|
} else if (tagName === null && tag.value.flags.token) {
|
|
93
|
-
if (
|
|
93
|
+
if (
|
|
94
|
+
currentName === Symbol.for('ReferenceTag') ||
|
|
95
|
+
currentName === Symbol.for('ReferenceFlags')
|
|
96
|
+
) {
|
|
94
97
|
yield buildAnsiPushEffect('bold gray');
|
|
95
98
|
} else {
|
|
96
99
|
yield buildAnsiPushEffect();
|