Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
492 B
JavaScript
21 lines
492 B
JavaScript
Prism.languages.yang = {
|
|
// https://tools.ietf.org/html/rfc6020#page-34
|
|
// http://www.yang-central.org/twiki/bin/view/Main/YangExamples
|
|
'comment': /\/\*[\s\S]*?\*\/|\/\/.*/,
|
|
'string': {
|
|
pattern: /"(?:[^\\"]|\\.)*"|'[^']*'/,
|
|
greedy: true
|
|
},
|
|
'keyword': {
|
|
pattern: /(^|[{};\r\n][ \t]*)[a-z_][\w.-]*/i,
|
|
lookbehind: true
|
|
},
|
|
'namespace': {
|
|
pattern: /(\s)[a-z_][\w.-]*(?=:)/i,
|
|
lookbehind: true
|
|
},
|
|
'boolean': /\b(?:false|true)\b/,
|
|
'operator': /\+/,
|
|
'punctuation': /[{};:]/
|
|
};
|