We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3b1b1 commit 980db90Copy full SHA for 980db90
src/syntax/ui/view/syntax.js
@@ -9,6 +9,11 @@ function markupSyntax(syntax, match) {
9
const error = !entityDescriptor || !entityDescriptor.object.match;
10
11
str = `<a href="#${node.type}:${node.name}"${error ? ' class="error"' : ''}>${utils.escapeHtml(str)}</a>`;
12
+ } else if (node.type === 'Boolean') {
13
+ str = str
14
+ .replace('<', '<')
15
+ .replace('[', '[ ')
16
+ .replace(/\]>$/, ' ]>');
17
}
18
19
if (match && match.type === node.type && match.name === node.name) {
0 commit comments