Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
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>
This commit is contained in:
22
network-poc/frontend/node_modules/prismjs/components/prism-tap.js
generated
vendored
Normal file
22
network-poc/frontend/node_modules/prismjs/components/prism-tap.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
// https://en.wikipedia.org/wiki/Test_Anything_Protocol
|
||||
|
||||
Prism.languages.tap = {
|
||||
'fail': /not ok[^#{\n\r]*/,
|
||||
'pass': /ok[^#{\n\r]*/,
|
||||
'pragma': /pragma [+-][a-z]+/,
|
||||
'bailout': /bail out!.*/i,
|
||||
'version': /TAP version \d+/i,
|
||||
'plan': /\b\d+\.\.\d+(?: +#.*)?/,
|
||||
'subtest': {
|
||||
pattern: /# Subtest(?:: .*)?/,
|
||||
greedy: true
|
||||
},
|
||||
'punctuation': /[{}]/,
|
||||
'directive': /#.*/,
|
||||
'yamlish': {
|
||||
pattern: /(^[ \t]*)---[\s\S]*?[\r\n][ \t]*\.\.\.$/m,
|
||||
lookbehind: true,
|
||||
inside: Prism.languages.yaml,
|
||||
alias: 'language-yaml'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user