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 9a12223 commit c19ae1cCopy full SHA for c19ae1c
build/remark-code-titles.js
@@ -25,6 +25,9 @@ const remarkNumberHeadings = () => (tree) => {
25
} else if (language.toLowerCase() === "json") {
26
title = "JSON";
27
titleClasses.push("code-title-json");
28
+ } else if (language.toLowerCase() === "jsonc") {
29
+ title = "JSON";
30
+ titleClasses.push("code-title-json");
31
} else {
32
titleClasses.push("code-title-unknown");
33
}
0 commit comments