SPB Git forge

spb/admin-ka

Public
41commits 1branches 0releases
172.9 MBsize
maindefault branch
19 days agolast push
JavaScript 65.5% Python 17.8% CSS 13% HTML 3.7%

admin-ka v1 — console chat Claude Code (administration-ka.com)

Backend Node (ws) : pont WebSocket <-> claude stream-json, exécution locale ou
via SSH sur le nœud de déploiement de chaque app KA, permissions par MCP +
tunnel SSH inverse, audit JSONL, auth scrypt + rate-limit.
Frontend mobile-first thème clair : Markdown + hljs, blocs outils repliables,
diffs colorés, cartes de permission, streaming temps réel.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed 1 mo ago (Aug 20, 2026)

14 changed files +2,938 −0

added .gitignore +2 −0
@@ -0,0 +1,2 @@
1 +node_modules/
2 +data/
added README.md +45 −0
@@ -0,0 +1,45 @@
1 +# admin-ka — administration-ka.com
2 +
3 +Console chat mobile-first pour piloter **Claude Code** sur le nœud **M3U96a** et gérer l'écosystème Groupe KA à distance.
4 +
5 +```
6 +iPhone ⇄ https://www.administration-ka.com (ngrok) ⇄ backend :3300 (M3U96a) ⇄ claude -p --output-format stream-json
7 +```
8 +
9 +## Composants
10 +
11 +- `server/server.js` — HTTP + WebSocket `/ws` (port 3300, loopback). Lance `claude -p … --output-format stream-json --verbose --include-partial-messages` dans le répertoire du projet choisi, relaie chaque événement du stream au client, persiste les transcripts (`data/transcripts/*.jsonl`), gère `--resume <session-id>` pour la continuité.
12 +- `server/perm-mcp.js` — serveur MCP stdio (`--permission-prompt-tool mcp__adminka__approve`) : chaque demande de permission devient une carte **Autoriser / Refuser** dans le chat (long-poll via `/internal/perm`, timeout 10 min → refus).
13 +- `public/` — frontend une page : Markdown (marked) + code highlighté (highlight.js), blocs outils repliables, diffs colorés (Edit/Write), TodoWrite en checklist, streaming temps réel, safe-areas iPhone.
14 +- `deploy/*.plist` — services launchd `io.adminka.backend` + `io.adminka.ngrok`.
15 +
16 +## Modes de permission
17 +
18 +- **Sûr** (défaut) : lecture libre (`Read, Glob, Grep, LS, WebFetch, WebSearch, TodoWrite, NotebookRead, Task`), tout le reste (Bash, Edit, Write…) demande une permission dans le chat.
19 +- **Auto** : `--dangerously-skip-permissions` (confirmation requise dans l'UI).
20 +
21 +## Auth & sécurité
22 +
23 +- Mot de passe (scrypt) → cookie `akid` HttpOnly/Secure, 7 j d'inactivité / 30 j max.
24 +- Rate-limit login : 8 échecs / 15 min / IP. Backend lié à 127.0.0.1 (seul ngrok y accède).
25 +- Audit complet : `data/audit.jsonl` (logins, prompts, tool_use, permissions, coûts).
26 +- Changer le mot de passe : `node server/set-password.js '<nouveau>'` puis `launchctl kickstart -k gui/501/io.adminka.backend`.
27 +
28 +## Exploitation (sur M3U96a)
29 +
30 +```bash
31 +# statut
32 +launchctl print gui/501/io.adminka.backend | head -20
33 +curl -s http://127.0.0.1:3300/healthz
34 +
35 +# redémarrer
36 +launchctl kickstart -k gui/501/io.adminka.backend
37 +launchctl kickstart -k gui/501/io.adminka.ngrok
38 +
39 +# logs
40 +tail -f ~/apps/admin-ka/data/backend.err.log ~/apps/admin-ka/data/ngrok.log
41 +```
42 +
43 +Clé API : lue depuis `~/.claude/.env` (`ANTHROPIC_API_KEY`) au démarrage du backend.
44 +
45 +Projets proposés dans le sélecteur : `~/groupe-ka/*` (clones des repos spbgit), `~/apps/*` (apps déployées sur ce nœud), et `~` (home).
added deploy/io.adminka.backend.plist +22 −0
@@ -0,0 +1,22 @@
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3 +<plist version="1.0">
4 +<dict>
5 + <key>Label</key><string>io.adminka.backend</string>
6 + <key>ProgramArguments</key>
7 + <array>
8 + <string>/opt/homebrew/bin/node</string>
9 + <string>/Users/simon-pierreboucher/apps/admin-ka/server/server.js</string>
10 + </array>
11 + <key>WorkingDirectory</key><string>/Users/simon-pierreboucher/apps/admin-ka</string>
12 + <key>RunAtLoad</key><true/>
13 + <key>KeepAlive</key><true/>
14 + <key>StandardOutPath</key><string>/Users/simon-pierreboucher/apps/admin-ka/data/backend.log</string>
15 + <key>StandardErrorPath</key><string>/Users/simon-pierreboucher/apps/admin-ka/data/backend.err.log</string>
16 + <key>EnvironmentVariables</key>
17 + <dict>
18 + <key>PATH</key><string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
19 + <key>HOME</key><string>/Users/simon-pierreboucher</string>
20 + </dict>
21 +</dict>
22 +</plist>
added deploy/io.adminka.ngrok.plist +23 −0
@@ -0,0 +1,23 @@
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3 +<plist version="1.0">
4 +<dict>
5 + <key>Label</key><string>io.adminka.ngrok</string>
6 + <key>ProgramArguments</key>
7 + <array>
8 + <string>/opt/homebrew/bin/ngrok</string>
9 + <string>http</string>
10 + <string>--url=www.administration-ka.com</string>
11 + <string>3300</string>
12 + <string>--log=stdout</string>
13 + </array>
14 + <key>RunAtLoad</key><true/>
15 + <key>KeepAlive</key><true/>
16 + <key>StandardOutPath</key><string>/Users/simon-pierreboucher/apps/admin-ka/data/ngrok.log</string>
17 + <key>StandardErrorPath</key><string>/Users/simon-pierreboucher/apps/admin-ka/data/ngrok.err.log</string>
18 + <key>EnvironmentVariables</key>
19 + <dict>
20 + <key>HOME</key><string>/Users/simon-pierreboucher</string>
21 + </dict>
22 +</dict>
23 +</plist>
added package.json +14 −0
@@ -0,0 +1,14 @@
1 +{
2 + "name": "admin-ka",
3 + "version": "1.0.0",
4 + "description": "administration-ka.com — console chat mobile pour piloter Claude Code sur M3U96a (Groupe KA)",
5 + "type": "module",
6 + "main": "server/server.js",
7 + "scripts": {
8 + "start": "node server/server.js",
9 + "set-password": "node server/set-password.js"
10 + },
11 + "dependencies": {
12 + "ws": "^8.18.0"
13 + }
14 +}
added public/app.js +445 −0
@@ -0,0 +1,445 @@
1 +/* admin-ka — client chat mobile pour Claude Code */
2 +(() => {
3 + const $ = (id) => document.getElementById(id);
4 + const messagesEl = $('messages');
5 + const inputEl = $('input');
6 + const sendBtn = $('sendBtn');
7 + const stopBtn = $('stopBtn');
8 + const projectSel = $('projectSel');
9 + const modeBtn = $('modeBtn');
10 + const connDot = $('connDot');
11 + const statusText = $('statusText');
12 +
13 + marked.setOptions({ breaks: true, mangle: false, headerIds: false });
14 +
15 + let ws = null;
16 + let wsRetry = 1000;
17 + let currentChat = null; // {id, title, project, mode}
18 + let mode = 'safe';
19 + let isRunning = false;
20 + let live = null; // bloc de streaming en cours {el, textEl, text}
21 + let liveThink = null;
22 + const toolCards = new Map(); // tool_use_id -> {card, state, bodyEl}
23 + const permCards = new Map(); // requestId -> card
24 +
25 + // ---------- helpers ----------
26 + function esc(s) { return String(s).replace(/[&<>"]/g, (c) => ({'&':'&amp;','<':'&lt;','>':'&gt;','"':'&quot;'}[c])); }
27 + function nearBottom() { return messagesEl.scrollHeight - messagesEl.scrollTop - messagesEl.clientHeight < 120; }
28 + function scrollBottom(force) {
29 + if (force || nearBottom()) messagesEl.scrollTop = messagesEl.scrollHeight;
30 + }
31 + function el(tag, cls, html) {
32 + const e = document.createElement(tag);
33 + if (cls) e.className = cls;
34 + if (html !== undefined) e.innerHTML = html;
35 + return e;
36 + }
37 + function addMsg(node) {
38 + $('welcome').classList.add('hidden');
39 + const wasNear = nearBottom();
40 + const w = workingEl(); if (w) messagesEl.insertBefore(node, w); else messagesEl.appendChild(node);
41 + scrollBottom(wasNear);
42 + }
43 + function renderMd(container, text) {
44 + container.innerHTML = marked.parse(text || '');
45 + container.querySelectorAll('pre code').forEach((b) => { try { hljs.highlightElement(b); } catch {} });
46 + }
47 + function truncPre(text, limit = 3000) {
48 + const pre = el('pre');
49 + const full = String(text ?? '');
50 + if (full.length <= limit) { pre.textContent = full; return pre; }
51 + pre.textContent = full.slice(0, limit);
52 + const wrap = el('div');
53 + const btn = el('button', 'see-more', 'voir plus (' + Math.round((full.length - limit) / 1000) + ' k de plus)');
54 + btn.onclick = () => { pre.textContent = full; btn.remove(); };
55 + wrap.append(pre, btn);
56 + return wrap;
57 + }
58 +
59 + // ---------- indicateur "travaille" ----------
60 + function workingEl() { return messagesEl.querySelector('.working'); }
61 + function setRunning(r) {
62 + isRunning = r;
63 + sendBtn.classList.toggle('hidden', r);
64 + stopBtn.classList.toggle('hidden', !r);
65 + let w = workingEl();
66 + if (r && !w) {
67 + $('welcome').classList.add('hidden');
68 + w = el('div', 'working', '<div class="dots"><i></i><i></i><i></i></div><span>Claude travaille…</span>');
69 + messagesEl.appendChild(w);
70 + scrollBottom(true);
71 + } else if (!r && w) {
72 + w.remove();
73 + }
74 + if (!r) { finalizeLive(); finalizeThink(); }
75 + }
76 +
77 + // ---------- streaming live ----------
78 + function ensureLive() {
79 + if (live) return live;
80 + const wrap = el('div', 'msg-claude');
81 + const md = el('div', 'md');
82 + wrap.appendChild(md);
83 + addMsg(wrap);
84 + live = { el: wrap, textEl: md, text: '' };
85 + return live;
86 + }
87 + function finalizeLive() { if (live) { live.el.remove(); live = null; } }
88 + function ensureThink() {
89 + if (liveThink) return liveThink;
90 + const box = el('div', 'thinking');
91 + addMsg(box);
92 + liveThink = { el: box, text: '' };
93 + return liveThink;
94 + }
95 + function finalizeThink() {
96 + if (!liveThink) return;
97 + const txt = liveThink.text;
98 + const d = el('details', 'thinking-box');
99 + d.innerHTML = '<summary>réflexion</summary>';
100 + const inner = el('div', 'thinking'); inner.textContent = txt;
101 + d.appendChild(inner);
102 + liveThink.el.replaceWith(d);
103 + liveThink = null;
104 + }
105 +
106 + // ---------- cartes outils ----------
107 + const TOOL_ICONS = { Bash: '❯', Read: '📄', Edit: '✏️', MultiEdit: '✏️', Write: '📝', Glob: '🔍', Grep: '🔍', LS: '📁', Task: '🤖', WebFetch: '🌐', WebSearch: '🌐', TodoWrite: '☑️', NotebookRead: '📓', NotebookEdit: '📓' };
108 + const TOOL_TINT = { Bash: 'bash', Edit: 'edit', MultiEdit: 'edit', Write: 'edit', NotebookEdit: 'edit', Read: 'read', Glob: 'read', Grep: 'read', LS: 'read', NotebookRead: 'read', WebFetch: 'web', WebSearch: 'web' };
109 + function toolSubtitle(name, input) {
110 + input = input || {};
111 + if (name === 'Bash') return input.command || '';
112 + if (input.file_path) return input.file_path.replace(/^\/Users\/[^/]+\//, '~/');
113 + if (input.pattern) return input.pattern;
114 + if (input.url) return input.url;
115 + if (name === 'Task') return input.description || '';
116 + if (name === 'TodoWrite') return 'liste de tâches';
117 + return '';
118 + }
119 + function diffBlock(oldStr, newStr) {
120 + const d = el('div', 'diff');
121 + for (const l of String(oldStr || '').split('\n')) d.appendChild(el('div', 'dl del', esc('- ' + l)));
122 + for (const l of String(newStr || '').split('\n')) d.appendChild(el('div', 'dl add', esc('+ ' + l)));
123 + return d;
124 + }
125 + function toolBody(name, input) {
126 + const body = el('div', 'tool-body');
127 + input = input || {};
128 + if (name === 'Bash') {
129 + body.appendChild(el('div', 'label', 'commande'));
130 + body.appendChild(truncPre(input.command));
131 + if (input.description) body.appendChild(el('div', 'meta-line', esc(input.description)));
132 + } else if (name === 'Edit') {
133 + body.appendChild(diffBlock(input.old_string, input.new_string));
134 + } else if (name === 'MultiEdit') {
135 + for (const e of input.edits || []) body.appendChild(diffBlock(e.old_string, e.new_string));
136 + } else if (name === 'Write') {
137 + body.appendChild(el('div', 'label', 'contenu'));
138 + const d = el('div', 'diff');
139 + const lines = String(input.content || '').split('\n');
140 + for (const l of lines.slice(0, 40)) d.appendChild(el('div', 'dl add', esc('+ ' + l)));
141 + if (lines.length > 40) d.appendChild(el('div', 'dl', '… ' + (lines.length - 40) + ' lignes de plus'));
142 + body.appendChild(d);
143 + } else if (name === 'TodoWrite') {
144 + const ul = el('ul', 'todos');
145 + for (const t of input.todos || []) {
146 + const icon = t.status === 'completed' ? '☑' : t.status === 'in_progress' ? '◐' : '☐';
147 + const li = el('li', t.status === 'completed' ? 'done' : t.status === 'in_progress' ? 'doing' : '', esc(icon + ' ' + t.content));
148 + ul.appendChild(li);
149 + }
150 + body.appendChild(ul);
151 + } else if (name === 'Task') {
152 + body.appendChild(truncPre(input.prompt || JSON.stringify(input, null, 2)));
153 + } else {
154 + body.appendChild(truncPre(JSON.stringify(input, null, 2), 1500));
155 + }
156 + return body;
157 + }
158 + function addToolCard(block) {
159 + finalizeLive(); finalizeThink();
160 + const name = block.name || '?';
161 + const shortName = name.startsWith('mcp__') ? name.split('__').slice(1).join(':') : name;
162 + const card = el('details', 'tool');
163 + const sum = el('summary');
164 + sum.innerHTML = `<span class="t-icon ${TOOL_TINT[name] || ''}">${TOOL_ICONS[name] || '⚙️'}</span><span class="t-name">${esc(shortName)}</span><span class="t-sub">${esc(toolSubtitle(name, block.input))}</span><span class="t-state pending">●</span>`;
165 + card.appendChild(sum);
166 + card.appendChild(toolBody(name, block.input));
167 + addMsg(card);
168 + toolCards.set(block.id, { card, stateEl: sum.querySelector('.t-state'), bodyEl: card.querySelector('.tool-body') });
169 + }
170 + function attachToolResult(block) {
171 + const t = toolCards.get(block.tool_use_id);
172 + if (!t) return;
173 + t.stateEl.className = 't-state ' + (block.is_error ? 'err' : 'ok');
174 + t.stateEl.textContent = block.is_error ? '✗' : '✓';
175 + let text = '';
176 + if (typeof block.content === 'string') text = block.content;
177 + else if (Array.isArray(block.content)) text = block.content.map((c) => c.type === 'text' ? c.text : '[' + c.type + ']').join('\n');
178 + if (text.trim()) {
179 + const lbl = el('div', 'label', block.is_error ? 'erreur' : 'résultat');
180 + t.bodyEl.appendChild(lbl);
181 + t.bodyEl.appendChild(truncPre(text));
182 + }
183 + }
184 +
185 + // ---------- permissions ----------
186 + function addPermCard(ev) {
187 + finalizeLive(); finalizeThink();
188 + const card = el('div', 'perm');
189 + card.innerHTML = `<div class="perm-title">🔐 Permission demandée — ${esc(ev.tool)}</div>`;
190 + const pre = el('pre'); pre.textContent = JSON.stringify(ev.input, null, 2); card.appendChild(pre);
191 + const actions = el('div', 'perm-actions');
192 + const deny = el('button', 'perm-deny', 'Refuser');
193 + const allow = el('button', 'perm-allow', 'Autoriser');
194 + actions.append(deny, allow);
195 + card.appendChild(actions);
196 + deny.onclick = () => send({ type: 'perm', requestId: ev.requestId, allow: false });
197 + allow.onclick = () => send({ type: 'perm', requestId: ev.requestId, allow: true });
198 + addMsg(card);
199 + permCards.set(ev.requestId, card);
200 + scrollBottom(true);
201 + if (navigator.vibrate) navigator.vibrate(80);
202 + }
203 + function resolvePermCard(ev) {
204 + const card = permCards.get(ev.requestId);
205 + if (!card) return;
206 + const actions = card.querySelector('.perm-actions');
207 + if (actions) actions.remove();
208 + card.appendChild(el('div', 'perm-resolved', ev.allow ? '✓ Autorisé' : '✗ Refusé' + (ev.reason === 'timeout' ? ' (timeout)' : '')));
209 + }
210 +
211 + // ---------- rendu des événements ----------
212 + function renderEvent(ev) {
213 + if (ev.type === 'user_prompt') {
214 + finalizeLive(); finalizeThink();
215 + const b = el('div', 'msg-user'); b.textContent = ev.text; addMsg(b);
216 + return;
217 + }
218 + if (ev.type === 'status') { setRunning(ev.state === 'running'); return; }
219 + if (ev.type === 'error') { addMsg(el('div', 'error-box', esc(ev.message))); return; }
220 + if (ev.type === 'permission_request') { addPermCard(ev); return; }
221 + if (ev.type === 'permission_resolved') { resolvePermCard(ev); return; }
222 + if (ev.type === 'claude') { renderClaude(ev.event); return; }
223 + }
224 +
225 + function renderClaude(ev) {
226 + if (ev.type === 'system' && ev.subtype === 'init') {
227 + addMsg(el('div', 'meta-line', esc(`session ${String(ev.session_id || '').slice(0, 8)} · ${ev.model || ''} · ${(ev.cwd || '').replace(/^\/Users\/[^/]+\//, '~/')}`)));
228 + return;
229 + }
230 + if (ev.type === 'stream_event' && ev.event) {
231 + const se = ev.event;
232 + if (se.type === 'content_block_delta' && se.delta) {
233 + if (se.delta.type === 'text_delta') {
234 + const l = ensureLive();
235 + l.text += se.delta.text;
236 + renderMd(l.textEl, l.text);
237 + scrollBottom();
238 + } else if (se.delta.type === 'thinking_delta') {
239 + const t = ensureThink();
240 + t.text += se.delta.thinking;
241 + t.el.textContent = t.text.slice(-600);
242 + scrollBottom();
243 + }
244 + }
245 + return;
246 + }
247 + if (ev.type === 'assistant' && ev.message && Array.isArray(ev.message.content)) {
248 + for (const block of ev.message.content) {
249 + if (block.type === 'text' && block.text && block.text.trim()) {
250 + finalizeLive(); finalizeThink();
251 + const wrap = el('div', 'msg-claude');
252 + const md = el('div', 'md');
253 + renderMd(md, block.text);
254 + wrap.appendChild(md);
255 + addMsg(wrap);
256 + } else if (block.type === 'tool_use') {
257 + addToolCard(block);
258 + } else if (block.type === 'thinking' && block.thinking) {
259 + finalizeThink();
260 + const d = el('details', 'thinking-box', '<summary>réflexion</summary>');
261 + const inner = el('div', 'thinking'); inner.textContent = block.thinking;
262 + d.appendChild(inner);
263 + addMsg(d);
264 + if (liveThink) { liveThink.el.remove(); liveThink = null; }
265 + }
266 + }
267 + return;
268 + }
269 + if (ev.type === 'user' && ev.message && Array.isArray(ev.message.content)) {
270 + for (const block of ev.message.content) {
271 + if (block.type === 'tool_result') attachToolResult(block);
272 + }
273 + return;
274 + }
275 + if (ev.type === 'result') {
276 + finalizeLive(); finalizeThink();
277 + const dur = ev.duration_ms ? (ev.duration_ms / 1000).toFixed(1) + ' s' : '';
278 + const cost = ev.total_cost_usd ? ' · ' + ev.total_cost_usd.toFixed(3) + ' $' : '';
279 + const turns = ev.num_turns ? ' · ' + ev.num_turns + ' tours' : '';
280 + addMsg(el('div', 'meta-line', esc('— fin ' + dur + cost + turns)));
281 + if (ev.is_error && ev.result) addMsg(el('div', 'error-box', esc(String(ev.result))));
282 + return;
283 + }
284 + }
285 +
286 + // ---------- WebSocket ----------
287 + function send(obj) { if (ws && ws.readyState === 1) ws.send(JSON.stringify(obj)); }
288 + function connect() {
289 + const proto = location.protocol === 'https:' ? 'wss' : 'ws';
290 + ws = new WebSocket(`${proto}://${location.host}/ws`);
291 + ws.onopen = () => {
292 + connDot.classList.add('on');
293 + wsRetry = 1000;
294 + if (currentChat) send({ type: 'open', chatId: currentChat.id });
295 + };
296 + ws.onclose = () => {
297 + connDot.classList.remove('on');
298 + setTimeout(connect, wsRetry);
299 + wsRetry = Math.min(wsRetry * 1.6, 20000);
300 + };
301 + ws.onmessage = (e) => {
302 + let msg;
303 + try { msg = JSON.parse(e.data); } catch { return; }
304 + if (msg.type === 'chat_created') {
305 + currentChat = msg.chat;
306 + return;
307 + }
308 + if (msg.type === 'history') {
309 + currentChat = msg.chat;
310 + clearConversation();
311 + for (const ev of msg.events) { try { renderEvent(ev); } catch {} }
312 + setRunning(msg.running);
313 + for (const o of projectSel.options) if (o.value === msg.chat.projectId) projectSel.value = o.value;
314 + scrollBottom(true);
315 + return;
316 + }
317 + renderEvent(msg);
318 + };
319 + }
320 + function clearConversation() {
321 + messagesEl.innerHTML = '';
322 + toolCards.clear(); permCards.clear();
323 + live = null; liveThink = null;
324 + if (!currentChat) $('welcome').classList.remove('hidden');
325 + }
326 + // suggestions de l'écran d'accueil → composer
327 + document.querySelectorAll('.hint').forEach((h) => {
328 + h.onclick = () => { inputEl.value = h.textContent; autoGrow(); inputEl.focus(); };
329 + });
330 +
331 + // ---------- actions ----------
332 + function sendPrompt() {
333 + const text = inputEl.value.trim();
334 + if (!text || isRunning) return;
335 + inputEl.value = '';
336 + autoGrow();
337 + send({
338 + type: 'start',
339 + chatId: currentChat ? currentChat.id : null,
340 + project: projectSel.value,
341 + mode,
342 + prompt: text,
343 + });
344 + }
345 + sendBtn.onclick = sendPrompt;
346 + stopBtn.onclick = () => send({ type: 'interrupt' });
347 + inputEl.addEventListener('keydown', (e) => {
348 + if (e.key === 'Enter' && (e.metaKey || e.ctrlKey)) { e.preventDefault(); sendPrompt(); }
349 + });
350 + function autoGrow() {
351 + inputEl.style.height = 'auto';
352 + inputEl.style.height = Math.min(inputEl.scrollHeight, 140) + 'px';
353 + }
354 + inputEl.addEventListener('input', autoGrow);
355 + inputEl.addEventListener('focus', () => setTimeout(() => scrollBottom(true), 300));
356 +
357 + $('newBtn').onclick = () => { currentChat = null; clearConversation(); setRunning(false); };
358 +
359 + modeBtn.onclick = () => {
360 + if (mode === 'safe') {
361 + if (!confirm('Mode AUTO : Claude exécutera toutes les actions sans demander de permission. Continuer ?')) return;
362 + mode = 'auto';
363 + } else {
364 + mode = 'safe';
365 + }
366 + modeBtn.textContent = mode === 'auto' ? 'Auto' : 'Sûr';
367 + modeBtn.classList.toggle('auto', mode === 'auto');
368 + };
369 +
370 + // ---------- drawer ----------
371 + const drawer = $('drawer');
372 + $('menuBtn').onclick = async () => {
373 + drawer.classList.remove('hidden');
374 + const r = await fetch('/api/chats');
375 + if (!r.ok) return;
376 + const { chats } = await r.json();
377 + const list = $('chatList');
378 + list.innerHTML = '';
379 + if (!chats.length) list.appendChild(el('div', 'chat-empty', 'Aucune conversation'));
380 + for (const c of chats) {
381 + const item = el('div', 'chat-item' + (currentChat && currentChat.id === c.id ? ' active' : ''));
382 + const when = new Date(c.updated).toLocaleString('fr-CA', { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' });
383 + item.innerHTML = `<div class="ci-main"><span class="ci-title">${esc(c.title)}</span><span class="ci-meta">${esc(c.projectName || '')} · ${when}${c.running ? ' · <span class="ci-running">● en cours</span>' : ''}</span></div>`;
384 + const delBtn = el('button', 'ci-del', '✕');
385 + delBtn.onclick = async (e) => {
386 + e.stopPropagation();
387 + if (!confirm('Supprimer cette conversation ?')) return;
388 + await fetch('/api/chats/' + c.id, { method: 'DELETE' });
389 + item.remove();
390 + if (currentChat && currentChat.id === c.id) { currentChat = null; clearConversation(); }
391 + };
392 + if (!c.running) item.appendChild(delBtn);
393 + item.onclick = () => {
394 + drawer.classList.add('hidden');
395 + currentChat = { id: c.id };
396 + clearConversation();
397 + send({ type: 'open', chatId: c.id });
398 + };
399 + list.appendChild(item);
400 + }
401 + };
402 + $('drawerClose').onclick = () => drawer.classList.add('hidden');
403 + $('drawerBack').onclick = () => drawer.classList.add('hidden');
404 + $('logoutBtn').onclick = async () => {
405 + await fetch('/api/logout', { method: 'POST' });
406 + location.reload();
407 + };
408 +
409 + // ---------- login / init ----------
410 + async function init() {
411 + const me = await fetch('/api/me');
412 + if (!me.ok) {
413 + $('login').classList.remove('hidden');
414 + $('app').classList.add('hidden');
415 + return;
416 + }
417 + $('login').classList.add('hidden');
418 + $('app').classList.remove('hidden');
419 + const pr = await fetch('/api/projects');
420 + const { projects } = await pr.json();
421 + projectSel.innerHTML = '';
422 + for (const p of projects) {
423 + const o = document.createElement('option');
424 + o.value = p.id; o.textContent = p.name;
425 + projectSel.appendChild(o);
426 + }
427 + connect();
428 + }
429 + $('loginBtn').onclick = doLogin;
430 + $('password').addEventListener('keydown', (e) => { if (e.key === 'Enter') doLogin(); });
431 + async function doLogin() {
432 + const r = await fetch('/api/login', {
433 + method: 'POST',
434 + headers: { 'Content-Type': 'application/json' },
435 + body: JSON.stringify({ password: $('password').value }),
436 + });
437 + if (r.ok) { $('password').value = ''; init(); }
438 + else {
439 + const d = await r.json().catch(() => ({}));
440 + $('loginError').textContent = d.error || 'Erreur';
441 + }
442 + }
443 +
444 + init();
445 +})();
added public/index.html +94 −0
@@ -0,0 +1,94 @@
1 +<!DOCTYPE html>
2 +<html lang="fr">
3 +<head>
4 +<meta charset="utf-8">
5 +<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover, interactive-widget=resizes-content">
6 +<meta name="theme-color" content="#ffffff">
7 +<meta name="apple-mobile-web-app-capable" content="yes">
8 +<meta name="apple-mobile-web-app-status-bar-style" content="default">
9 +<meta name="apple-mobile-web-app-title" content="Admin·KA">
10 +<title>Administration·KA</title>
11 +<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='8' fill='%233556f0'/%3E%3Ctext x='16' y='21.5' font-size='13' font-family='-apple-system,sans-serif' fill='white' text-anchor='middle' font-weight='700'%3EKA%3C/text%3E%3C/svg%3E">
12 +<link rel="apple-touch-icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' fill='%233556f0'/%3E%3Ctext x='16' y='21.5' font-size='13' font-family='sans-serif' fill='white' text-anchor='middle' font-weight='700'%3EKA%3C/text%3E%3C/svg%3E">
13 +<link rel="stylesheet" href="/vendor/hljs-github.min.css">
14 +<link rel="stylesheet" href="/style.css">
15 +</head>
16 +<body>
17 +
18 +<!-- Écran de connexion -->
19 +<div id="login" class="login hidden">
20 + <div class="login-box">
21 + <div class="login-mark">KA</div>
22 + <h1 class="login-title">Administration·KA</h1>
23 + <p class="login-sub">Console Claude Code · Groupe KA</p>
24 + <input id="password" type="password" placeholder="Mot de passe" autocomplete="current-password">
25 + <button id="loginBtn">Se connecter</button>
26 + <div id="loginError" class="login-error"></div>
27 + </div>
28 + <div class="login-foot">M3U96a · MacLustr</div>
29 +</div>
30 +
31 +<!-- App -->
32 +<div id="app" class="app hidden">
33 + <header class="header">
34 + <button id="menuBtn" class="icon-btn" title="Conversations" aria-label="Conversations">
35 + <svg viewBox="0 0 24 24"><path d="M4 7h16M4 12h16M4 17h16" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>
36 + </button>
37 + <div class="header-mid">
38 + <div class="project-row">
39 + <span id="connDot" class="dot" title="Connexion"></span>
40 + <select id="projectSel" class="project-sel" title="Projet actif"></select>
41 + </div>
42 + </div>
43 + <button id="modeBtn" class="mode-btn" title="Mode permissions">Sûr</button>
44 + <button id="newBtn" class="icon-btn accent" title="Nouvelle conversation" aria-label="Nouvelle conversation">
45 + <svg viewBox="0 0 24 24"><path d="M12 5v14M5 12h14" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"/></svg>
46 + </button>
47 + </header>
48 +
49 + <main id="messages" class="messages"></main>
50 +
51 + <div id="welcome" class="welcome">
52 + <div class="welcome-mark">KA</div>
53 + <h2>Administration·KA</h2>
54 + <p>Parle à Claude Code, directement sur le nœud de chaque app du Groupe KA.</p>
55 + <div class="hints">
56 + <button class="hint">Quel est l'état de l'app ?</button>
57 + <button class="hint">Montre les derniers commits</button>
58 + <button class="hint">Vérifie les erreurs PM2</button>
59 + </div>
60 + </div>
61 +
62 + <footer class="composer">
63 + <div class="composer-inner">
64 + <textarea id="input" rows="1" placeholder="Demander à Claude…" enterkeyhint="send"></textarea>
65 + <button id="stopBtn" class="send-btn stop hidden" title="Arrêter" aria-label="Arrêter">
66 + <svg viewBox="0 0 24 24"><rect x="7" y="7" width="10" height="10" rx="2" fill="currentColor"/></svg>
67 + </button>
68 + <button id="sendBtn" class="send-btn" title="Envoyer" aria-label="Envoyer">
69 + <svg viewBox="0 0 24 24"><path d="M12 19V6M6 11l6-6 6 6" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>
70 + </button>
71 + </div>
72 + </footer>
73 +
74 + <!-- Tiroir conversations -->
75 + <div id="drawer" class="drawer hidden">
76 + <div id="drawerBack" class="drawer-back"></div>
77 + <div class="drawer-panel">
78 + <div class="drawer-head">
79 + <span>Conversations</span>
80 + <button id="drawerClose" class="icon-btn" aria-label="Fermer">
81 + <svg viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>
82 + </button>
83 + </div>
84 + <div id="chatList" class="chat-list"></div>
85 + <button id="logoutBtn" class="logout-btn">Se déconnecter</button>
86 + </div>
87 + </div>
88 +</div>
89 +
90 +<script src="/vendor/marked.min.js"></script>
91 +<script src="/vendor/highlight.min.js"></script>
92 +<script src="/app.js"></script>
93 +</body>
94 +</html>
added public/style.css +413 −0
@@ -0,0 +1,413 @@
1 +:root {
2 + --bg: #f2f4f8;
3 + --surface: #ffffff;
4 + --surface2: #f6f8fb;
5 + --border: #e4e8ef;
6 + --border-strong: #d4dae3;
7 + --text: #17203a;
8 + --muted: #67708a;
9 + --accent: #3556f0;
10 + --accent-soft: #eef1fe;
11 + --accent-grad: linear-gradient(135deg, #3556f0, #5a71f5);
12 + --green: #17924a;
13 + --green-soft: #e7f7ee;
14 + --red: #d5303e;
15 + --red-soft: #fdeeef;
16 + --amber: #b26a00;
17 + --amber-soft: #fff6e6;
18 + --shadow-sm: 0 1px 2px rgba(23, 32, 58, 0.06), 0 1px 3px rgba(23, 32, 58, 0.08);
19 + --shadow-md: 0 4px 16px rgba(23, 32, 58, 0.10);
20 + --shadow-lg: 0 12px 40px rgba(23, 32, 58, 0.16);
21 + --r-lg: 18px;
22 + --r-md: 13px;
23 + --r-sm: 9px;
24 + --z-header: 100;
25 + --z-composer: 100;
26 + --z-welcome: 50;
27 + --z-drawer: 200;
28 + --z-login: 300;
29 + --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
30 +}
31 +* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
32 +html, body {
33 + margin: 0; padding: 0;
34 + background: var(--bg); color: var(--text);
35 + font: 15.5px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
36 + height: 100%;
37 + overscroll-behavior: none;
38 + text-rendering: optimizeLegibility;
39 +}
40 +.hidden { display: none !important; }
41 +button { font-family: inherit; }
42 +
43 +/* ================= Login ================= */
44 +.login {
45 + position: fixed; inset: 0; z-index: var(--z-login);
46 + background:
47 + radial-gradient(1200px 600px at 50% -200px, #e3e9ff 0%, transparent 60%),
48 + var(--bg);
49 + display: flex; flex-direction: column; align-items: center; justify-content: center;
50 + padding: 24px;
51 +}
52 +.login-box {
53 + width: 100%; max-width: 360px;
54 + background: var(--surface);
55 + border: 1px solid var(--border);
56 + border-radius: 24px;
57 + box-shadow: var(--shadow-lg);
58 + padding: 36px 28px 28px;
59 + display: flex; flex-direction: column; gap: 12px;
60 + text-align: center;
61 +}
62 +.login-mark {
63 + width: 64px; height: 64px; margin: 0 auto 4px;
64 + background: var(--accent-grad); color: #fff;
65 + border-radius: 20px;
66 + display: flex; align-items: center; justify-content: center;
67 + font-size: 22px; font-weight: 800; letter-spacing: 0.5px;
68 + box-shadow: 0 8px 24px rgba(53, 86, 240, 0.35);
69 +}
70 +.login-title { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.3px; }
71 +.login-sub { margin: 0 0 10px; color: var(--muted); font-size: 13.5px; }
72 +.login input {
73 + background: var(--surface2); border: 1.5px solid var(--border); color: var(--text);
74 + border-radius: var(--r-md); padding: 14px 16px; font-size: 16px; outline: none;
75 + transition: border-color 0.15s, box-shadow 0.15s;
76 +}
77 +.login input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
78 +.login button {
79 + background: var(--accent-grad); color: #fff; font-weight: 600; font-size: 16px;
80 + border: none; border-radius: var(--r-md); padding: 14px; cursor: pointer;
81 + box-shadow: 0 4px 14px rgba(53, 86, 240, 0.3);
82 + transition: transform 0.1s;
83 +}
84 +.login button:active { transform: scale(0.98); }
85 +.login-error { color: var(--red); font-size: 13px; min-height: 18px; }
86 +.login-foot { margin-top: 20px; color: var(--muted); font-size: 12px; font-family: var(--mono); }
87 +
88 +/* ================= Layout ================= */
89 +.app { display: flex; flex-direction: column; height: 100dvh; }
90 +
91 +.header {
92 + position: sticky; top: 0; z-index: var(--z-header);
93 + display: flex; align-items: center; gap: 8px;
94 + background: rgba(255, 255, 255, 0.92);
95 + -webkit-backdrop-filter: saturate(180%) blur(14px);
96 + backdrop-filter: saturate(180%) blur(14px);
97 + border-bottom: 1px solid var(--border);
98 + padding: 8px 10px;
99 + padding-top: calc(8px + env(safe-area-inset-top));
100 +}
101 +.header-mid { flex: 1; min-width: 0; }
102 +.project-row {
103 + display: flex; align-items: center; gap: 8px;
104 + background: var(--surface2);
105 + border: 1px solid var(--border);
106 + border-radius: 999px;
107 + padding: 6px 12px 6px 12px;
108 +}
109 +.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; transition: background 0.3s; }
110 +.dot.on { background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
111 +.project-sel {
112 + flex: 1; min-width: 0;
113 + background: none; color: var(--text); border: none;
114 + font-size: 15px; font-weight: 600; outline: none;
115 + appearance: none; -webkit-appearance: none;
116 + text-overflow: ellipsis;
117 + padding-right: 14px;
118 + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2367708a' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
119 + background-repeat: no-repeat; background-position: right center; background-size: 13px;
120 +}
121 +.icon-btn {
122 + background: none; border: none; color: var(--text);
123 + width: 40px; height: 40px; border-radius: 12px; cursor: pointer; flex-shrink: 0;
124 + display: flex; align-items: center; justify-content: center;
125 + transition: background 0.15s;
126 +}
127 +.icon-btn svg { width: 21px; height: 21px; }
128 +.icon-btn:active { background: var(--surface2); }
129 +.icon-btn.accent { color: var(--accent); background: var(--accent-soft); }
130 +.mode-btn {
131 + border: 1px solid var(--border); background: var(--green-soft); color: var(--green);
132 + font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 7px 13px;
133 + cursor: pointer; flex-shrink: 0; letter-spacing: 0.2px;
134 +}
135 +.mode-btn.auto { color: var(--amber); background: var(--amber-soft); }
136 +
137 +/* ================= Welcome ================= */
138 +.welcome {
139 + position: absolute; inset: 0; z-index: var(--z-welcome);
140 + display: flex; flex-direction: column; align-items: center; justify-content: center;
141 + gap: 8px; padding: 32px; text-align: center; pointer-events: none;
142 +}
143 +.welcome > * { pointer-events: auto; }
144 +.welcome-mark {
145 + width: 72px; height: 72px;
146 + background: var(--accent-grad); color: #fff;
147 + border-radius: 22px;
148 + display: flex; align-items: center; justify-content: center;
149 + font-size: 25px; font-weight: 800;
150 + box-shadow: 0 10px 30px rgba(53, 86, 240, 0.3);
151 + margin-bottom: 8px;
152 +}
153 +.welcome h2 { margin: 0; font-size: 21px; letter-spacing: -0.3px; }
154 +.welcome p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 300px; }
155 +.hints { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
156 +.hint {
157 + background: var(--surface); border: 1px solid var(--border);
158 + color: var(--text); font-size: 13.5px;
159 + border-radius: 999px; padding: 9px 15px; cursor: pointer;
160 + box-shadow: var(--shadow-sm);
161 +}
162 +.hint:active { background: var(--surface2); }
163 +
164 +/* ================= Messages ================= */
165 +.app { position: relative; }
166 +.messages {
167 + flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
168 + padding: 16px 14px 24px;
169 + display: flex; flex-direction: column; gap: 12px;
170 + max-width: 780px; width: 100%; margin: 0 auto;
171 +}
172 +@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
173 +.messages > * { animation: msg-in 0.22s ease-out; }
174 +
175 +.msg-user {
176 + align-self: flex-end; max-width: 85%;
177 + background: var(--accent-grad); color: #fff;
178 + border-radius: 20px 20px 6px 20px;
179 + padding: 11px 16px;
180 + white-space: pre-wrap; word-break: break-word;
181 + box-shadow: 0 3px 10px rgba(53, 86, 240, 0.25);
182 + font-size: 15.5px;
183 +}
184 +.msg-claude {
185 + align-self: stretch;
186 + background: var(--surface);
187 + border: 1px solid var(--border);
188 + border-radius: var(--r-lg);
189 + padding: 13px 16px;
190 + box-shadow: var(--shadow-sm);
191 + word-break: break-word;
192 +}
193 +.msg-claude .md > :first-child { margin-top: 0; }
194 +.msg-claude .md > :last-child { margin-bottom: 0; }
195 +.md p { margin: 0.55em 0; }
196 +.md pre {
197 + background: #f6f8fa; border: 1px solid var(--border); border-radius: var(--r-sm);
198 + padding: 11px; overflow-x: auto; font-size: 12.5px; line-height: 1.5;
199 +}
200 +.md code { font-family: var(--mono); font-size: 0.88em; }
201 +.md :not(pre) > code { background: var(--accent-soft); color: #2c46c8; padding: 1px 6px; border-radius: 6px; }
202 +.md h1, .md h2, .md h3, .md h4 { font-size: 1.02em; margin: 0.9em 0 0.35em; }
203 +.md table { border-collapse: collapse; display: block; overflow-x: auto; font-size: 13px; }
204 +.md th, .md td { border: 1px solid var(--border); padding: 5px 9px; }
205 +.md th { background: var(--surface2); }
206 +.md a { color: var(--accent); }
207 +.md ul, .md ol { padding-left: 1.35em; margin: 0.5em 0; }
208 +.md blockquote { margin: 0.6em 0; padding: 2px 12px; border-left: 3px solid var(--border-strong); color: var(--muted); }
209 +.md hr { border: none; border-top: 1px solid var(--border); }
210 +
211 +.thinking {
212 + color: var(--muted); font-style: italic; font-size: 13px;
213 + border-left: 2.5px solid var(--border-strong); padding-left: 12px;
214 + white-space: pre-wrap; word-break: break-word;
215 +}
216 +details.thinking-box { padding: 2px 4px; }
217 +details.thinking-box summary { color: var(--muted); font-size: 12.5px; cursor: pointer; }
218 +
219 +.meta-line {
220 + align-self: center; text-align: center;
221 + color: var(--muted); font-size: 11px; font-family: var(--mono);
222 + background: var(--surface2); border-radius: 999px; padding: 3px 12px;
223 + max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
224 +}
225 +.error-box {
226 + background: var(--red-soft); border: 1px solid #f3c2c6;
227 + color: var(--red); border-radius: var(--r-md); padding: 11px 14px;
228 + font-size: 13px; white-space: pre-wrap; word-break: break-word;
229 +}
230 +
231 +/* ================= Cartes outils ================= */
232 +.tool {
233 + background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
234 + overflow: hidden; font-size: 13px;
235 + box-shadow: var(--shadow-sm);
236 +}
237 +.tool summary {
238 + display: flex; align-items: center; gap: 10px;
239 + padding: 9px 13px; cursor: pointer; list-style: none; user-select: none;
240 + min-height: 44px;
241 +}
242 +.tool summary::-webkit-details-marker { display: none; }
243 +.tool .t-icon {
244 + flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
245 + display: flex; align-items: center; justify-content: center;
246 + font-size: 14px; background: var(--surface2);
247 +}
248 +.tool .t-icon.bash { background: #eceff5; }
249 +.tool .t-icon.edit { background: var(--amber-soft); }
250 +.tool .t-icon.read { background: #e8f3fd; }
251 +.tool .t-icon.web { background: #e9f6f2; }
252 +.tool .t-name { font-weight: 700; font-family: var(--mono); font-size: 12.5px; flex-shrink: 0; color: var(--text); }
253 +.tool .t-sub {
254 + color: var(--muted); font-family: var(--mono); font-size: 12px;
255 + white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
256 +}
257 +.tool .t-state { flex-shrink: 0; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 3px 8px; }
258 +.tool .t-state.pending { color: var(--amber); background: var(--amber-soft); }
259 +.tool .t-state.ok { color: var(--green); background: var(--green-soft); }
260 +.tool .t-state.err { color: var(--red); background: var(--red-soft); }
261 +.tool-body { border-top: 1px solid var(--border); padding: 9px 13px 11px; background: var(--surface2); }
262 +.tool-body pre {
263 + margin: 6px 0; background: #ffffff; border: 1px solid var(--border);
264 + border-radius: var(--r-sm); padding: 9px;
265 + overflow-x: auto; font-size: 12px; font-family: var(--mono);
266 + white-space: pre-wrap; word-break: break-word;
267 +}
268 +.tool-body .label {
269 + color: var(--muted); font-size: 10.5px; font-weight: 700;
270 + text-transform: uppercase; letter-spacing: 0.7px; margin-top: 6px;
271 +}
272 +.see-more { background: none; border: none; color: var(--accent); font-size: 12.5px; font-weight: 600; cursor: pointer; padding: 4px 0; }
273 +
274 +/* diffs — style GitHub clair */
275 +.diff {
276 + font-family: var(--mono); font-size: 12px; margin: 6px 0;
277 + border: 1px solid var(--border); border-radius: var(--r-sm);
278 + overflow: hidden; background: #fff;
279 +}
280 +.diff .dl { padding: 2px 10px; white-space: pre-wrap; word-break: break-word; }
281 +.diff .del { background: #ffebe9; color: #82071e; }
282 +.diff .add { background: #e6ffec; color: #055d20; }
283 +
284 +/* todos */
285 +.todos { margin: 4px 0; padding: 0; list-style: none; font-size: 13.5px; }
286 +.todos li { padding: 3px 0; }
287 +.todos .done { color: var(--muted); text-decoration: line-through; }
288 +.todos .doing { color: var(--accent); font-weight: 600; }
289 +
290 +/* ================= Permission ================= */
291 +.perm {
292 + background: var(--amber-soft); border: 1.5px solid #f0c36b;
293 + border-radius: var(--r-lg); padding: 14px; font-size: 13.5px;
294 + box-shadow: var(--shadow-md);
295 +}
296 +.perm-title { font-weight: 700; color: var(--amber); margin-bottom: 8px; font-size: 14px; }
297 +.perm pre {
298 + background: #fff; border: 1px solid #eddcb8; border-radius: var(--r-sm); padding: 9px;
299 + overflow-x: auto; font-size: 12px; font-family: var(--mono);
300 + white-space: pre-wrap; word-break: break-word;
301 + max-height: 200px; overflow-y: auto; margin: 0;
302 +}
303 +.perm-actions { display: flex; gap: 10px; margin-top: 12px; }
304 +.perm-actions button {
305 + flex: 1; padding: 12px; border-radius: var(--r-md); border: none;
306 + font-size: 15px; font-weight: 700; cursor: pointer; min-height: 46px;
307 +}
308 +.perm-allow { background: var(--green); color: #fff; box-shadow: 0 3px 10px rgba(23, 146, 74, 0.3); }
309 +.perm-deny { background: #fff; color: var(--red); border: 1.5px solid #f3c2c6 !important; }
310 +.perm-resolved { color: var(--muted); font-size: 12.5px; margin-top: 10px; font-weight: 600; }
311 +
312 +/* ================= Indicateur travail ================= */
313 +.working {
314 + align-self: flex-start;
315 + display: flex; align-items: center; gap: 10px;
316 + color: var(--muted); font-size: 13.5px;
317 + background: var(--surface); border: 1px solid var(--border);
318 + border-radius: 999px; padding: 8px 16px;
319 + box-shadow: var(--shadow-sm);
320 +}
321 +.dots { display: flex; gap: 4px; }
322 +.dots i {
323 + width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
324 + animation: pulse 1.2s ease-in-out infinite;
325 +}
326 +.dots i:nth-child(2) { animation-delay: 0.15s; }
327 +.dots i:nth-child(3) { animation-delay: 0.3s; }
328 +@keyframes pulse { 0%, 100% { opacity: 0.25; transform: scale(0.85); } 40% { opacity: 1; transform: scale(1.1); } }
329 +
330 +/* ================= Composer ================= */
331 +.composer {
332 + position: sticky; bottom: 0; z-index: var(--z-composer);
333 + background: linear-gradient(to top, var(--bg) 65%, transparent);
334 + padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
335 +}
336 +.composer-inner {
337 + display: flex; align-items: flex-end; gap: 8px;
338 + max-width: 780px; margin: 0 auto;
339 + background: var(--surface);
340 + border: 1px solid var(--border);
341 + border-radius: 26px;
342 + padding: 7px 7px 7px 18px;
343 + box-shadow: var(--shadow-md);
344 +}
345 +#input {
346 + flex: 1; background: none; color: var(--text);
347 + border: none;
348 + padding: 9px 0; font-size: 16px; line-height: 1.45;
349 + resize: none; outline: none; max-height: 140px;
350 + font-family: inherit;
351 +}
352 +#input::placeholder { color: var(--muted); }
353 +.send-btn {
354 + width: 40px; height: 40px; border-radius: 50%; border: none;
355 + background: var(--accent-grad); color: #fff;
356 + cursor: pointer; flex-shrink: 0;
357 + display: flex; align-items: center; justify-content: center;
358 + box-shadow: 0 3px 10px rgba(53, 86, 240, 0.35);
359 + transition: transform 0.1s, opacity 0.15s;
360 +}
361 +.send-btn svg { width: 19px; height: 19px; }
362 +.send-btn:active { transform: scale(0.92); }
363 +.send-btn:disabled { opacity: 0.35; }
364 +.send-btn.stop { background: var(--red); box-shadow: 0 3px 10px rgba(213, 48, 62, 0.35); }
365 +
366 +/* ================= Drawer ================= */
367 +.drawer { position: fixed; inset: 0; z-index: var(--z-drawer); }
368 +.drawer-back { position: absolute; inset: 0; background: rgba(23, 32, 58, 0.35); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
369 +@keyframes slide-in { from { transform: translateX(-100%); } to { transform: none; } }
370 +.drawer-panel {
371 + position: absolute; top: 0; left: 0; bottom: 0; width: min(330px, 88vw);
372 + background: var(--surface);
373 + box-shadow: var(--shadow-lg);
374 + display: flex; flex-direction: column;
375 + padding-top: env(safe-area-inset-top);
376 + animation: slide-in 0.22s ease-out;
377 + border-radius: 0 20px 20px 0;
378 +}
379 +.drawer-head {
380 + display: flex; align-items: center; justify-content: space-between;
381 + padding: 14px 10px 12px 20px; border-bottom: 1px solid var(--border);
382 + font-weight: 700; font-size: 17px;
383 +}
384 +.chat-list { flex: 1; overflow-y: auto; padding: 8px; }
385 +.chat-item {
386 + padding: 12px 12px; border-radius: var(--r-md); cursor: pointer;
387 + display: flex; align-items: center; gap: 8px;
388 + margin-bottom: 2px;
389 +}
390 +.chat-item:active { background: var(--surface2); }
391 +.chat-item.active { background: var(--accent-soft); }
392 +.chat-item .ci-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
393 +.chat-item .ci-title { font-size: 14.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
394 +.chat-item .ci-meta { font-size: 11.5px; color: var(--muted); }
395 +.chat-item .ci-running { color: var(--green); font-weight: 700; }
396 +.ci-del {
397 + background: none; border: none; color: var(--muted); cursor: pointer;
398 + width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
399 + display: flex; align-items: center; justify-content: center; font-size: 15px;
400 +}
401 +.ci-del:active { background: var(--red-soft); color: var(--red); }
402 +.chat-empty { color: var(--muted); text-align: center; padding: 32px 16px; font-size: 14px; }
403 +.logout-btn {
404 + margin: 10px 16px calc(14px + env(safe-area-inset-bottom));
405 + background: var(--surface2); border: 1px solid var(--border); color: var(--red);
406 + border-radius: var(--r-md); padding: 13px; font-size: 14.5px; font-weight: 600; cursor: pointer;
407 +}
408 +
409 +/* écrans plus larges */
410 +@media (min-width: 700px) {
411 + .header { padding-left: 16px; padding-right: 16px; }
412 + .messages { padding: 24px 20px 32px; }
413 +}
added public/vendor/highlight.min.js +1213 −0
@@ -0,0 +1,1213 @@
1 +/*!
2 + Highlight.js v11.9.0 (git: f47103d4f1)
3 + (c) 2006-2023 undefined and other contributors
4 + License: BSD-3-Clause
5 + */
6 +var hljs=function(){"use strict";function e(n){
7 +return n instanceof Map?n.clear=n.delete=n.set=()=>{
8 +throw Error("map is read-only")}:n instanceof Set&&(n.add=n.clear=n.delete=()=>{
9 +throw Error("set is read-only")
10 +}),Object.freeze(n),Object.getOwnPropertyNames(n).forEach((t=>{
11 +const a=n[t],i=typeof a;"object"!==i&&"function"!==i||Object.isFrozen(a)||e(a)
12 +})),n}class n{constructor(e){
13 +void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}
14 +ignoreMatch(){this.isMatchIgnored=!0}}function t(e){
15 +return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")
16 +}function a(e,...n){const t=Object.create(null);for(const n in e)t[n]=e[n]
17 +;return n.forEach((e=>{for(const n in e)t[n]=e[n]})),t}const i=e=>!!e.scope
18 +;class r{constructor(e,n){
19 +this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){
20 +this.buffer+=t(e)}openNode(e){if(!i(e))return;const n=((e,{prefix:n})=>{
21 +if(e.startsWith("language:"))return e.replace("language:","language-")
22 +;if(e.includes(".")){const t=e.split(".")
23 +;return[`${n}${t.shift()}`,...t.map(((e,n)=>`${e}${"_".repeat(n+1)}`))].join(" ")
24 +}return`${n}${e}`})(e.scope,{prefix:this.classPrefix});this.span(n)}
25 +closeNode(e){i(e)&&(this.buffer+="</span>")}value(){return this.buffer}span(e){
26 +this.buffer+=`<span class="${e}">`}}const s=(e={})=>{const n={children:[]}
27 +;return Object.assign(n,e),n};class o{constructor(){
28 +this.rootNode=s(),this.stack=[this.rootNode]}get top(){
29 +return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){
30 +this.top.children.push(e)}openNode(e){const n=s({scope:e})
31 +;this.add(n),this.stack.push(n)}closeNode(){
32 +if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){
33 +for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}
34 +walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){
35 +return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n),
36 +n.children.forEach((n=>this._walk(e,n))),e.closeNode(n)),e}static _collapse(e){
37 +"string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{
38 +o._collapse(e)})))}}class l extends o{constructor(e){super(),this.options=e}
39 +addText(e){""!==e&&this.add(e)}startScope(e){this.openNode(e)}endScope(){
40 +this.closeNode()}__addSublanguage(e,n){const t=e.root
41 +;n&&(t.scope="language:"+n),this.add(t)}toHTML(){
42 +return new r(this,this.options).value()}finalize(){
43 +return this.closeAllNodes(),!0}}function c(e){
44 +return e?"string"==typeof e?e:e.source:null}function d(e){return b("(?=",e,")")}
45 +function g(e){return b("(?:",e,")*")}function u(e){return b("(?:",e,")?")}
46 +function b(...e){return e.map((e=>c(e))).join("")}function m(...e){const n=(e=>{
47 +const n=e[e.length-1]
48 +;return"object"==typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}
49 +})(e);return"("+(n.capture?"":"?:")+e.map((e=>c(e))).join("|")+")"}
50 +function p(e){return RegExp(e.toString()+"|").exec("").length-1}
51 +const _=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
52 +;function h(e,{joinWith:n}){let t=0;return e.map((e=>{t+=1;const n=t
53 +;let a=c(e),i="";for(;a.length>0;){const e=_.exec(a);if(!e){i+=a;break}
54 +i+=a.substring(0,e.index),
55 +a=a.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?i+="\\"+(Number(e[1])+n):(i+=e[0],
56 +"("===e[0]&&t++)}return i})).map((e=>`(${e})`)).join(n)}
57 +const f="[a-zA-Z]\\w*",E="[a-zA-Z_]\\w*",y="\\b\\d+(\\.\\d+)?",N="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",w="\\b(0b[01]+)",v={
58 +begin:"\\\\[\\s\\S]",relevance:0},O={scope:"string",begin:"'",end:"'",
59 +illegal:"\\n",contains:[v]},k={scope:"string",begin:'"',end:'"',illegal:"\\n",
60 +contains:[v]},x=(e,n,t={})=>{const i=a({scope:"comment",begin:e,end:n,
61 +contains:[]},t);i.contains.push({scope:"doctag",
62 +begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",
63 +end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0})
64 +;const r=m("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/)
65 +;return i.contains.push({begin:b(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i
66 +},M=x("//","$"),S=x("/\\*","\\*/"),A=x("#","$");var C=Object.freeze({
67 +__proto__:null,APOS_STRING_MODE:O,BACKSLASH_ESCAPE:v,BINARY_NUMBER_MODE:{
68 +scope:"number",begin:w,relevance:0},BINARY_NUMBER_RE:w,COMMENT:x,
69 +C_BLOCK_COMMENT_MODE:S,C_LINE_COMMENT_MODE:M,C_NUMBER_MODE:{scope:"number",
70 +begin:N,relevance:0},C_NUMBER_RE:N,END_SAME_AS_BEGIN:e=>Object.assign(e,{
71 +"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{
72 +n.data._beginMatch!==e[1]&&n.ignoreMatch()}}),HASH_COMMENT_MODE:A,IDENT_RE:f,
73 +MATCH_NOTHING_RE:/\b\B/,METHOD_GUARD:{begin:"\\.\\s*"+E,relevance:0},
74 +NUMBER_MODE:{scope:"number",begin:y,relevance:0},NUMBER_RE:y,
75 +PHRASAL_WORDS_MODE:{
76 +begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
77 +},QUOTE_STRING_MODE:k,REGEXP_MODE:{scope:"regexp",begin:/\/(?=[^/\n]*\/)/,
78 +end:/\/[gimuy]*/,contains:[v,{begin:/\[/,end:/\]/,relevance:0,contains:[v]}]},
79 +RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
80 +SHEBANG:(e={})=>{const n=/^#![ ]*\//
81 +;return e.binary&&(e.begin=b(n,/.*\b/,e.binary,/\b.*/)),a({scope:"meta",begin:n,
82 +end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},
83 +TITLE_MODE:{scope:"title",begin:f,relevance:0},UNDERSCORE_IDENT_RE:E,
84 +UNDERSCORE_TITLE_MODE:{scope:"title",begin:E,relevance:0}});function T(e,n){
85 +"."===e.input[e.index-1]&&n.ignoreMatch()}function R(e,n){
86 +void 0!==e.className&&(e.scope=e.className,delete e.className)}function D(e,n){
87 +n&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
88 +e.__beforeBegin=T,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
89 +void 0===e.relevance&&(e.relevance=0))}function I(e,n){
90 +Array.isArray(e.illegal)&&(e.illegal=m(...e.illegal))}function L(e,n){
91 +if(e.match){
92 +if(e.begin||e.end)throw Error("begin & end are not supported with match")
93 +;e.begin=e.match,delete e.match}}function B(e,n){
94 +void 0===e.relevance&&(e.relevance=1)}const $=(e,n)=>{if(!e.beforeMatch)return
95 +;if(e.starts)throw Error("beforeMatch cannot be used with starts")
96 +;const t=Object.assign({},e);Object.keys(e).forEach((n=>{delete e[n]
97 +})),e.keywords=t.keywords,e.begin=b(t.beforeMatch,d(t.begin)),e.starts={
98 +relevance:0,contains:[Object.assign(t,{endsParent:!0})]
99 +},e.relevance=0,delete t.beforeMatch
100 +},z=["of","and","for","in","not","or","if","then","parent","list","value"],F="keyword"
101 +;function U(e,n,t=F){const a=Object.create(null)
102 +;return"string"==typeof e?i(t,e.split(" ")):Array.isArray(e)?i(t,e):Object.keys(e).forEach((t=>{
103 +Object.assign(a,U(e[t],n,t))})),a;function i(e,t){
104 +n&&(t=t.map((e=>e.toLowerCase()))),t.forEach((n=>{const t=n.split("|")
105 +;a[t[0]]=[e,j(t[0],t[1])]}))}}function j(e,n){
106 +return n?Number(n):(e=>z.includes(e.toLowerCase()))(e)?0:1}const P={},K=e=>{
107 +console.error(e)},H=(e,...n)=>{console.log("WARN: "+e,...n)},q=(e,n)=>{
108 +P[`${e}/${n}`]||(console.log(`Deprecated as of ${e}. ${n}`),P[`${e}/${n}`]=!0)
109 +},G=Error();function Z(e,n,{key:t}){let a=0;const i=e[t],r={},s={}
110 +;for(let e=1;e<=n.length;e++)s[e+a]=i[e],r[e+a]=!0,a+=p(n[e-1])
111 +;e[t]=s,e[t]._emit=r,e[t]._multi=!0}function W(e){(e=>{
112 +e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,
113 +delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={
114 +_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope
115 +}),(e=>{if(Array.isArray(e.begin)){
116 +if(e.skip||e.excludeBegin||e.returnBegin)throw K("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),
117 +G
118 +;if("object"!=typeof e.beginScope||null===e.beginScope)throw K("beginScope must be object"),
119 +G;Z(e,e.begin,{key:"beginScope"}),e.begin=h(e.begin,{joinWith:""})}})(e),(e=>{
120 +if(Array.isArray(e.end)){
121 +if(e.skip||e.excludeEnd||e.returnEnd)throw K("skip, excludeEnd, returnEnd not compatible with endScope: {}"),
122 +G
123 +;if("object"!=typeof e.endScope||null===e.endScope)throw K("endScope must be object"),
124 +G;Z(e,e.end,{key:"endScope"}),e.end=h(e.end,{joinWith:""})}})(e)}function Q(e){
125 +function n(n,t){
126 +return RegExp(c(n),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(t?"g":""))
127 +}class t{constructor(){
128 +this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}
129 +addRule(e,n){
130 +n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),
131 +this.matchAt+=p(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null)
132 +;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(h(e,{joinWith:"|"
133 +}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex
134 +;const n=this.matcherRe.exec(e);if(!n)return null
135 +;const t=n.findIndex(((e,n)=>n>0&&void 0!==e)),a=this.matchIndexes[t]
136 +;return n.splice(0,t),Object.assign(n,a)}}class i{constructor(){
137 +this.rules=[],this.multiRegexes=[],
138 +this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){
139 +if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t
140 +;return this.rules.slice(e).forEach((([e,t])=>n.addRule(e,t))),
141 +n.compile(),this.multiRegexes[e]=n,n}resumingScanAtSamePosition(){
142 +return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,n){
143 +this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){
144 +const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex
145 +;let t=n.exec(e)
146 +;if(this.resumingScanAtSamePosition())if(t&&t.index===this.lastIndex);else{
147 +const n=this.getMatcher(0);n.lastIndex=this.lastIndex+1,t=n.exec(e)}
148 +return t&&(this.regexIndex+=t.position+1,
149 +this.regexIndex===this.count&&this.considerAll()),t}}
150 +if(e.compilerExtensions||(e.compilerExtensions=[]),
151 +e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.")
152 +;return e.classNameAliases=a(e.classNameAliases||{}),function t(r,s){const o=r
153 +;if(r.isCompiled)return o
154 +;[R,L,W,$].forEach((e=>e(r,s))),e.compilerExtensions.forEach((e=>e(r,s))),
155 +r.__beforeBegin=null,[D,I,B].forEach((e=>e(r,s))),r.isCompiled=!0;let l=null
156 +;return"object"==typeof r.keywords&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),
157 +l=r.keywords.$pattern,
158 +delete r.keywords.$pattern),l=l||/\w+/,r.keywords&&(r.keywords=U(r.keywords,e.case_insensitive)),
159 +o.keywordPatternRe=n(l,!0),
160 +s&&(r.begin||(r.begin=/\B|\b/),o.beginRe=n(o.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),
161 +r.end&&(o.endRe=n(o.end)),
162 +o.terminatorEnd=c(o.end)||"",r.endsWithParent&&s.terminatorEnd&&(o.terminatorEnd+=(r.end?"|":"")+s.terminatorEnd)),
163 +r.illegal&&(o.illegalRe=n(r.illegal)),
164 +r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((n=>a(e,{
165 +variants:null},n)))),e.cachedVariants?e.cachedVariants:X(e)?a(e,{
166 +starts:e.starts?a(e.starts):null
167 +}):Object.isFrozen(e)?a(e):e))("self"===e?r:e)))),r.contains.forEach((e=>{t(e,o)
168 +})),r.starts&&t(r.starts,s),o.matcher=(e=>{const n=new i
169 +;return e.contains.forEach((e=>n.addRule(e.begin,{rule:e,type:"begin"
170 +}))),e.terminatorEnd&&n.addRule(e.terminatorEnd,{type:"end"
171 +}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n})(o),o}(e)}function X(e){
172 +return!!e&&(e.endsWithParent||X(e.starts))}class V extends Error{
173 +constructor(e,n){super(e),this.name="HTMLInjectionError",this.html=n}}
174 +const J=t,Y=a,ee=Symbol("nomatch"),ne=t=>{
175 +const a=Object.create(null),i=Object.create(null),r=[];let s=!0
176 +;const o="Could not find the language '{}', did you forget to load/include a language module?",c={
177 +disableAutodetect:!0,name:"Plain text",contains:[]};let p={
178 +ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,
179 +languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",
180 +cssSelector:"pre code",languages:null,__emitter:l};function _(e){
181 +return p.noHighlightRe.test(e)}function h(e,n,t){let a="",i=""
182 +;"object"==typeof n?(a=e,
183 +t=n.ignoreIllegals,i=n.language):(q("10.7.0","highlight(lang, code, ...args) has been deprecated."),
184 +q("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
185 +i=e,a=n),void 0===t&&(t=!0);const r={code:a,language:i};x("before:highlight",r)
186 +;const s=r.result?r.result:f(r.language,r.code,t)
187 +;return s.code=r.code,x("after:highlight",s),s}function f(e,t,i,r){
188 +const l=Object.create(null);function c(){if(!x.keywords)return void S.addText(A)
189 +;let e=0;x.keywordPatternRe.lastIndex=0;let n=x.keywordPatternRe.exec(A),t=""
190 +;for(;n;){t+=A.substring(e,n.index)
191 +;const i=w.case_insensitive?n[0].toLowerCase():n[0],r=(a=i,x.keywords[a]);if(r){
192 +const[e,a]=r
193 +;if(S.addText(t),t="",l[i]=(l[i]||0)+1,l[i]<=7&&(C+=a),e.startsWith("_"))t+=n[0];else{
194 +const t=w.classNameAliases[e]||e;g(n[0],t)}}else t+=n[0]
195 +;e=x.keywordPatternRe.lastIndex,n=x.keywordPatternRe.exec(A)}var a
196 +;t+=A.substring(e),S.addText(t)}function d(){null!=x.subLanguage?(()=>{
197 +if(""===A)return;let e=null;if("string"==typeof x.subLanguage){
198 +if(!a[x.subLanguage])return void S.addText(A)
199 +;e=f(x.subLanguage,A,!0,M[x.subLanguage]),M[x.subLanguage]=e._top
200 +}else e=E(A,x.subLanguage.length?x.subLanguage:null)
201 +;x.relevance>0&&(C+=e.relevance),S.__addSublanguage(e._emitter,e.language)
202 +})():c(),A=""}function g(e,n){
203 +""!==e&&(S.startScope(n),S.addText(e),S.endScope())}function u(e,n){let t=1
204 +;const a=n.length-1;for(;t<=a;){if(!e._emit[t]){t++;continue}
205 +const a=w.classNameAliases[e[t]]||e[t],i=n[t];a?g(i,a):(A=i,c(),A=""),t++}}
206 +function b(e,n){
207 +return e.scope&&"string"==typeof e.scope&&S.openNode(w.classNameAliases[e.scope]||e.scope),
208 +e.beginScope&&(e.beginScope._wrap?(g(A,w.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),
209 +A=""):e.beginScope._multi&&(u(e.beginScope,n),A="")),x=Object.create(e,{parent:{
210 +value:x}}),x}function m(e,t,a){let i=((e,n)=>{const t=e&&e.exec(n)
211 +;return t&&0===t.index})(e.endRe,a);if(i){if(e["on:end"]){const a=new n(e)
212 +;e["on:end"](t,a),a.isMatchIgnored&&(i=!1)}if(i){
213 +for(;e.endsParent&&e.parent;)e=e.parent;return e}}
214 +if(e.endsWithParent)return m(e.parent,t,a)}function _(e){
215 +return 0===x.matcher.regexIndex?(A+=e[0],1):(D=!0,0)}function h(e){
216 +const n=e[0],a=t.substring(e.index),i=m(x,e,a);if(!i)return ee;const r=x
217 +;x.endScope&&x.endScope._wrap?(d(),
218 +g(n,x.endScope._wrap)):x.endScope&&x.endScope._multi?(d(),
219 +u(x.endScope,e)):r.skip?A+=n:(r.returnEnd||r.excludeEnd||(A+=n),
220 +d(),r.excludeEnd&&(A=n));do{
221 +x.scope&&S.closeNode(),x.skip||x.subLanguage||(C+=x.relevance),x=x.parent
222 +}while(x!==i.parent);return i.starts&&b(i.starts,e),r.returnEnd?0:n.length}
223 +let y={};function N(a,r){const o=r&&r[0];if(A+=a,null==o)return d(),0
224 +;if("begin"===y.type&&"end"===r.type&&y.index===r.index&&""===o){
225 +if(A+=t.slice(r.index,r.index+1),!s){const n=Error(`0 width match regex (${e})`)
226 +;throw n.languageName=e,n.badRule=y.rule,n}return 1}
227 +if(y=r,"begin"===r.type)return(e=>{
228 +const t=e[0],a=e.rule,i=new n(a),r=[a.__beforeBegin,a["on:begin"]]
229 +;for(const n of r)if(n&&(n(e,i),i.isMatchIgnored))return _(t)
230 +;return a.skip?A+=t:(a.excludeBegin&&(A+=t),
231 +d(),a.returnBegin||a.excludeBegin||(A=t)),b(a,e),a.returnBegin?0:t.length})(r)
232 +;if("illegal"===r.type&&!i){
233 +const e=Error('Illegal lexeme "'+o+'" for mode "'+(x.scope||"<unnamed>")+'"')
234 +;throw e.mode=x,e}if("end"===r.type){const e=h(r);if(e!==ee)return e}
235 +if("illegal"===r.type&&""===o)return 1
236 +;if(R>1e5&&R>3*r.index)throw Error("potential infinite loop, way more iterations than matches")
237 +;return A+=o,o.length}const w=v(e)
238 +;if(!w)throw K(o.replace("{}",e)),Error('Unknown language: "'+e+'"')
239 +;const O=Q(w);let k="",x=r||O;const M={},S=new p.__emitter(p);(()=>{const e=[]
240 +;for(let n=x;n!==w;n=n.parent)n.scope&&e.unshift(n.scope)
241 +;e.forEach((e=>S.openNode(e)))})();let A="",C=0,T=0,R=0,D=!1;try{
242 +if(w.__emitTokens)w.__emitTokens(t,S);else{for(x.matcher.considerAll();;){
243 +R++,D?D=!1:x.matcher.considerAll(),x.matcher.lastIndex=T
244 +;const e=x.matcher.exec(t);if(!e)break;const n=N(t.substring(T,e.index),e)
245 +;T=e.index+n}N(t.substring(T))}return S.finalize(),k=S.toHTML(),{language:e,
246 +value:k,relevance:C,illegal:!1,_emitter:S,_top:x}}catch(n){
247 +if(n.message&&n.message.includes("Illegal"))return{language:e,value:J(t),
248 +illegal:!0,relevance:0,_illegalBy:{message:n.message,index:T,
249 +context:t.slice(T-100,T+100),mode:n.mode,resultSoFar:k},_emitter:S};if(s)return{
250 +language:e,value:J(t),illegal:!1,relevance:0,errorRaised:n,_emitter:S,_top:x}
251 +;throw n}}function E(e,n){n=n||p.languages||Object.keys(a);const t=(e=>{
252 +const n={value:J(e),illegal:!1,relevance:0,_top:c,_emitter:new p.__emitter(p)}
253 +;return n._emitter.addText(e),n})(e),i=n.filter(v).filter(k).map((n=>f(n,e,!1)))
254 +;i.unshift(t);const r=i.sort(((e,n)=>{
255 +if(e.relevance!==n.relevance)return n.relevance-e.relevance
256 +;if(e.language&&n.language){if(v(e.language).supersetOf===n.language)return 1
257 +;if(v(n.language).supersetOf===e.language)return-1}return 0})),[s,o]=r,l=s
258 +;return l.secondBest=o,l}function y(e){let n=null;const t=(e=>{
259 +let n=e.className+" ";n+=e.parentNode?e.parentNode.className:""
260 +;const t=p.languageDetectRe.exec(n);if(t){const n=v(t[1])
261 +;return n||(H(o.replace("{}",t[1])),
262 +H("Falling back to no-highlight mode for this block.",e)),n?t[1]:"no-highlight"}
263 +return n.split(/\s+/).find((e=>_(e)||v(e)))})(e);if(_(t))return
264 +;if(x("before:highlightElement",{el:e,language:t
265 +}),e.dataset.highlighted)return void console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",e)
266 +;if(e.children.length>0&&(p.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),
267 +console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),
268 +console.warn("The element with unescaped HTML:"),
269 +console.warn(e)),p.throwUnescapedHTML))throw new V("One of your code blocks includes unescaped HTML.",e.innerHTML)
270 +;n=e;const a=n.textContent,r=t?h(a,{language:t,ignoreIllegals:!0}):E(a)
271 +;e.innerHTML=r.value,e.dataset.highlighted="yes",((e,n,t)=>{const a=n&&i[n]||t
272 +;e.classList.add("hljs"),e.classList.add("language-"+a)
273 +})(e,t,r.language),e.result={language:r.language,re:r.relevance,
274 +relevance:r.relevance},r.secondBest&&(e.secondBest={
275 +language:r.secondBest.language,relevance:r.secondBest.relevance
276 +}),x("after:highlightElement",{el:e,result:r,text:a})}let N=!1;function w(){
277 +"loading"!==document.readyState?document.querySelectorAll(p.cssSelector).forEach(y):N=!0
278 +}function v(e){return e=(e||"").toLowerCase(),a[e]||a[i[e]]}
279 +function O(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
280 +i[e.toLowerCase()]=n}))}function k(e){const n=v(e)
281 +;return n&&!n.disableAutodetect}function x(e,n){const t=e;r.forEach((e=>{
282 +e[t]&&e[t](n)}))}
283 +"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{
284 +N&&w()}),!1),Object.assign(t,{highlight:h,highlightAuto:E,highlightAll:w,
285 +highlightElement:y,
286 +highlightBlock:e=>(q("10.7.0","highlightBlock will be removed entirely in v12.0"),
287 +q("10.7.0","Please use highlightElement now."),y(e)),configure:e=>{p=Y(p,e)},
288 +initHighlighting:()=>{
289 +w(),q("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},
290 +initHighlightingOnLoad:()=>{
291 +w(),q("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")
292 +},registerLanguage:(e,n)=>{let i=null;try{i=n(t)}catch(n){
293 +if(K("Language definition for '{}' could not be registered.".replace("{}",e)),
294 +!s)throw n;K(n),i=c}
295 +i.name||(i.name=e),a[e]=i,i.rawDefinition=n.bind(null,t),i.aliases&&O(i.aliases,{
296 +languageName:e})},unregisterLanguage:e=>{delete a[e]
297 +;for(const n of Object.keys(i))i[n]===e&&delete i[n]},
298 +listLanguages:()=>Object.keys(a),getLanguage:v,registerAliases:O,
299 +autoDetection:k,inherit:Y,addPlugin:e=>{(e=>{
300 +e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=n=>{
301 +e["before:highlightBlock"](Object.assign({block:n.el},n))
302 +}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=n=>{
303 +e["after:highlightBlock"](Object.assign({block:n.el},n))})})(e),r.push(e)},
304 +removePlugin:e=>{const n=r.indexOf(e);-1!==n&&r.splice(n,1)}}),t.debugMode=()=>{
305 +s=!1},t.safeMode=()=>{s=!0},t.versionString="11.9.0",t.regex={concat:b,
306 +lookahead:d,either:m,optional:u,anyNumberOfTimes:g}
307 +;for(const n in C)"object"==typeof C[n]&&e(C[n]);return Object.assign(t,C),t
308 +},te=ne({});te.newInstance=()=>ne({});var ae=te;const ie=e=>({IMPORTANT:{
309 +scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{
310 +scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},
311 +FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},
312 +ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
313 +contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
314 +scope:"number",
315 +begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",
316 +relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}
317 +}),re=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],se=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],oe=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],le=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],ce=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),de=oe.concat(le)
318 +;var ge="[0-9](_*[0-9])*",ue=`\\.(${ge})`,be="[0-9a-fA-F](_*[0-9a-fA-F])*",me={
319 +className:"number",variants:[{
320 +begin:`(\\b(${ge})((${ue})|\\.)?|(${ue}))[eE][+-]?(${ge})[fFdD]?\\b`},{
321 +begin:`\\b(${ge})((${ue})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
322 +begin:`(${ue})[fFdD]?\\b`},{begin:`\\b(${ge})[fFdD]\\b`},{
323 +begin:`\\b0[xX]((${be})\\.?|(${be})?\\.(${be}))[pP][+-]?(${ge})[fFdD]?\\b`},{
324 +begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${be})[lL]?\\b`},{
325 +begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
326 +relevance:0};function pe(e,n,t){return-1===t?"":e.replace(n,(a=>pe(e,n,t-1)))}
327 +const _e="[A-Za-z$_][0-9A-Za-z$_]*",he=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],fe=["true","false","null","undefined","NaN","Infinity"],Ee=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],ye=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Ne=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],we=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],ve=[].concat(Ne,Ee,ye)
328 +;function Oe(e){const n=e.regex,t=_e,a={begin:/<[A-Za-z0-9\\._:-]+/,
329 +end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
330 +const t=e[0].length+e.index,a=e.input[t]
331 +;if("<"===a||","===a)return void n.ignoreMatch();let i
332 +;">"===a&&(((e,{after:n})=>{const t="</"+e[0].slice(1)
333 +;return-1!==e.input.indexOf(t,n)})(e,{after:t})||n.ignoreMatch())
334 +;const r=e.input.substring(t)
335 +;((i=r.match(/^\s*=/))||(i=r.match(/^\s+extends\s+/))&&0===i.index)&&n.ignoreMatch()
336 +}},i={$pattern:_e,keyword:he,literal:fe,built_in:ve,"variable.language":we
337 +},r="[0-9](_?[0-9])*",s=`\\.(${r})`,o="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",l={
338 +className:"number",variants:[{
339 +begin:`(\\b(${o})((${s})|\\.)?|(${s}))[eE][+-]?(${r})\\b`},{
340 +begin:`\\b(${o})\\b((${s})\\b|\\.)?|(${s})\\b`},{
341 +begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{
342 +begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{
343 +begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{
344 +begin:"\\b0[0-7]+n?\\b"}],relevance:0},c={className:"subst",begin:"\\$\\{",
345 +end:"\\}",keywords:i,contains:[]},d={begin:"html`",end:"",starts:{end:"`",
346 +returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,c],subLanguage:"xml"}},g={
347 +begin:"css`",end:"",starts:{end:"`",returnEnd:!1,
348 +contains:[e.BACKSLASH_ESCAPE,c],subLanguage:"css"}},u={begin:"gql`",end:"",
349 +starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,c],
350 +subLanguage:"graphql"}},b={className:"string",begin:"`",end:"`",
351 +contains:[e.BACKSLASH_ESCAPE,c]},m={className:"comment",
352 +variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{
353 +begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",
354 +begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,
355 +excludeBegin:!0,relevance:0},{className:"variable",begin:t+"(?=\\s*(-)|$)",
356 +endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]
357 +}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]
358 +},p=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,d,g,u,b,{match:/\$\d+/},l]
359 +;c.contains=p.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(p)
360 +});const _=[].concat(m,c.contains),h=_.concat([{begin:/\(/,end:/\)/,keywords:i,
361 +contains:["self"].concat(_)}]),f={className:"params",begin:/\(/,end:/\)/,
362 +excludeBegin:!0,excludeEnd:!0,keywords:i,contains:h},E={variants:[{
363 +match:[/class/,/\s+/,t,/\s+/,/extends/,/\s+/,n.concat(t,"(",n.concat(/\./,t),")*")],
364 +scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{
365 +match:[/class/,/\s+/,t],scope:{1:"keyword",3:"title.class"}}]},y={relevance:0,
366 +match:n.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),
367 +className:"title.class",keywords:{_:[...Ee,...ye]}},N={variants:[{
368 +match:[/function/,/\s+/,t,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],
369 +className:{1:"keyword",3:"title.function"},label:"func.def",contains:[f],
370 +illegal:/%/},w={
371 +match:n.concat(/\b/,(v=[...Ne,"super","import"],n.concat("(?!",v.join("|"),")")),t,n.lookahead(/\(/)),
372 +className:"title.function",relevance:0};var v;const O={
373 +begin:n.concat(/\./,n.lookahead(n.concat(t,/(?![0-9A-Za-z$_(])/))),end:t,
374 +excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},k={
375 +match:[/get|set/,/\s+/,t,/(?=\()/],className:{1:"keyword",3:"title.function"},
376 +contains:[{begin:/\(\)/},f]
377 +},x="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",M={
378 +match:[/const|var|let/,/\s+/,t,/\s*/,/=\s*/,/(async\s*)?/,n.lookahead(x)],
379 +keywords:"async",className:{1:"keyword",3:"title.function"},contains:[f]}
380 +;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{
381 +PARAMS_CONTAINS:h,CLASS_REFERENCE:y},illegal:/#(?![$_A-z])/,
382 +contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{
383 +label:"use_strict",className:"meta",relevance:10,
384 +begin:/^\s*['"]use (strict|asm)['"]/
385 +},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,d,g,u,b,m,{match:/\$\d+/},l,y,{
386 +className:"attr",begin:t+n.lookahead(":"),relevance:0},M,{
387 +begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
388 +keywords:"return throw case",relevance:0,contains:[m,e.REGEXP_MODE,{
389 +className:"function",begin:x,returnBegin:!0,end:"\\s*=>",contains:[{
390 +className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{
391 +className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,
392 +excludeEnd:!0,keywords:i,contains:h}]}]},{begin:/,/,relevance:0},{match:/\s+/,
393 +relevance:0},{variants:[{begin:"<>",end:"</>"},{
394 +match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:a.begin,
395 +"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{
396 +begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},N,{
397 +beginKeywords:"while if switch catch for"},{
398 +begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
399 +returnBegin:!0,label:"func.def",contains:[f,e.inherit(e.TITLE_MODE,{begin:t,
400 +className:"title.function"})]},{match:/\.\.\./,relevance:0},O,{match:"\\$"+t,
401 +relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
402 +contains:[f]},w,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
403 +className:"variable.constant"},E,k,{match:/\$[(.]/}]}}
404 +const ke=e=>b(/\b/,e,/\w$/.test(e)?/\b/:/\B/),xe=["Protocol","Type"].map(ke),Me=["init","self"].map(ke),Se=["Any","Self"],Ae=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],Ce=["false","nil","true"],Te=["assignment","associativity","higherThan","left","lowerThan","none","right"],Re=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],De=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Ie=m(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),Le=m(Ie,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Be=b(Ie,Le,"*"),$e=m(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),ze=m($e,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),Fe=b($e,ze,"*"),Ue=b(/[A-Z]/,ze,"*"),je=["attached","autoclosure",b(/convention\(/,m("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",b(/objc\(/,Fe,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],Pe=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"]
405 +;var Ke=Object.freeze({__proto__:null,grmr_bash:e=>{const n=e.regex,t={},a={
406 +begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]}
407 +;Object.assign(t,{className:"variable",variants:[{
408 +begin:n.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},a]});const i={
409 +className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},r={
410 +begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
411 +end:/(\w+)/,className:"string"})]}},s={className:"string",begin:/"/,end:/"/,
412 +contains:[e.BACKSLASH_ESCAPE,t,i]};i.contains.push(s);const o={begin:/\$?\(\(/,
413 +end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]
414 +},l=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
415 +}),c={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
416 +contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
417 +name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,
418 +keyword:["if","then","else","elif","fi","for","while","until","in","do","done","case","esac","function","select"],
419 +literal:["true","false"],
420 +built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]
421 +},contains:[l,e.SHEBANG(),c,o,e.HASH_COMMENT_MODE,r,{match:/(\/[a-z._-]+)+/},s,{
422 +match:/\\"/},{className:"string",begin:/'/,end:/'/},{match:/\\'/},t]}},
423 +grmr_c:e=>{const n=e.regex,t=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]
424 +}),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="("+a+"|"+n.optional(i)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",s={
425 +className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{
426 +match:/\batomic_[a-z]{3,6}\b/}]},o={className:"string",variants:[{
427 +begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
428 +begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
429 +end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
430 +begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},l={
431 +className:"number",variants:[{begin:"\\b(0b[01']+)"},{
432 +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
433 +},{
434 +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
435 +}],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
436 +keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
437 +},contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:"string"}),{
438 +className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},d={
439 +className:"title",begin:n.optional(i)+e.IDENT_RE,relevance:0
440 +},g=n.optional(i)+e.IDENT_RE+"\\s*\\(",u={
441 +keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],
442 +type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],
443 +literal:"true false NULL",
444 +built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"
445 +},b=[c,s,t,e.C_BLOCK_COMMENT_MODE,l,o],m={variants:[{begin:/=/,end:/;/},{
446 +begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
447 +keywords:u,contains:b.concat([{begin:/\(/,end:/\)/,keywords:u,
448 +contains:b.concat(["self"]),relevance:0}]),relevance:0},p={
449 +begin:"("+r+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
450 +keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:u,relevance:0},{
451 +begin:g,returnBegin:!0,contains:[e.inherit(d,{className:"title.function"})],
452 +relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,
453 +keywords:u,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,o,l,s,{begin:/\(/,
454 +end:/\)/,keywords:u,relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,o,l,s]
455 +}]},s,t,e.C_BLOCK_COMMENT_MODE,c]};return{name:"C",aliases:["h"],keywords:u,
456 +disableAutodetect:!0,illegal:"</",contains:[].concat(m,p,b,[c,{
457 +begin:e.IDENT_RE+"::",keywords:u},{className:"class",
458 +beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{
459 +beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:c,
460 +strings:o,keywords:u}}},grmr_cpp:e=>{const n=e.regex,t=e.COMMENT("//","$",{
461 +contains:[{begin:/\\\n/}]
462 +}),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="(?!struct)("+a+"|"+n.optional(i)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",s={
463 +className:"type",begin:"\\b[a-z\\d_]*_t\\b"},o={className:"string",variants:[{
464 +begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
465 +begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
466 +end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
467 +begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},l={
468 +className:"number",variants:[{begin:"\\b(0b[01']+)"},{
469 +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
470 +},{
471 +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
472 +}],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
473 +keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
474 +},contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:"string"}),{
475 +className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},d={
476 +className:"title",begin:n.optional(i)+e.IDENT_RE,relevance:0
477 +},g=n.optional(i)+e.IDENT_RE+"\\s*\\(",u={
478 +type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],
479 +keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],
480 +literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],
481 +_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]
482 +},b={className:"function.dispatch",relevance:0,keywords:{
483 +_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]
484 +},
485 +begin:n.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,n.lookahead(/(<[^<>]+>|)\s*\(/))
486 +},m=[b,c,s,t,e.C_BLOCK_COMMENT_MODE,l,o],p={variants:[{begin:/=/,end:/;/},{
487 +begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
488 +keywords:u,contains:m.concat([{begin:/\(/,end:/\)/,keywords:u,
489 +contains:m.concat(["self"]),relevance:0}]),relevance:0},_={className:"function",
490 +begin:"("+r+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
491 +keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:u,relevance:0},{
492 +begin:g,returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{
493 +begin:/:/,endsWithParent:!0,contains:[o,l]},{relevance:0,match:/,/},{
494 +className:"params",begin:/\(/,end:/\)/,keywords:u,relevance:0,
495 +contains:[t,e.C_BLOCK_COMMENT_MODE,o,l,s,{begin:/\(/,end:/\)/,keywords:u,
496 +relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,o,l,s]}]
497 +},s,t,e.C_BLOCK_COMMENT_MODE,c]};return{name:"C++",
498 +aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:u,illegal:"</",
499 +classNameAliases:{"function.dispatch":"built_in"},
500 +contains:[].concat(p,_,b,m,[c,{
501 +begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)",
502 +end:">",keywords:u,contains:["self",s]},{begin:e.IDENT_RE+"::",keywords:u},{
503 +match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],
504 +className:{1:"keyword",3:"title.class"}}])}},grmr_csharp:e=>{const n={
505 +keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),
506 +built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
507 +literal:["default","false","null","true"]},t=e.inherit(e.TITLE_MODE,{
508 +begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{
509 +begin:"\\b(0b[01']+)"},{
510 +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
511 +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
512 +}],relevance:0},i={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
513 +},r=e.inherit(i,{illegal:/\n/}),s={className:"subst",begin:/\{/,end:/\}/,
514 +keywords:n},o=e.inherit(s,{illegal:/\n/}),l={className:"string",begin:/\$"/,
515 +end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
516 +},e.BACKSLASH_ESCAPE,o]},c={className:"string",begin:/\$@"/,end:'"',contains:[{
517 +begin:/\{\{/},{begin:/\}\}/},{begin:'""'},s]},d=e.inherit(c,{illegal:/\n/,
518 +contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},o]})
519 +;s.contains=[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],
520 +o.contains=[d,l,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{
521 +illegal:/\n/})];const g={variants:[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
522 +},u={begin:"<",end:">",contains:[{beginKeywords:"in out"},t]
523 +},b=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",m={
524 +begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
525 +keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
526 +contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
527 +begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
528 +}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
529 +end:"$",keywords:{
530 +keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
531 +}},g,a,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
532 +illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
533 +},t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
534 +relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
535 +contains:[t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
536 +beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
537 +contains:[t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
538 +begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
539 +className:"string",begin:/"/,end:/"/}]},{
540 +beginKeywords:"new return throw await else",relevance:0},{className:"function",
541 +begin:"("+b+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
542 +end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
543 +beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
544 +relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
545 +contains:[e.TITLE_MODE,u],relevance:0},{match:/\(\)/},{className:"params",
546 +begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
547 +contains:[g,a,e.C_BLOCK_COMMENT_MODE]
548 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},m]}},grmr_css:e=>{
549 +const n=e.regex,t=ie(e),a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{
550 +name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{
551 +keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},
552 +contains:[t.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/
553 +},t.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0
554 +},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0
555 +},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{
556 +begin:":("+oe.join("|")+")"},{begin:":(:)?("+le.join("|")+")"}]
557 +},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+ce.join("|")+")\\b"},{
558 +begin:/:/,end:/[;}{]/,
559 +contains:[t.BLOCK_COMMENT,t.HEXCOLOR,t.IMPORTANT,t.CSS_NUMBER_MODE,...a,{
560 +begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"
561 +},contains:[...a,{className:"string",begin:/[^)]/,endsWithParent:!0,
562 +excludeEnd:!0}]},t.FUNCTION_DISPATCH]},{begin:n.lookahead(/@/),end:"[{;]",
563 +relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/
564 +},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{
565 +$pattern:/[a-z-]+/,keyword:"and or not only",attribute:se.join(" ")},contains:[{
566 +begin:/[a-z-]+(?=:)/,className:"attribute"},...a,t.CSS_NUMBER_MODE]}]},{
567 +className:"selector-tag",begin:"\\b("+re.join("|")+")\\b"}]}},grmr_diff:e=>{
568 +const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{
569 +className:"meta",relevance:10,
570 +match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)
571 +},{className:"comment",variants:[{
572 +begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),
573 +end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{
574 +className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,
575 +end:/$/}]}},grmr_go:e=>{const n={
576 +keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],
577 +type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],
578 +literal:["true","false","iota","nil"],
579 +built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]
580 +};return{name:"Go",aliases:["golang"],keywords:n,illegal:"</",
581 +contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",
582 +variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{
583 +className:"number",variants:[{begin:e.C_NUMBER_RE+"[i]",relevance:1
584 +},e.C_NUMBER_MODE]},{begin:/:=/},{className:"function",beginKeywords:"func",
585 +end:"\\s*(\\{|$)",excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",
586 +begin:/\(/,end:/\)/,endsParent:!0,keywords:n,illegal:/["']/}]}]}},
587 +grmr_graphql:e=>{const n=e.regex;return{name:"GraphQL",aliases:["gql"],
588 +case_insensitive:!0,disableAutodetect:!1,keywords:{
589 +keyword:["query","mutation","subscription","type","input","schema","directive","interface","union","scalar","fragment","enum","on"],
590 +literal:["true","false","null"]},
591 +contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{
592 +scope:"punctuation",match:/[.]{3}/,relevance:0},{scope:"punctuation",
593 +begin:/[\!\(\)\:\=\[\]\{\|\}]{1}/,relevance:0},{scope:"variable",begin:/\$/,
594 +end:/\W/,excludeEnd:!0,relevance:0},{scope:"meta",match:/@\w+/,excludeEnd:!0},{
595 +scope:"symbol",begin:n.concat(/[_A-Za-z][_0-9A-Za-z]*/,n.lookahead(/\s*:/)),
596 +relevance:0}],illegal:[/[;<']/,/BEGIN/]}},grmr_ini:e=>{const n=e.regex,t={
597 +className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{
598 +begin:e.NUMBER_RE}]},a=e.COMMENT();a.variants=[{begin:/;/,end:/$/},{begin:/#/,
599 +end:/$/}];const i={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{
600 +begin:/\$\{(.*?)\}/}]},r={className:"literal",
601 +begin:/\bon|off|true|false|yes|no\b/},s={className:"string",
602 +contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{
603 +begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]
604 +},o={begin:/\[/,end:/\]/,contains:[a,r,i,s,t,"self"],relevance:0
605 +},l=n.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{
606 +name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,
607 +contains:[a,{className:"section",begin:/\[+/,end:/\]+/},{
608 +begin:n.concat(l,"(\\s*\\.\\s*",l,")*",n.lookahead(/\s*=\s*[^#\s]/)),
609 +className:"attr",starts:{end:/$/,contains:[a,o,r,i,s,t]}}]}},grmr_java:e=>{
610 +const n=e.regex,t="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",a=t+pe("(?:<"+t+"~~~(?:\\s*,\\s*"+t+"~~~)*>)?",/~~~/g,2),i={
611 +keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits"],
612 +literal:["false","true","null"],
613 +type:["char","boolean","long","float","int","byte","short","double"],
614 +built_in:["super","this"]},r={className:"meta",begin:"@"+t,contains:[{
615 +begin:/\(/,end:/\)/,contains:["self"]}]},s={className:"params",begin:/\(/,
616 +end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0}
617 +;return{name:"Java",aliases:["jsp"],keywords:i,illegal:/<\/|#/,
618 +contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
619 +relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
620 +begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
621 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,
622 +className:"string",contains:[e.BACKSLASH_ESCAPE]
623 +},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
624 +match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,t],className:{
625 +1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{
626 +begin:[n.concat(/(?!else)/,t),/\s+/,t,/\s+/,/=(?!=)/],className:{1:"type",
627 +3:"variable",5:"operator"}},{begin:[/record/,/\s+/,t],className:{1:"keyword",
628 +3:"title.class"},contains:[s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
629 +beginKeywords:"new throw return else",relevance:0},{
630 +begin:["(?:"+a+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
631 +2:"title.function"},keywords:i,contains:[{className:"params",begin:/\(/,
632 +end:/\)/,keywords:i,relevance:0,
633 +contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,me,e.C_BLOCK_COMMENT_MODE]
634 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},me,r]}},grmr_javascript:Oe,
635 +grmr_json:e=>{const n=["true","false","null"],t={scope:"literal",
636 +beginKeywords:n.join(" ")};return{name:"JSON",keywords:{literal:n},contains:[{
637 +className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{
638 +match:/[{}[\],:]/,className:"punctuation",relevance:0
639 +},e.QUOTE_STRING_MODE,t,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],
640 +illegal:"\\S"}},grmr_kotlin:e=>{const n={
641 +keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",
642 +built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",
643 +literal:"true false null"},t={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"
644 +},a={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},i={
645 +className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string",
646 +variants:[{begin:'"""',end:'"""(?=[^"])',contains:[i,a]},{begin:"'",end:"'",
647 +illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,
648 +contains:[e.BACKSLASH_ESCAPE,i,a]}]};a.contains.push(r);const s={
649 +className:"meta",
650 +begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"
651 +},o={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,
652 +end:/\)/,contains:[e.inherit(r,{className:"string"}),"self"]}]
653 +},l=me,c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),d={
654 +variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,
655 +contains:[]}]},g=d;return g.variants[1].contains=[d],d.variants[1].contains=[g],
656 +{name:"Kotlin",aliases:["kt","kts"],keywords:n,
657 +contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",
658 +begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",
659 +begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",
660 +begin:/@\w+/}]}},t,s,o,{className:"function",beginKeywords:"fun",end:"[(]|$",
661 +returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{
662 +begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,
663 +contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin:/</,end:/>/,
664 +keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,
665 +endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,
666 +endsWithParent:!0,contains:[d,e.C_LINE_COMMENT_MODE,c],relevance:0
667 +},e.C_LINE_COMMENT_MODE,c,s,o,r,e.C_NUMBER_MODE]},c]},{
668 +begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{
669 +3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,
670 +illegal:"extends implements",contains:[{
671 +beginKeywords:"public protected internal private constructor"
672 +},e.UNDERSCORE_TITLE_MODE,{className:"type",begin:/</,end:/>/,excludeBegin:!0,
673 +excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,
674 +excludeBegin:!0,returnEnd:!0},s,o]},r,{className:"meta",begin:"^#!/usr/bin/env",
675 +end:"$",illegal:"\n"},l]}},grmr_less:e=>{
676 +const n=ie(e),t=de,a="[\\w-]+",i="("+a+"|@\\{"+a+"\\})",r=[],s=[],o=e=>({
677 +className:"string",begin:"~?"+e+".*?"+e}),l=(e,n,t)=>({className:e,begin:n,
678 +relevance:t}),c={$pattern:/[a-z-]+/,keyword:"and or not only",
679 +attribute:se.join(" ")},d={begin:"\\(",end:"\\)",contains:s,keywords:c,
680 +relevance:0}
681 +;s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,o("'"),o('"'),n.CSS_NUMBER_MODE,{
682 +begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",
683 +excludeEnd:!0}
684 +},n.HEXCOLOR,d,l("variable","@@?"+a,10),l("variable","@\\{"+a+"\\}"),l("built_in","~?`[^`]*?`"),{
685 +className:"attribute",begin:a+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0
686 +},n.IMPORTANT,{beginKeywords:"and not"},n.FUNCTION_DISPATCH);const g=s.concat({
687 +begin:/\{/,end:/\}/,contains:r}),u={beginKeywords:"when",endsWithParent:!0,
688 +contains:[{beginKeywords:"and not"}].concat(s)},b={begin:i+"\\s*:",
689 +returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/
690 +},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+ce.join("|")+")\\b",
691 +end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:s}}]
692 +},m={className:"keyword",
693 +begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",
694 +starts:{end:"[;{}]",keywords:c,returnEnd:!0,contains:s,relevance:0}},p={
695 +className:"variable",variants:[{begin:"@"+a+"\\s*:",relevance:15},{begin:"@"+a
696 +}],starts:{end:"[;}]",returnEnd:!0,contains:g}},_={variants:[{
697 +begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:i,end:/\{/}],returnBegin:!0,
698 +returnEnd:!0,illegal:"[<='$\"]",relevance:0,
699 +contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,u,l("keyword","all\\b"),l("variable","@\\{"+a+"\\}"),{
700 +begin:"\\b("+re.join("|")+")\\b",className:"selector-tag"
701 +},n.CSS_NUMBER_MODE,l("selector-tag",i,0),l("selector-id","#"+i),l("selector-class","\\."+i,0),l("selector-tag","&",0),n.ATTRIBUTE_SELECTOR_MODE,{
702 +className:"selector-pseudo",begin:":("+oe.join("|")+")"},{
703 +className:"selector-pseudo",begin:":(:)?("+le.join("|")+")"},{begin:/\(/,
704 +end:/\)/,relevance:0,contains:g},{begin:"!important"},n.FUNCTION_DISPATCH]},h={
705 +begin:a+":(:)?"+`(${t.join("|")})`,returnBegin:!0,contains:[_]}
706 +;return r.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,m,p,h,b,_,u,n.FUNCTION_DISPATCH),
707 +{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:r}},
708 +grmr_lua:e=>{const n="\\[=*\\[",t="\\]=*\\]",a={begin:n,end:t,contains:["self"]
709 +},i=[e.COMMENT("--(?!"+n+")","$"),e.COMMENT("--"+n,t,{contains:[a],relevance:10
710 +})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,
711 +literal:"true false nil",
712 +keyword:"and break do else elseif end for goto if in local not or repeat return then until while",
713 +built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"
714 +},contains:i.concat([{className:"function",beginKeywords:"function",end:"\\)",
715 +contains:[e.inherit(e.TITLE_MODE,{
716 +begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",
717 +begin:"\\(",endsWithParent:!0,contains:i}].concat(i)
718 +},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",
719 +begin:n,end:t,contains:[a],relevance:5}])}},grmr_makefile:e=>{const n={
720 +className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",
721 +contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},t={className:"string",
722 +begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n]},a={className:"variable",
723 +begin:/\$\([\w-]+\s/,end:/\)/,keywords:{
724 +built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
725 +},contains:[n]},i={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},r={
726 +className:"section",begin:/^[^\s]+:/,end:/$/,contains:[n]};return{
727 +name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,
728 +keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
729 +},contains:[e.HASH_COMMENT_MODE,n,t,a,i,{className:"meta",begin:/^\.PHONY:/,
730 +end:/$/,keywords:{$pattern:/[\.\w]+/,keyword:".PHONY"}},r]}},grmr_markdown:e=>{
731 +const n={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},t={
732 +variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{
733 +begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,
734 +relevance:2},{
735 +begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),
736 +relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{
737 +begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/
738 +},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,
739 +returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",
740 +excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",
741 +end:"\\]",excludeBegin:!0,excludeEnd:!0}]},a={className:"strong",contains:[],
742 +variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]
743 +},i={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{
744 +begin:/_(?![_\s])/,end:/_/,relevance:0}]},r=e.inherit(a,{contains:[]
745 +}),s=e.inherit(i,{contains:[]});a.contains.push(s),i.contains.push(r)
746 +;let o=[n,t];return[a,i,r,s].forEach((e=>{e.contains=e.contains.concat(o)
747 +})),o=o.concat(a,i),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{
748 +className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:o},{
749 +begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",
750 +contains:o}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",
751 +end:"\\s+",excludeEnd:!0},a,i,{className:"quote",begin:"^>\\s+",contains:o,
752 +end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{
753 +begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{
754 +begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",
755 +contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{
756 +begin:"^[-\\*]{3,}",end:"$"},t,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{
757 +className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{
758 +className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}},grmr_objectivec:e=>{
759 +const n=/[a-zA-Z@][a-zA-Z0-9_]*/,t={$pattern:n,
760 +keyword:["@interface","@class","@protocol","@implementation"]};return{
761 +name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],
762 +keywords:{"variable.language":["this","super"],$pattern:n,
763 +keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],
764 +literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],
765 +built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],
766 +type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]
767 +},illegal:"</",contains:[{className:"built_in",
768 +begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
769 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{
770 +className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",
771 +contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,
772 +keywords:{
773 +keyword:"if else elif endif define undef warning error line pragma ifdef ifndef include"
774 +},contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{
775 +className:"string"}),{className:"string",begin:/<.*?>/,end:/$/,illegal:"\\n"
776 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",
777 +begin:"("+t.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:t,
778 +contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,
779 +relevance:0}]}},grmr_perl:e=>{const n=e.regex,t=/[dualxmsipngr]{0,12}/,a={
780 +$pattern:/[\w.]+/,
781 +keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"
782 +},i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:a},r={begin:/->\{/,
783 +end:/\}/},s={variants:[{begin:/\$\d/},{
784 +begin:n.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")
785 +},{begin:/[$%@][^\s\w{]/,relevance:0}]
786 +},o=[e.BACKSLASH_ESCAPE,i,s],l=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],c=(e,a,i="\\1")=>{
787 +const r="\\1"===i?i:n.concat(i,a)
788 +;return n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,r,/(?:\\.|[^\\\/])*?/,i,t)
789 +},d=(e,a,i)=>n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,i,t),g=[s,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{
790 +endsWithParent:!0}),r,{className:"string",contains:o,variants:[{
791 +begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",
792 +end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{
793 +begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",
794 +relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",
795 +contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",
796 +contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{
797 +begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",
798 +begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",
799 +relevance:0},{
800 +begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",
801 +keywords:"split return print reverse grep",relevance:0,
802 +contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{
803 +begin:c("s|tr|y",n.either(...l,{capture:!0}))},{begin:c("s|tr|y","\\(","\\)")},{
804 +begin:c("s|tr|y","\\[","\\]")},{begin:c("s|tr|y","\\{","\\}")}],relevance:2},{
805 +className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{
806 +begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",n.either(...l,{capture:!0
807 +}),/\1/)},{begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{
808 +begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",
809 +end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{
810 +begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",
811 +subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]
812 +}];return i.contains=g,r.contains=g,{name:"Perl",aliases:["pl","pm"],keywords:a,
813 +contains:g}},grmr_php:e=>{
814 +const n=e.regex,t=/(?![A-Za-z0-9])(?![$])/,a=n.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,t),i=n.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,t),r={
815 +scope:"variable",match:"\\$+"+a},s={scope:"subst",variants:[{begin:/\$\w+/},{
816 +begin:/\{\$/,end:/\}/}]},o=e.inherit(e.APOS_STRING_MODE,{illegal:null
817 +}),l="[ \t\n]",c={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{
818 +illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(s)}),o,{
819 +begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,
820 +contains:e.QUOTE_STRING_MODE.contains.concat(s),"on:begin":(e,n)=>{
821 +n.data._beginMatch=e[1]||e[2]},"on:end":(e,n)=>{
822 +n.data._beginMatch!==e[1]&&n.ignoreMatch()}},e.END_SAME_AS_BEGIN({
823 +begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/})]},d={scope:"number",variants:[{
824 +begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{
825 +begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{
826 +begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"
827 +}],relevance:0
828 +},g=["false","null","true"],u=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],b=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],m={
829 +keyword:u,literal:(e=>{const n=[];return e.forEach((e=>{
830 +n.push(e),e.toLowerCase()===e?n.push(e.toUpperCase()):n.push(e.toLowerCase())
831 +})),n})(g),built_in:b},p=e=>e.map((e=>e.replace(/\|\d+$/,""))),_={variants:[{
832 +match:[/new/,n.concat(l,"+"),n.concat("(?!",p(b).join("\\b|"),"\\b)"),i],scope:{
833 +1:"keyword",4:"title.class"}}]},h=n.concat(a,"\\b(?!\\()"),f={variants:[{
834 +match:[n.concat(/::/,n.lookahead(/(?!class\b)/)),h],scope:{2:"variable.constant"
835 +}},{match:[/::/,/class/],scope:{2:"variable.language"}},{
836 +match:[i,n.concat(/::/,n.lookahead(/(?!class\b)/)),h],scope:{1:"title.class",
837 +3:"variable.constant"}},{match:[i,n.concat("::",n.lookahead(/(?!class\b)/))],
838 +scope:{1:"title.class"}},{match:[i,/::/,/class/],scope:{1:"title.class",
839 +3:"variable.language"}}]},E={scope:"attr",
840 +match:n.concat(a,n.lookahead(":"),n.lookahead(/(?!::)/))},y={relevance:0,
841 +begin:/\(/,end:/\)/,keywords:m,contains:[E,r,f,e.C_BLOCK_COMMENT_MODE,c,d,_]
842 +},N={relevance:0,
843 +match:[/\b/,n.concat("(?!fn\\b|function\\b|",p(u).join("\\b|"),"|",p(b).join("\\b|"),"\\b)"),a,n.concat(l,"*"),n.lookahead(/(?=\()/)],
844 +scope:{3:"title.function.invoke"},contains:[y]};y.contains.push(N)
845 +;const w=[E,f,e.C_BLOCK_COMMENT_MODE,c,d,_];return{case_insensitive:!1,
846 +keywords:m,contains:[{begin:n.concat(/#\[\s*/,i),beginScope:"meta",end:/]/,
847 +endScope:"meta",keywords:{literal:g,keyword:["new","array"]},contains:[{
848 +begin:/\[/,end:/]/,keywords:{literal:g,keyword:["new","array"]},
849 +contains:["self",...w]},...w,{scope:"meta",match:i}]
850 +},e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{
851 +scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,
852 +keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,
853 +contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{
854 +begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{
855 +begin:/\?>/}]},{scope:"variable.language",match:/\$this\b/},r,N,f,{
856 +match:[/const/,/\s/,a],scope:{1:"keyword",3:"variable.constant"}},_,{
857 +scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,
858 +excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"
859 +},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",
860 +begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:m,
861 +contains:["self",r,f,e.C_BLOCK_COMMENT_MODE,c,d]}]},{scope:"class",variants:[{
862 +beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",
863 +illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{
864 +beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
865 +beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,
866 +contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{
867 +beginKeywords:"use",relevance:0,end:";",contains:[{
868 +match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},c,d]}
869 +},grmr_php_template:e=>({name:"PHP template",subLanguage:"xml",contains:[{
870 +begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",
871 +end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0
872 +},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,
873 +skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,
874 +contains:null,skip:!0})]}]}),grmr_plaintext:e=>({name:"Plain text",
875 +aliases:["text","txt"],disableAutodetect:!0}),grmr_python:e=>{
876 +const n=e.regex,t=/[\p{XID_Start}_]\p{XID_Continue}*/u,a=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],i={
877 +$pattern:/[A-Za-z]\w+|__\w+__/,keyword:a,
878 +built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],
879 +literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
880 +type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
881 +},r={className:"meta",begin:/^(>>>|\.\.\.) /},s={className:"subst",begin:/\{/,
882 +end:/\}/,keywords:i,illegal:/#/},o={begin:/\{\{/,relevance:0},l={
883 +className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
884 +begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
885 +contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{
886 +begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
887 +contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{
888 +begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
889 +contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
890 +end:/"""/,contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([uU]|[rR])'/,end:/'/,
891 +relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
892 +begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
893 +end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
894 +contains:[e.BACKSLASH_ESCAPE,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
895 +contains:[e.BACKSLASH_ESCAPE,o,s]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
896 +},c="[0-9](_?[0-9])*",d=`(\\b(${c}))?\\.(${c})|\\b(${c})\\.`,g="\\b|"+a.join("|"),u={
897 +className:"number",relevance:0,variants:[{
898 +begin:`(\\b(${c})|(${d}))[eE][+-]?(${c})[jJ]?(?=${g})`},{begin:`(${d})[jJ]?`},{
899 +begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`},{
900 +begin:`\\b0[bB](_?[01])+[lL]?(?=${g})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${g})`
901 +},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})`},{begin:`\\b(${c})[jJ](?=${g})`
902 +}]},b={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:i,
903 +contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={
904 +className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,
905 +end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,
906 +contains:["self",r,u,l,e.HASH_COMMENT_MODE]}]};return s.contains=[l,u,r],{
907 +name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i,
908 +illegal:/(<\/|\?)|=>/,contains:[r,u,{begin:/\bself\b/},{beginKeywords:"if",
909 +relevance:0},l,b,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,t],scope:{
910 +1:"keyword",3:"title.function"},contains:[m]},{variants:[{
911 +match:[/\bclass/,/\s+/,t,/\s*/,/\(\s*/,t,/\s*\)/]},{match:[/\bclass/,/\s+/,t]}],
912 +scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{
913 +className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[u,m,l]}]}},
914 +grmr_python_repl:e=>({aliases:["pycon"],contains:[{className:"meta.prompt",
915 +starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{
916 +begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}),grmr_r:e=>{
917 +const n=e.regex,t=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,a=n.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),i=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,r=n.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/)
918 +;return{name:"R",keywords:{$pattern:t,
919 +keyword:"function if in break next repeat else for while",
920 +literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",
921 +built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"
922 +},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,
923 +starts:{end:n.lookahead(n.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),
924 +endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{
925 +scope:"variable",variants:[{match:t},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0
926 +}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]
927 +}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],
928 +variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/
929 +}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/
930 +}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/
931 +}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/
932 +}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/
933 +}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',
934 +relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{
935 +1:"operator",2:"number"},match:[i,a]},{scope:{1:"operator",2:"number"},
936 +match:[/%[^%]*%/,a]},{scope:{1:"punctuation",2:"number"},match:[r,a]},{scope:{
937 +2:"number"},match:[/[^a-zA-Z0-9._]|^/,a]}]},{scope:{3:"operator"},
938 +match:[t,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:i},{
939 +match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:r},{begin:"`",end:"`",
940 +contains:[{begin:/\\./}]}]}},grmr_ruby:e=>{
941 +const n=e.regex,t="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",a=n.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),i=n.concat(a,/(::\w+)*/),r={
942 +"variable.constant":["__FILE__","__LINE__","__ENCODING__"],
943 +"variable.language":["self","super"],
944 +keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield","include","extend","prepend","public","private","protected","raise","throw"],
945 +built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],
946 +literal:["true","false","nil"]},s={className:"doctag",begin:"@[A-Za-z]+"},o={
947 +begin:"#<",end:">"},l=[e.COMMENT("#","$",{contains:[s]
948 +}),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10
949 +}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],c={className:"subst",begin:/#\{/,
950 +end:/\}/,keywords:r},d={className:"string",contains:[e.BACKSLASH_ESCAPE,c],
951 +variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{
952 +begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{
953 +begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,
954 +end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{
955 +begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{
956 +begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{
957 +begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{
958 +begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{
959 +begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),
960 +contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,
961 +contains:[e.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",u={className:"number",
962 +relevance:0,variants:[{
963 +begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{
964 +begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"
965 +},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{
966 +begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{
967 +begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{
968 +className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,
969 +keywords:r}]},m=[d,{variants:[{match:[/class\s+/,i,/\s+<\s+/,i]},{
970 +match:[/\b(class|module)\s+/,i]}],scope:{2:"title.class",
971 +4:"title.class.inherited"},keywords:r},{match:[/(include|extend)\s+/,i],scope:{
972 +2:"title.class"},keywords:r},{relevance:0,match:[i,/\.new[. (]/],scope:{
973 +1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
974 +className:"variable.constant"},{relevance:0,match:a,scope:"title.class"},{
975 +match:[/def/,/\s+/,t],scope:{1:"keyword",3:"title.function"},contains:[b]},{
976 +begin:e.IDENT_RE+"::"},{className:"symbol",
977 +begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",
978 +begin:":(?!\\s)",contains:[d,{begin:t}],relevance:0},u,{className:"variable",
979 +begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{
980 +className:"params",begin:/\|/,end:/\|/,excludeBegin:!0,excludeEnd:!0,
981 +relevance:0,keywords:r},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",
982 +keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],
983 +illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{
984 +begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",
985 +end:"\\][a-z]*"}]}].concat(o,l),relevance:0}].concat(o,l)
986 +;c.contains=m,b.contains=m;const p=[{begin:/^\s*=>/,starts:{end:"$",contains:m}
987 +},{className:"meta.prompt",
988 +begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",
989 +starts:{end:"$",keywords:r,contains:m}}];return l.unshift(o),{name:"Ruby",
990 +aliases:["rb","gemspec","podspec","thor","irb"],keywords:r,illegal:/\/\*/,
991 +contains:[e.SHEBANG({binary:"ruby"})].concat(p).concat(l).concat(m)}},
992 +grmr_rust:e=>{const n=e.regex,t={className:"title.function.invoke",relevance:0,
993 +begin:n.concat(/\b/,/(?!let|for|while|if|else|match\b)/,e.IDENT_RE,n.lookahead(/\s*\(/))
994 +},a="([ui](8|16|32|64|128|size)|f(32|64))?",i=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],r=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"]
995 +;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:r,
996 +keyword:["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","unsafe","unsized","use","virtual","where","while","yield"],
997 +literal:["true","false","Some","None","Ok","Err"],built_in:i},illegal:"</",
998 +contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]
999 +}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{
1000 +className:"string",variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{
1001 +begin:/b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/}]},{className:"symbol",
1002 +begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:"number",variants:[{
1003 +begin:"\\b0b([01_]+)"+a},{begin:"\\b0o([0-7_]+)"+a},{
1004 +begin:"\\b0x([A-Fa-f0-9_]+)"+a},{
1005 +begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+a}],relevance:0},{
1006 +begin:[/fn/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",
1007 +3:"title.function"}},{className:"meta",begin:"#!?\\[",end:"\\]",contains:[{
1008 +className:"string",begin:/"/,end:/"/}]},{
1009 +begin:[/let/,/\s+/,/(?:mut\s+)?/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",
1010 +3:"keyword",4:"variable"}},{
1011 +begin:[/for/,/\s+/,e.UNDERSCORE_IDENT_RE,/\s+/,/in/],className:{1:"keyword",
1012 +3:"variable",5:"keyword"}},{begin:[/type/,/\s+/,e.UNDERSCORE_IDENT_RE],
1013 +className:{1:"keyword",3:"title.class"}},{
1014 +begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,e.UNDERSCORE_IDENT_RE],
1015 +className:{1:"keyword",3:"title.class"}},{begin:e.IDENT_RE+"::",keywords:{
1016 +keyword:"Self",built_in:i,type:r}},{className:"punctuation",begin:"->"},t]}},
1017 +grmr_scss:e=>{const n=ie(e),t=le,a=oe,i="@[a-z-]+",r={className:"variable",
1018 +begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",relevance:0};return{name:"SCSS",
1019 +case_insensitive:!0,illegal:"[=/|']",
1020 +contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n.CSS_NUMBER_MODE,{
1021 +className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{
1022 +className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0
1023 +},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",
1024 +begin:"\\b("+re.join("|")+")\\b",relevance:0},{className:"selector-pseudo",
1025 +begin:":("+a.join("|")+")"},{className:"selector-pseudo",
1026 +begin:":(:)?("+t.join("|")+")"},r,{begin:/\(/,end:/\)/,
1027 +contains:[n.CSS_NUMBER_MODE]},n.CSS_VARIABLE,{className:"attribute",
1028 +begin:"\\b("+ce.join("|")+")\\b"},{
1029 +begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"
1030 +},{begin:/:/,end:/[;}{]/,relevance:0,
1031 +contains:[n.BLOCK_COMMENT,r,n.HEXCOLOR,n.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.IMPORTANT,n.FUNCTION_DISPATCH]
1032 +},{begin:"@(page|font-face)",keywords:{$pattern:i,keyword:"@page @font-face"}},{
1033 +begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,
1034 +keyword:"and or not only",attribute:se.join(" ")},contains:[{begin:i,
1035 +className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"
1036 +},r,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.HEXCOLOR,n.CSS_NUMBER_MODE]
1037 +},n.FUNCTION_DISPATCH]}},grmr_shell:e=>({name:"Shell Session",
1038 +aliases:["console","shellsession"],contains:[{className:"meta.prompt",
1039 +begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,
1040 +subLanguage:"bash"}}]}),grmr_sql:e=>{
1041 +const n=e.regex,t=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],r=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],s=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],o=r,l=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!r.includes(e))),c={
1042 +begin:n.concat(/\b/,n.either(...o),/\s*\(/),relevance:0,keywords:{built_in:o}}
1043 +;return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{
1044 +$pattern:/\b[\w\.]+/,keyword:((e,{exceptions:n,when:t}={})=>{const a=t
1045 +;return n=n||[],e.map((e=>e.match(/\|\d+$/)||n.includes(e)?e:a(e)?e+"|0":e))
1046 +})(l,{when:e=>e.length<3}),literal:a,type:i,
1047 +built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]
1048 +},contains:[{begin:n.either(...s),relevance:0,keywords:{$pattern:/[\w\.]+/,
1049 +keyword:l.concat(s),literal:a,type:i}},{className:"type",
1050 +begin:n.either("double precision","large object","with timezone","without timezone")
1051 +},c,{className:"variable",begin:/@[a-z0-9][a-z0-9_]*/},{className:"string",
1052 +variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,
1053 +contains:[{begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{
1054 +className:"operator",begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,
1055 +relevance:0}]}},grmr_swift:e=>{const n={match:/\s+/,relevance:0
1056 +},t=e.COMMENT("/\\*","\\*/",{contains:["self"]}),a=[e.C_LINE_COMMENT_MODE,t],i={
1057 +match:[/\./,m(...xe,...Me)],className:{2:"keyword"}},r={match:b(/\./,m(...Ae)),
1058 +relevance:0},s=Ae.filter((e=>"string"==typeof e)).concat(["_|0"]),o={variants:[{
1059 +className:"keyword",
1060 +match:m(...Ae.filter((e=>"string"!=typeof e)).concat(Se).map(ke),...Me)}]},l={
1061 +$pattern:m(/\b\w+/,/#\w+/),keyword:s.concat(Re),literal:Ce},c=[i,r,o],g=[{
1062 +match:b(/\./,m(...De)),relevance:0},{className:"built_in",
1063 +match:b(/\b/,m(...De),/(?=\()/)}],u={match:/->/,relevance:0},p=[u,{
1064 +className:"operator",relevance:0,variants:[{match:Be},{match:`\\.(\\.|${Le})+`}]
1065 +}],_="([0-9]_*)+",h="([0-9a-fA-F]_*)+",f={className:"number",relevance:0,
1066 +variants:[{match:`\\b(${_})(\\.(${_}))?([eE][+-]?(${_}))?\\b`},{
1067 +match:`\\b0x(${h})(\\.(${h}))?([pP][+-]?(${_}))?\\b`},{match:/\b0o([0-7]_*)+\b/
1068 +},{match:/\b0b([01]_*)+\b/}]},E=(e="")=>({className:"subst",variants:[{
1069 +match:b(/\\/,e,/[0\\tnr"']/)},{match:b(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]
1070 +}),y=(e="")=>({className:"subst",match:b(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)
1071 +}),N=(e="")=>({className:"subst",label:"interpol",begin:b(/\\/,e,/\(/),end:/\)/
1072 +}),w=(e="")=>({begin:b(e,/"""/),end:b(/"""/,e),contains:[E(e),y(e),N(e)]
1073 +}),v=(e="")=>({begin:b(e,/"/),end:b(/"/,e),contains:[E(e),N(e)]}),O={
1074 +className:"string",
1075 +variants:[w(),w("#"),w("##"),w("###"),v(),v("#"),v("##"),v("###")]
1076 +},k=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,
1077 +contains:[e.BACKSLASH_ESCAPE]}],x={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,
1078 +contains:k},M=e=>{const n=b(e,/\//),t=b(/\//,e);return{begin:n,end:t,
1079 +contains:[...k,{scope:"comment",begin:`#(?!.*${t})`,end:/$/}]}},S={
1080 +scope:"regexp",variants:[M("###"),M("##"),M("#"),x]},A={match:b(/`/,Fe,/`/)
1081 +},C=[A,{className:"variable",match:/\$\d+/},{className:"variable",
1082 +match:`\\$${ze}+`}],T=[{match:/(@|#(un)?)available/,scope:"keyword",starts:{
1083 +contains:[{begin:/\(/,end:/\)/,keywords:Pe,contains:[...p,f,O]}]}},{
1084 +scope:"keyword",match:b(/@/,m(...je))},{scope:"meta",match:b(/@/,Fe)}],R={
1085 +match:d(/\b[A-Z]/),relevance:0,contains:[{className:"type",
1086 +match:b(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,ze,"+")
1087 +},{className:"type",match:Ue,relevance:0},{match:/[?!]+/,relevance:0},{
1088 +match:/\.\.\./,relevance:0},{match:b(/\s+&\s+/,d(Ue)),relevance:0}]},D={
1089 +begin:/</,end:/>/,keywords:l,contains:[...a,...c,...T,u,R]};R.contains.push(D)
1090 +;const I={begin:/\(/,end:/\)/,relevance:0,keywords:l,contains:["self",{
1091 +match:b(Fe,/\s*:/),keywords:"_|0",relevance:0
1092 +},...a,S,...c,...g,...p,f,O,...C,...T,R]},L={begin:/</,end:/>/,
1093 +keywords:"repeat each",contains:[...a,R]},B={begin:/\(/,end:/\)/,keywords:l,
1094 +contains:[{begin:m(d(b(Fe,/\s*:/)),d(b(Fe,/\s+/,Fe,/\s*:/))),end:/:/,
1095 +relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",
1096 +match:Fe}]},...a,...c,...p,f,O,...T,R,I],endsParent:!0,illegal:/["']/},$={
1097 +match:[/(func|macro)/,/\s+/,m(A.match,Fe,Be)],className:{1:"keyword",
1098 +3:"title.function"},contains:[L,B,n],illegal:[/\[/,/%/]},z={
1099 +match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},
1100 +contains:[L,B,n],illegal:/\[|%/},F={match:[/operator/,/\s+/,Be],className:{
1101 +1:"keyword",3:"title"}},U={begin:[/precedencegroup/,/\s+/,Ue],className:{
1102 +1:"keyword",3:"title"},contains:[R],keywords:[...Te,...Ce],end:/}/}
1103 +;for(const e of O.variants){const n=e.contains.find((e=>"interpol"===e.label))
1104 +;n.keywords=l;const t=[...c,...g,...p,f,O,...C];n.contains=[...t,{begin:/\(/,
1105 +end:/\)/,contains:["self",...t]}]}return{name:"Swift",keywords:l,
1106 +contains:[...a,$,z,{beginKeywords:"struct protocol class extension enum actor",
1107 +end:"\\{",excludeEnd:!0,keywords:l,contains:[e.inherit(e.TITLE_MODE,{
1108 +className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...c]
1109 +},F,U,{beginKeywords:"import",end:/$/,contains:[...a],relevance:0
1110 +},S,...c,...g,...p,f,O,...C,...T,R,I]}},grmr_typescript:e=>{
1111 +const n=Oe(e),t=_e,a=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],i={
1112 +beginKeywords:"namespace",end:/\{/,excludeEnd:!0,
1113 +contains:[n.exports.CLASS_REFERENCE]},r={beginKeywords:"interface",end:/\{/,
1114 +excludeEnd:!0,keywords:{keyword:"interface extends",built_in:a},
1115 +contains:[n.exports.CLASS_REFERENCE]},s={$pattern:_e,
1116 +keyword:he.concat(["type","namespace","interface","public","private","protected","implements","declare","abstract","readonly","enum","override"]),
1117 +literal:fe,built_in:ve.concat(a),"variable.language":we},o={className:"meta",
1118 +begin:"@"+t},l=(e,n,t)=>{const a=e.contains.findIndex((e=>e.label===n))
1119 +;if(-1===a)throw Error("can not find mode to replace");e.contains.splice(a,1,t)}
1120 +;return Object.assign(n.keywords,s),
1121 +n.exports.PARAMS_CONTAINS.push(o),n.contains=n.contains.concat([o,i,r]),
1122 +l(n,"shebang",e.SHEBANG()),l(n,"use_strict",{className:"meta",relevance:10,
1123 +begin:/^\s*['"]use strict['"]/
1124 +}),n.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(n,{
1125 +name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),n},grmr_vbnet:e=>{
1126 +const n=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,r=/\d{1,2}(:\d{1,2}){1,2}/,s={
1127 +className:"literal",variants:[{begin:n.concat(/# */,n.either(a,t),/ *#/)},{
1128 +begin:n.concat(/# */,r,/ *#/)},{begin:n.concat(/# */,i,/ *#/)},{
1129 +begin:n.concat(/# */,n.either(a,t),/ +/,n.either(i,r),/ *#/)}]
1130 +},o=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]
1131 +}),l=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]})
1132 +;return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,
1133 +classNameAliases:{label:"symbol"},keywords:{
1134 +keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",
1135 +built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",
1136 +type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",
1137 +literal:"true false nothing"},
1138 +illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{
1139 +className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,
1140 +end:/"/,illegal:/\n/,contains:[{begin:/""/}]},s,{className:"number",relevance:0,
1141 +variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
1142 +},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{
1143 +begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{
1144 +className:"label",begin:/^\w+:/},o,l,{className:"meta",
1145 +begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,
1146 +end:/$/,keywords:{
1147 +keyword:"const disable else elseif enable end externalsource if region then"},
1148 +contains:[l]}]}},grmr_wasm:e=>{e.regex;const n=e.COMMENT(/\(;/,/;\)/)
1149 +;return n.contains.push("self"),{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,
1150 +keyword:["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"]
1151 +},contains:[e.COMMENT(/;;/,/$/),n,{match:[/(?:offset|align)/,/\s*/,/=/],
1152 +className:{1:"keyword",3:"operator"}},{className:"variable",begin:/\$[\w_]+/},{
1153 +match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},{
1154 +begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",
1155 +3:"title.function"}},e.QUOTE_STRING_MODE,{match:/(i32|i64|f32|f64)(?!\.)/,
1156 +className:"type"},{className:"keyword",
1157 +match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/
1158 +},{className:"number",relevance:0,
1159 +match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/
1160 +}]}},grmr_xml:e=>{
1161 +const n=e.regex,t=n.concat(/[\p{L}_]/u,n.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),a={
1162 +className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\s/,
1163 +contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
1164 +},r=e.inherit(i,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{
1165 +className:"string"}),o=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),l={
1166 +endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",
1167 +begin:/[\p{L}0-9._:-]+/u,relevance:0},{begin:/=\s*/,relevance:0,contains:[{
1168 +className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[a]},{
1169 +begin:/'/,end:/'/,contains:[a]},{begin:/[^\s"'=<>`]+/}]}]}]};return{
1170 +name:"HTML, XML",
1171 +aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
1172 +case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,
1173 +end:/>/,relevance:10,contains:[i,o,s,r,{begin:/\[/,end:/\]/,contains:[{
1174 +className:"meta",begin:/<![a-z]/,end:/>/,contains:[i,r,o,s]}]}]
1175 +},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,
1176 +relevance:10},a,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,
1177 +relevance:10,contains:[o]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",
1178 +begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[l],starts:{
1179 +end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
1180 +begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[l],starts:{
1181 +end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
1182 +className:"tag",begin:/<>|<\/>/},{className:"tag",
1183 +begin:n.concat(/</,n.lookahead(n.concat(t,n.either(/\/>/,/>/,/\s/)))),
1184 +end:/\/?>/,contains:[{className:"name",begin:t,relevance:0,starts:l}]},{
1185 +className:"tag",begin:n.concat(/<\//,n.lookahead(n.concat(t,/>/))),contains:[{
1186 +className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}
1187 +},grmr_yaml:e=>{
1188 +const n="true false yes no null",t="[\\w#;/?:@&=+$,.~*'()[\\]]+",a={
1189 +className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/
1190 +},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",
1191 +variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(a,{
1192 +variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),r={
1193 +end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},s={begin:/\{/,
1194 +end:/\}/,contains:[r],illegal:"\\n",relevance:0},o={begin:"\\[",end:"\\]",
1195 +contains:[r],illegal:"\\n",relevance:0},l=[{className:"attr",variants:[{
1196 +begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{
1197 +begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",
1198 +relevance:10},{className:"string",
1199 +begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{
1200 +begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,
1201 +relevance:0},{className:"type",begin:"!\\w+!"+t},{className:"type",
1202 +begin:"!<"+t+">"},{className:"type",begin:"!"+t},{className:"type",begin:"!!"+t
1203 +},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",
1204 +begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",
1205 +relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{
1206 +className:"number",
1207 +begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"
1208 +},{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},s,o,a],c=[...l]
1209 +;return c.pop(),c.push(i),r.contains=c,{name:"YAML",case_insensitive:!0,
1210 +aliases:["yml"],contains:l}}});const He=ae;for(const e of Object.keys(Ke)){
1211 +const n=e.replace("grmr_","").replace("_","-");He.registerLanguage(n,Ke[e])}
1212 +return He}()
1213 +;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);
\ No newline at end of file
added public/vendor/hljs-github.min.css +10 −0
@@ -0,0 +1,10 @@
1 +pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
2 + Theme: GitHub
3 + Description: Light theme as seen on github.com
4 + Author: github.com
5 + Maintainer: @Hirse
6 + Updated: 2021-05-15
7 +
8 + Outdated base version: https://github.com/primer/github-syntax-light
9 + Current colors taken from GitHub's CSS
10 +*/.hljs{color:#24292e;background:#fff}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#d73a49}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#6f42c1}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#005cc5}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#032f62}.hljs-built_in,.hljs-symbol{color:#e36209}.hljs-code,.hljs-comment,.hljs-formula{color:#6a737d}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#22863a}.hljs-subst{color:#24292e}.hljs-section{color:#005cc5;font-weight:700}.hljs-bullet{color:#735c0f}.hljs-emphasis{color:#24292e;font-style:italic}.hljs-strong{color:#24292e;font-weight:700}.hljs-addition{color:#22863a;background-color:#f0fff4}.hljs-deletion{color:#b31d28;background-color:#ffeef0}
\ No newline at end of file
added public/vendor/marked.min.js +6 −0
@@ -0,0 +1,6 @@
1 +/**
2 + * marked v12.0.2 - a markdown parser
3 + * Copyright (c) 2011-2024, Christopher Jeffrey. (MIT Licensed)
4 + * https://github.com/markedjs/marked
5 + */
6 +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).marked={})}(this,(function(e){"use strict";function t(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}function n(t){e.defaults=t}e.defaults={async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null};const s=/[&<>"']/,r=new RegExp(s.source,"g"),i=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,l=new RegExp(i.source,"g"),o={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},a=e=>o[e];function c(e,t){if(t){if(s.test(e))return e.replace(r,a)}else if(i.test(e))return e.replace(l,a);return e}const h=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function p(e){return e.replace(h,((e,t)=>"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""))}const u=/(^|[^\[])\^/g;function k(e,t){let n="string"==typeof e?e:e.source;t=t||"";const s={replace:(e,t)=>{let r="string"==typeof t?t:t.source;return r=r.replace(u,"$1"),n=n.replace(e,r),s},getRegex:()=>new RegExp(n,t)};return s}function g(e){try{e=encodeURI(e).replace(/%25/g,"%")}catch(e){return null}return e}const f={exec:()=>null};function d(e,t){const n=e.replace(/\|/g,((e,t,n)=>{let s=!1,r=t;for(;--r>=0&&"\\"===n[r];)s=!s;return s?"|":" |"})).split(/ \|/);let s=0;if(n[0].trim()||n.shift(),n.length>0&&!n[n.length-1].trim()&&n.pop(),t)if(n.length>t)n.splice(t);else for(;n.length<t;)n.push("");for(;s<n.length;s++)n[s]=n[s].trim().replace(/\\\|/g,"|");return n}function x(e,t,n){const s=e.length;if(0===s)return"";let r=0;for(;r<s;){const i=e.charAt(s-r-1);if(i!==t||n){if(i===t||!n)break;r++}else r++}return e.slice(0,s-r)}function b(e,t,n,s){const r=t.href,i=t.title?c(t.title):null,l=e[1].replace(/\\([\[\]])/g,"$1");if("!"!==e[0].charAt(0)){s.state.inLink=!0;const e={type:"link",raw:n,href:r,title:i,text:l,tokens:s.inlineTokens(l)};return s.state.inLink=!1,e}return{type:"image",raw:n,href:r,title:i,text:c(l)}}class w{options;rules;lexer;constructor(t){this.options=t||e.defaults}space(e){const t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){const t=this.rules.block.code.exec(e);if(t){const e=t[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?e:x(e,"\n")}}}fences(e){const t=this.rules.block.fences.exec(e);if(t){const e=t[0],n=function(e,t){const n=e.match(/^(\s+)(?:```)/);if(null===n)return t;const s=n[1];return t.split("\n").map((e=>{const t=e.match(/^\s+/);if(null===t)return e;const[n]=t;return n.length>=s.length?e.slice(s.length):e})).join("\n")}(e,t[3]||"");return{type:"code",raw:e,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:n}}}heading(e){const t=this.rules.block.heading.exec(e);if(t){let e=t[2].trim();if(/#$/.test(e)){const t=x(e,"#");this.options.pedantic?e=t.trim():t&&!/ $/.test(t)||(e=t.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:e,tokens:this.lexer.inline(e)}}}hr(e){const t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:t[0]}}blockquote(e){const t=this.rules.block.blockquote.exec(e);if(t){let e=t[0].replace(/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,"\n $1");e=x(e.replace(/^ *>[ \t]?/gm,""),"\n");const n=this.lexer.state.top;this.lexer.state.top=!0;const s=this.lexer.blockTokens(e);return this.lexer.state.top=n,{type:"blockquote",raw:t[0],tokens:s,text:e}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n=t[1].trim();const s=n.length>1,r={type:"list",raw:"",ordered:s,start:s?+n.slice(0,-1):"",loose:!1,items:[]};n=s?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=s?n:"[*+-]");const i=new RegExp(`^( {0,3}${n})((?:[\t ][^\\n]*)?(?:\\n|$))`);let l="",o="",a=!1;for(;e;){let n=!1;if(!(t=i.exec(e)))break;if(this.rules.block.hr.test(e))break;l=t[0],e=e.substring(l.length);let s=t[2].split("\n",1)[0].replace(/^\t+/,(e=>" ".repeat(3*e.length))),c=e.split("\n",1)[0],h=0;this.options.pedantic?(h=2,o=s.trimStart()):(h=t[2].search(/[^ ]/),h=h>4?1:h,o=s.slice(h),h+=t[1].length);let p=!1;if(!s&&/^ *$/.test(c)&&(l+=c+"\n",e=e.substring(c.length+1),n=!0),!n){const t=new RegExp(`^ {0,${Math.min(3,h-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ \t][^\\n]*)?(?:\\n|$))`),n=new RegExp(`^ {0,${Math.min(3,h-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),r=new RegExp(`^ {0,${Math.min(3,h-1)}}(?:\`\`\`|~~~)`),i=new RegExp(`^ {0,${Math.min(3,h-1)}}#`);for(;e;){const a=e.split("\n",1)[0];if(c=a,this.options.pedantic&&(c=c.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),r.test(c))break;if(i.test(c))break;if(t.test(c))break;if(n.test(e))break;if(c.search(/[^ ]/)>=h||!c.trim())o+="\n"+c.slice(h);else{if(p)break;if(s.search(/[^ ]/)>=4)break;if(r.test(s))break;if(i.test(s))break;if(n.test(s))break;o+="\n"+c}p||c.trim()||(p=!0),l+=a+"\n",e=e.substring(a.length+1),s=c.slice(h)}}r.loose||(a?r.loose=!0:/\n *\n *$/.test(l)&&(a=!0));let u,k=null;this.options.gfm&&(k=/^\[[ xX]\] /.exec(o),k&&(u="[ ] "!==k[0],o=o.replace(/^\[[ xX]\] +/,""))),r.items.push({type:"list_item",raw:l,task:!!k,checked:u,loose:!1,text:o,tokens:[]}),r.raw+=l}r.items[r.items.length-1].raw=l.trimEnd(),r.items[r.items.length-1].text=o.trimEnd(),r.raw=r.raw.trimEnd();for(let e=0;e<r.items.length;e++)if(this.lexer.state.top=!1,r.items[e].tokens=this.lexer.blockTokens(r.items[e].text,[]),!r.loose){const t=r.items[e].tokens.filter((e=>"space"===e.type)),n=t.length>0&&t.some((e=>/\n.*\n/.test(e.raw)));r.loose=n}if(r.loose)for(let e=0;e<r.items.length;e++)r.items[e].loose=!0;return r}}html(e){const t=this.rules.block.html.exec(e);if(t){return{type:"html",block:!0,raw:t[0],pre:"pre"===t[1]||"script"===t[1]||"style"===t[1],text:t[0]}}}def(e){const t=this.rules.block.def.exec(e);if(t){const e=t[1].toLowerCase().replace(/\s+/g," "),n=t[2]?t[2].replace(/^<(.*)>$/,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",s=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):t[3];return{type:"def",tag:e,raw:t[0],href:n,title:s}}}table(e){const t=this.rules.block.table.exec(e);if(!t)return;if(!/[:|]/.test(t[2]))return;const n=d(t[1]),s=t[2].replace(/^\||\| *$/g,"").split("|"),r=t[3]&&t[3].trim()?t[3].replace(/\n[ \t]*$/,"").split("\n"):[],i={type:"table",raw:t[0],header:[],align:[],rows:[]};if(n.length===s.length){for(const e of s)/^ *-+: *$/.test(e)?i.align.push("right"):/^ *:-+: *$/.test(e)?i.align.push("center"):/^ *:-+ *$/.test(e)?i.align.push("left"):i.align.push(null);for(const e of n)i.header.push({text:e,tokens:this.lexer.inline(e)});for(const e of r)i.rows.push(d(e,i.header.length).map((e=>({text:e,tokens:this.lexer.inline(e)}))));return i}}lheading(e){const t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:"="===t[2].charAt(0)?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){const t=this.rules.block.paragraph.exec(e);if(t){const e="\n"===t[1].charAt(t[1].length-1)?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:e,tokens:this.lexer.inline(e)}}}text(e){const t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){const t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:c(t[1])}}tag(e){const t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&/^<a /i.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&/^<\/a>/i.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){const t=this.rules.inline.link.exec(e);if(t){const e=t[2].trim();if(!this.options.pedantic&&/^</.test(e)){if(!/>$/.test(e))return;const t=x(e.slice(0,-1),"\\");if((e.length-t.length)%2==0)return}else{const e=function(e,t){if(-1===e.indexOf(t[1]))return-1;let n=0;for(let s=0;s<e.length;s++)if("\\"===e[s])s++;else if(e[s]===t[0])n++;else if(e[s]===t[1]&&(n--,n<0))return s;return-1}(t[2],"()");if(e>-1){const n=(0===t[0].indexOf("!")?5:4)+t[1].length+e;t[2]=t[2].substring(0,e),t[0]=t[0].substring(0,n).trim(),t[3]=""}}let n=t[2],s="";if(this.options.pedantic){const e=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(n);e&&(n=e[1],s=e[3])}else s=t[3]?t[3].slice(1,-1):"";return n=n.trim(),/^</.test(n)&&(n=this.options.pedantic&&!/>$/.test(e)?n.slice(1):n.slice(1,-1)),b(t,{href:n?n.replace(this.rules.inline.anyPunctuation,"$1"):n,title:s?s.replace(this.rules.inline.anyPunctuation,"$1"):s},t[0],this.lexer)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){const e=t[(n[2]||n[1]).replace(/\s+/g," ").toLowerCase()];if(!e){const e=n[0].charAt(0);return{type:"text",raw:e,text:e}}return b(n,e,n[0],this.lexer)}}emStrong(e,t,n=""){let s=this.rules.inline.emStrongLDelim.exec(e);if(!s)return;if(s[3]&&n.match(/[\p{L}\p{N}]/u))return;if(!(s[1]||s[2]||"")||!n||this.rules.inline.punctuation.exec(n)){const n=[...s[0]].length-1;let r,i,l=n,o=0;const a="*"===s[0][0]?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(a.lastIndex=0,t=t.slice(-1*e.length+n);null!=(s=a.exec(t));){if(r=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!r)continue;if(i=[...r].length,s[3]||s[4]){l+=i;continue}if((s[5]||s[6])&&n%3&&!((n+i)%3)){o+=i;continue}if(l-=i,l>0)continue;i=Math.min(i,i+l+o);const t=[...s[0]][0].length,a=e.slice(0,n+s.index+t+i);if(Math.min(n,i)%2){const e=a.slice(1,-1);return{type:"em",raw:a,text:e,tokens:this.lexer.inlineTokens(e)}}const c=a.slice(2,-2);return{type:"strong",raw:a,text:c,tokens:this.lexer.inlineTokens(c)}}}}codespan(e){const t=this.rules.inline.code.exec(e);if(t){let e=t[2].replace(/\n/g," ");const n=/[^ ]/.test(e),s=/^ /.test(e)&&/ $/.test(e);return n&&s&&(e=e.substring(1,e.length-1)),e=c(e,!0),{type:"codespan",raw:t[0],text:e}}}br(e){const t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){const t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){const t=this.rules.inline.autolink.exec(e);if(t){let e,n;return"@"===t[2]?(e=c(t[1]),n="mailto:"+e):(e=c(t[1]),n=e),{type:"link",raw:t[0],text:e,href:n,tokens:[{type:"text",raw:e,text:e}]}}}url(e){let t;if(t=this.rules.inline.url.exec(e)){let e,n;if("@"===t[2])e=c(t[0]),n="mailto:"+e;else{let s;do{s=t[0],t[0]=this.rules.inline._backpedal.exec(t[0])?.[0]??""}while(s!==t[0]);e=c(t[0]),n="www."===t[1]?"http://"+t[0]:t[0]}return{type:"link",raw:t[0],text:e,href:n,tokens:[{type:"text",raw:e,text:e}]}}}inlineText(e){const t=this.rules.inline.text.exec(e);if(t){let e;return e=this.lexer.state.inRawBlock?t[0]:c(t[0]),{type:"text",raw:t[0],text:e}}}}const m=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,y=/(?:[*+-]|\d{1,9}[.)])/,$=k(/^(?!bull |blockCode|fences|blockquote|heading|html)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html))+?)\n {0,3}(=+|-+) *(?:\n+|$)/).replace(/bull/g,y).replace(/blockCode/g,/ {4}/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).getRegex(),z=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,T=/(?!\s*\])(?:\\.|[^\[\]\\])+/,R=k(/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/).replace("label",T).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),_=k(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,y).getRegex(),A="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",S=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,I=k("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))","i").replace("comment",S).replace("tag",A).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),E=k(z).replace("hr",m).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",A).getRegex(),q={blockquote:k(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",E).getRegex(),code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,def:R,fences:/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,hr:m,html:I,lheading:$,list:_,newline:/^(?: *(?:\n|$))+/,paragraph:E,table:f,text:/^[^\n]+/},Z=k("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",m).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",A).getRegex(),L={...q,table:Z,paragraph:k(z).replace("hr",m).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Z).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",A).getRegex()},P={...q,html:k("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:\"[^\"]*\"|'[^']*'|\\s[^'\"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",S).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:f,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:k(z).replace("hr",m).replace("heading"," *#{1,6} *[^\n]").replace("lheading",$).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},Q=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,v=/^( {2,}|\\)\n(?!\s*$)/,B="\\p{P}\\p{S}",C=k(/^((?![*_])[\spunctuation])/,"u").replace(/punctuation/g,B).getRegex(),M=k(/^(?:\*+(?:((?!\*)[punct])|[^\s*]))|^_+(?:((?!_)[punct])|([^\s_]))/,"u").replace(/punct/g,B).getRegex(),O=k("^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)[punct](\\*+)(?=[\\s]|$)|[^punct\\s](\\*+)(?!\\*)(?=[punct\\s]|$)|(?!\\*)[punct\\s](\\*+)(?=[^punct\\s])|[\\s](\\*+)(?!\\*)(?=[punct])|(?!\\*)[punct](\\*+)(?!\\*)(?=[punct])|[^punct\\s](\\*+)(?=[^punct\\s])","gu").replace(/punct/g,B).getRegex(),D=k("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)[punct](_+)(?=[\\s]|$)|[^punct\\s](_+)(?!_)(?=[punct\\s]|$)|(?!_)[punct\\s](_+)(?=[^punct\\s])|[\\s](_+)(?!_)(?=[punct])|(?!_)[punct](_+)(?!_)(?=[punct])","gu").replace(/punct/g,B).getRegex(),j=k(/\\([punct])/,"gu").replace(/punct/g,B).getRegex(),H=k(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),U=k(S).replace("(?:--\x3e|$)","--\x3e").getRegex(),X=k("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",U).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),F=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,N=k(/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/).replace("label",F).replace("href",/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),G=k(/^!?\[(label)\]\[(ref)\]/).replace("label",F).replace("ref",T).getRegex(),J=k(/^!?\[(ref)\](?:\[\])?/).replace("ref",T).getRegex(),K={_backpedal:f,anyPunctuation:j,autolink:H,blockSkip:/\[[^[\]]*?\]\([^\(\)]*?\)|`[^`]*?`|<[^<>]*?>/g,br:v,code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,del:f,emStrongLDelim:M,emStrongRDelimAst:O,emStrongRDelimUnd:D,escape:Q,link:N,nolink:J,punctuation:C,reflink:G,reflinkSearch:k("reflink|nolink(?!\\()","g").replace("reflink",G).replace("nolink",J).getRegex(),tag:X,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,url:f},V={...K,link:k(/^!?\[(label)\]\((.*?)\)/).replace("label",F).getRegex(),reflink:k(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",F).getRegex()},W={...K,escape:k(Q).replace("])","~|])").getRegex(),url:k(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},Y={...W,br:k(v).replace("{2,}","*").getRegex(),text:k(W.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},ee={normal:q,gfm:L,pedantic:P},te={normal:K,gfm:W,breaks:Y,pedantic:V};class ne{tokens;options;state;tokenizer;inlineQueue;constructor(t){this.tokens=[],this.tokens.links=Object.create(null),this.options=t||e.defaults,this.options.tokenizer=this.options.tokenizer||new w,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};const n={block:ee.normal,inline:te.normal};this.options.pedantic?(n.block=ee.pedantic,n.inline=te.pedantic):this.options.gfm&&(n.block=ee.gfm,this.options.breaks?n.inline=te.breaks:n.inline=te.gfm),this.tokenizer.rules=n}static get rules(){return{block:ee,inline:te}}static lex(e,t){return new ne(t).lex(e)}static lexInline(e,t){return new ne(t).inlineTokens(e)}lex(e){e=e.replace(/\r\n|\r/g,"\n"),this.blockTokens(e,this.tokens);for(let e=0;e<this.inlineQueue.length;e++){const t=this.inlineQueue[e];this.inlineTokens(t.src,t.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,t=[]){let n,s,r,i;for(e=this.options.pedantic?e.replace(/\t/g," ").replace(/^ +$/gm,""):e.replace(/^( *)(\t+)/gm,((e,t,n)=>t+" ".repeat(n.length)));e;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some((s=>!!(n=s.call({lexer:this},e,t))&&(e=e.substring(n.raw.length),t.push(n),!0)))))if(n=this.tokenizer.space(e))e=e.substring(n.raw.length),1===n.raw.length&&t.length>0?t[t.length-1].raw+="\n":t.push(n);else if(n=this.tokenizer.code(e))e=e.substring(n.raw.length),s=t[t.length-1],!s||"paragraph"!==s.type&&"text"!==s.type?t.push(n):(s.raw+="\n"+n.raw,s.text+="\n"+n.text,this.inlineQueue[this.inlineQueue.length-1].src=s.text);else if(n=this.tokenizer.fences(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.heading(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.hr(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.blockquote(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.list(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.html(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.def(e))e=e.substring(n.raw.length),s=t[t.length-1],!s||"paragraph"!==s.type&&"text"!==s.type?this.tokens.links[n.tag]||(this.tokens.links[n.tag]={href:n.href,title:n.title}):(s.raw+="\n"+n.raw,s.text+="\n"+n.raw,this.inlineQueue[this.inlineQueue.length-1].src=s.text);else if(n=this.tokenizer.table(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.lheading(e))e=e.substring(n.raw.length),t.push(n);else{if(r=e,this.options.extensions&&this.options.extensions.startBlock){let t=1/0;const n=e.slice(1);let s;this.options.extensions.startBlock.forEach((e=>{s=e.call({lexer:this},n),"number"==typeof s&&s>=0&&(t=Math.min(t,s))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}if(this.state.top&&(n=this.tokenizer.paragraph(r)))s=t[t.length-1],i&&"paragraph"===s.type?(s.raw+="\n"+n.raw,s.text+="\n"+n.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=s.text):t.push(n),i=r.length!==e.length,e=e.substring(n.raw.length);else if(n=this.tokenizer.text(e))e=e.substring(n.raw.length),s=t[t.length-1],s&&"text"===s.type?(s.raw+="\n"+n.raw,s.text+="\n"+n.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=s.text):t.push(n);else if(e){const t="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(t);break}throw new Error(t)}}return this.state.top=!0,t}inline(e,t=[]){return this.inlineQueue.push({src:e,tokens:t}),t}inlineTokens(e,t=[]){let n,s,r,i,l,o,a=e;if(this.tokens.links){const e=Object.keys(this.tokens.links);if(e.length>0)for(;null!=(i=this.tokenizer.rules.inline.reflinkSearch.exec(a));)e.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(a=a.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(i=this.tokenizer.rules.inline.blockSkip.exec(a));)a=a.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;null!=(i=this.tokenizer.rules.inline.anyPunctuation.exec(a));)a=a.slice(0,i.index)+"++"+a.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;e;)if(l||(o=""),l=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some((s=>!!(n=s.call({lexer:this},e,t))&&(e=e.substring(n.raw.length),t.push(n),!0)))))if(n=this.tokenizer.escape(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.tag(e))e=e.substring(n.raw.length),s=t[t.length-1],s&&"text"===n.type&&"text"===s.type?(s.raw+=n.raw,s.text+=n.text):t.push(n);else if(n=this.tokenizer.link(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(n.raw.length),s=t[t.length-1],s&&"text"===n.type&&"text"===s.type?(s.raw+=n.raw,s.text+=n.text):t.push(n);else if(n=this.tokenizer.emStrong(e,a,o))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.codespan(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.br(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.del(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.autolink(e))e=e.substring(n.raw.length),t.push(n);else if(this.state.inLink||!(n=this.tokenizer.url(e))){if(r=e,this.options.extensions&&this.options.extensions.startInline){let t=1/0;const n=e.slice(1);let s;this.options.extensions.startInline.forEach((e=>{s=e.call({lexer:this},n),"number"==typeof s&&s>=0&&(t=Math.min(t,s))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}if(n=this.tokenizer.inlineText(r))e=e.substring(n.raw.length),"_"!==n.raw.slice(-1)&&(o=n.raw.slice(-1)),l=!0,s=t[t.length-1],s&&"text"===s.type?(s.raw+=n.raw,s.text+=n.text):t.push(n);else if(e){const t="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(t);break}throw new Error(t)}}else e=e.substring(n.raw.length),t.push(n);return t}}class se{options;constructor(t){this.options=t||e.defaults}code(e,t,n){const s=(t||"").match(/^\S*/)?.[0];return e=e.replace(/\n$/,"")+"\n",s?'<pre><code class="language-'+c(s)+'">'+(n?e:c(e,!0))+"</code></pre>\n":"<pre><code>"+(n?e:c(e,!0))+"</code></pre>\n"}blockquote(e){return`<blockquote>\n${e}</blockquote>\n`}html(e,t){return e}heading(e,t,n){return`<h${t}>${e}</h${t}>\n`}hr(){return"<hr>\n"}list(e,t,n){const s=t?"ol":"ul";return"<"+s+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"</"+s+">\n"}listitem(e,t,n){return`<li>${e}</li>\n`}checkbox(e){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph(e){return`<p>${e}</p>\n`}table(e,t){return t&&(t=`<tbody>${t}</tbody>`),"<table>\n<thead>\n"+e+"</thead>\n"+t+"</table>\n"}tablerow(e){return`<tr>\n${e}</tr>\n`}tablecell(e,t){const n=t.header?"th":"td";return(t.align?`<${n} align="${t.align}">`:`<${n}>`)+e+`</${n}>\n`}strong(e){return`<strong>${e}</strong>`}em(e){return`<em>${e}</em>`}codespan(e){return`<code>${e}</code>`}br(){return"<br>"}del(e){return`<del>${e}</del>`}link(e,t,n){const s=g(e);if(null===s)return n;let r='<a href="'+(e=s)+'"';return t&&(r+=' title="'+t+'"'),r+=">"+n+"</a>",r}image(e,t,n){const s=g(e);if(null===s)return n;let r=`<img src="${e=s}" alt="${n}"`;return t&&(r+=` title="${t}"`),r+=">",r}text(e){return e}}class re{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}html(e){return e}text(e){return e}link(e,t,n){return""+n}image(e,t,n){return""+n}br(){return""}}class ie{options;renderer;textRenderer;constructor(t){this.options=t||e.defaults,this.options.renderer=this.options.renderer||new se,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new re}static parse(e,t){return new ie(t).parse(e)}static parseInline(e,t){return new ie(t).parseInline(e)}parse(e,t=!0){let n="";for(let s=0;s<e.length;s++){const r=e[s];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[r.type]){const e=r,t=this.options.extensions.renderers[e.type].call({parser:this},e);if(!1!==t||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(e.type)){n+=t||"";continue}}switch(r.type){case"space":continue;case"hr":n+=this.renderer.hr();continue;case"heading":{const e=r;n+=this.renderer.heading(this.parseInline(e.tokens),e.depth,p(this.parseInline(e.tokens,this.textRenderer)));continue}case"code":{const e=r;n+=this.renderer.code(e.text,e.lang,!!e.escaped);continue}case"table":{const e=r;let t="",s="";for(let t=0;t<e.header.length;t++)s+=this.renderer.tablecell(this.parseInline(e.header[t].tokens),{header:!0,align:e.align[t]});t+=this.renderer.tablerow(s);let i="";for(let t=0;t<e.rows.length;t++){const n=e.rows[t];s="";for(let t=0;t<n.length;t++)s+=this.renderer.tablecell(this.parseInline(n[t].tokens),{header:!1,align:e.align[t]});i+=this.renderer.tablerow(s)}n+=this.renderer.table(t,i);continue}case"blockquote":{const e=r,t=this.parse(e.tokens);n+=this.renderer.blockquote(t);continue}case"list":{const e=r,t=e.ordered,s=e.start,i=e.loose;let l="";for(let t=0;t<e.items.length;t++){const n=e.items[t],s=n.checked,r=n.task;let o="";if(n.task){const e=this.renderer.checkbox(!!s);i?n.tokens.length>0&&"paragraph"===n.tokens[0].type?(n.tokens[0].text=e+" "+n.tokens[0].text,n.tokens[0].tokens&&n.tokens[0].tokens.length>0&&"text"===n.tokens[0].tokens[0].type&&(n.tokens[0].tokens[0].text=e+" "+n.tokens[0].tokens[0].text)):n.tokens.unshift({type:"text",text:e+" "}):o+=e+" "}o+=this.parse(n.tokens,i),l+=this.renderer.listitem(o,r,!!s)}n+=this.renderer.list(l,t,s);continue}case"html":{const e=r;n+=this.renderer.html(e.text,e.block);continue}case"paragraph":{const e=r;n+=this.renderer.paragraph(this.parseInline(e.tokens));continue}case"text":{let i=r,l=i.tokens?this.parseInline(i.tokens):i.text;for(;s+1<e.length&&"text"===e[s+1].type;)i=e[++s],l+="\n"+(i.tokens?this.parseInline(i.tokens):i.text);n+=t?this.renderer.paragraph(l):l;continue}default:{const e='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(e),"";throw new Error(e)}}}return n}parseInline(e,t){t=t||this.renderer;let n="";for(let s=0;s<e.length;s++){const r=e[s];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[r.type]){const e=this.options.extensions.renderers[r.type].call({parser:this},r);if(!1!==e||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(r.type)){n+=e||"";continue}}switch(r.type){case"escape":{const e=r;n+=t.text(e.text);break}case"html":{const e=r;n+=t.html(e.text);break}case"link":{const e=r;n+=t.link(e.href,e.title,this.parseInline(e.tokens,t));break}case"image":{const e=r;n+=t.image(e.href,e.title,e.text);break}case"strong":{const e=r;n+=t.strong(this.parseInline(e.tokens,t));break}case"em":{const e=r;n+=t.em(this.parseInline(e.tokens,t));break}case"codespan":{const e=r;n+=t.codespan(e.text);break}case"br":n+=t.br();break;case"del":{const e=r;n+=t.del(this.parseInline(e.tokens,t));break}case"text":{const e=r;n+=t.text(e.text);break}default:{const e='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(e),"";throw new Error(e)}}}return n}}class le{options;constructor(t){this.options=t||e.defaults}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}}class oe{defaults={async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null};options=this.setOptions;parse=this.#e(ne.lex,ie.parse);parseInline=this.#e(ne.lexInline,ie.parseInline);Parser=ie;Renderer=se;TextRenderer=re;Lexer=ne;Tokenizer=w;Hooks=le;constructor(...e){this.use(...e)}walkTokens(e,t){let n=[];for(const s of e)switch(n=n.concat(t.call(this,s)),s.type){case"table":{const e=s;for(const s of e.header)n=n.concat(this.walkTokens(s.tokens,t));for(const s of e.rows)for(const e of s)n=n.concat(this.walkTokens(e.tokens,t));break}case"list":{const e=s;n=n.concat(this.walkTokens(e.items,t));break}default:{const e=s;this.defaults.extensions?.childTokens?.[e.type]?this.defaults.extensions.childTokens[e.type].forEach((s=>{const r=e[s].flat(1/0);n=n.concat(this.walkTokens(r,t))})):e.tokens&&(n=n.concat(this.walkTokens(e.tokens,t)))}}return n}use(...e){const t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach((e=>{const n={...e};if(n.async=this.defaults.async||n.async||!1,e.extensions&&(e.extensions.forEach((e=>{if(!e.name)throw new Error("extension name required");if("renderer"in e){const n=t.renderers[e.name];t.renderers[e.name]=n?function(...t){let s=e.renderer.apply(this,t);return!1===s&&(s=n.apply(this,t)),s}:e.renderer}if("tokenizer"in e){if(!e.level||"block"!==e.level&&"inline"!==e.level)throw new Error("extension level must be 'block' or 'inline'");const n=t[e.level];n?n.unshift(e.tokenizer):t[e.level]=[e.tokenizer],e.start&&("block"===e.level?t.startBlock?t.startBlock.push(e.start):t.startBlock=[e.start]:"inline"===e.level&&(t.startInline?t.startInline.push(e.start):t.startInline=[e.start]))}"childTokens"in e&&e.childTokens&&(t.childTokens[e.name]=e.childTokens)})),n.extensions=t),e.renderer){const t=this.defaults.renderer||new se(this.defaults);for(const n in e.renderer){if(!(n in t))throw new Error(`renderer '${n}' does not exist`);if("options"===n)continue;const s=n,r=e.renderer[s],i=t[s];t[s]=(...e)=>{let n=r.apply(t,e);return!1===n&&(n=i.apply(t,e)),n||""}}n.renderer=t}if(e.tokenizer){const t=this.defaults.tokenizer||new w(this.defaults);for(const n in e.tokenizer){if(!(n in t))throw new Error(`tokenizer '${n}' does not exist`);if(["options","rules","lexer"].includes(n))continue;const s=n,r=e.tokenizer[s],i=t[s];t[s]=(...e)=>{let n=r.apply(t,e);return!1===n&&(n=i.apply(t,e)),n}}n.tokenizer=t}if(e.hooks){const t=this.defaults.hooks||new le;for(const n in e.hooks){if(!(n in t))throw new Error(`hook '${n}' does not exist`);if("options"===n)continue;const s=n,r=e.hooks[s],i=t[s];le.passThroughHooks.has(n)?t[s]=e=>{if(this.defaults.async)return Promise.resolve(r.call(t,e)).then((e=>i.call(t,e)));const n=r.call(t,e);return i.call(t,n)}:t[s]=(...e)=>{let n=r.apply(t,e);return!1===n&&(n=i.apply(t,e)),n}}n.hooks=t}if(e.walkTokens){const t=this.defaults.walkTokens,s=e.walkTokens;n.walkTokens=function(e){let n=[];return n.push(s.call(this,e)),t&&(n=n.concat(t.call(this,e))),n}}this.defaults={...this.defaults,...n}})),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return ne.lex(e,t??this.defaults)}parser(e,t){return ie.parse(e,t??this.defaults)}#e(e,t){return(n,s)=>{const r={...s},i={...this.defaults,...r};!0===this.defaults.async&&!1===r.async&&(i.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),i.async=!0);const l=this.#t(!!i.silent,!!i.async);if(null==n)return l(new Error("marked(): input parameter is undefined or null"));if("string"!=typeof n)return l(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));if(i.hooks&&(i.hooks.options=i),i.async)return Promise.resolve(i.hooks?i.hooks.preprocess(n):n).then((t=>e(t,i))).then((e=>i.hooks?i.hooks.processAllTokens(e):e)).then((e=>i.walkTokens?Promise.all(this.walkTokens(e,i.walkTokens)).then((()=>e)):e)).then((e=>t(e,i))).then((e=>i.hooks?i.hooks.postprocess(e):e)).catch(l);try{i.hooks&&(n=i.hooks.preprocess(n));let s=e(n,i);i.hooks&&(s=i.hooks.processAllTokens(s)),i.walkTokens&&this.walkTokens(s,i.walkTokens);let r=t(s,i);return i.hooks&&(r=i.hooks.postprocess(r)),r}catch(e){return l(e)}}}#t(e,t){return n=>{if(n.message+="\nPlease report this to https://github.com/markedjs/marked.",e){const e="<p>An error occurred:</p><pre>"+c(n.message+"",!0)+"</pre>";return t?Promise.resolve(e):e}if(t)return Promise.reject(n);throw n}}}const ae=new oe;function ce(e,t){return ae.parse(e,t)}ce.options=ce.setOptions=function(e){return ae.setOptions(e),ce.defaults=ae.defaults,n(ce.defaults),ce},ce.getDefaults=t,ce.defaults=e.defaults,ce.use=function(...e){return ae.use(...e),ce.defaults=ae.defaults,n(ce.defaults),ce},ce.walkTokens=function(e,t){return ae.walkTokens(e,t)},ce.parseInline=ae.parseInline,ce.Parser=ie,ce.parser=ie.parse,ce.Renderer=se,ce.TextRenderer=re,ce.Lexer=ne,ce.lexer=ne.lex,ce.Tokenizer=w,ce.Hooks=le,ce.parse=ce;const he=ce.options,pe=ce.setOptions,ue=ce.use,ke=ce.walkTokens,ge=ce.parseInline,fe=ce,de=ie.parse,xe=ne.lex;e.Hooks=le,e.Lexer=ne,e.Marked=oe,e.Parser=ie,e.Renderer=se,e.TextRenderer=re,e.Tokenizer=w,e.getDefaults=t,e.lexer=xe,e.marked=ce,e.options=he,e.parse=fe,e.parseInline=ge,e.parser=de,e.setOptions=pe,e.use=ue,e.walkTokens=ke}));
added server/perm-mcp.js +91 −0
@@ -0,0 +1,91 @@
1 +// perm-mcp — serveur MCP stdio minimal exposant l'outil `approve` utilisé par
2 +// `claude --permission-prompt-tool mcp__adminka__approve`. Chaque demande de
3 +// permission est relayée au backend admin-ka (long-poll HTTP local) qui la
4 +// transforme en carte Autoriser/Refuser dans le chat.
5 +import readline from 'node:readline';
6 +import dns from 'node:dns';
7 +
8 +const PERM_URL = process.env.ADMIN_KA_PERM_URL || 'http://127.0.0.1:3300/internal/perm';
9 +const PERM_TOKEN = process.env.ADMIN_KA_PERM_TOKEN || '';
10 +
11 +// fetch (undici) échoue sur les noms Bonjour .local qui résolvent en IPv6
12 +// link-local — on force la résolution IPv4 avant l'appel.
13 +async function resolvedPermUrl() {
14 + const u = new URL(PERM_URL);
15 + if (/^\d+\.\d+\.\d+\.\d+$/.test(u.hostname) || u.hostname === 'localhost') return PERM_URL;
16 + const { address } = await dns.promises.lookup(u.hostname, { family: 4 });
17 + u.hostname = address;
18 + return u.toString();
19 +}
20 +
21 +const rl = readline.createInterface({ input: process.stdin });
22 +
23 +function send(obj) {
24 + process.stdout.write(JSON.stringify(obj) + '\n');
25 +}
26 +
27 +rl.on('line', async (line) => {
28 + line = line.trim();
29 + if (!line) return;
30 + let msg;
31 + try { msg = JSON.parse(line); } catch { return; }
32 + const { id, method, params } = msg;
33 + if (method === 'initialize') {
34 + send({
35 + jsonrpc: '2.0', id,
36 + result: {
37 + protocolVersion: (params && params.protocolVersion) || '2024-11-05',
38 + capabilities: { tools: {} },
39 + serverInfo: { name: 'adminka', version: '1.0.0' },
40 + },
41 + });
42 + return;
43 + }
44 + if (method === 'notifications/initialized') return;
45 + if (method === 'ping') { send({ jsonrpc: '2.0', id, result: {} }); return; }
46 + if (method === 'tools/list') {
47 + send({
48 + jsonrpc: '2.0', id,
49 + result: {
50 + tools: [{
51 + name: 'approve',
52 + description: 'Demande de permission relayée à administration-ka.com',
53 + inputSchema: {
54 + type: 'object',
55 + properties: {
56 + tool_name: { type: 'string' },
57 + input: { type: 'object' },
58 + tool_use_id: { type: 'string' },
59 + },
60 + required: ['tool_name', 'input'],
61 + },
62 + }],
63 + },
64 + });
65 + return;
66 + }
67 + if (method === 'tools/call' && params && params.name === 'approve') {
68 + const args = params.arguments || {};
69 + let decision;
70 + try {
71 + const url = await resolvedPermUrl();
72 + const resp = await fetch(url, {
73 + method: 'POST',
74 + headers: { 'Content-Type': 'application/json' },
75 + body: JSON.stringify({ token: PERM_TOKEN, tool_name: args.tool_name, input: args.input, tool_use_id: args.tool_use_id }),
76 + });
77 + decision = await resp.json();
78 + if (decision.error) decision = { behavior: 'deny', message: 'Erreur backend: ' + decision.error };
79 + } catch (e) {
80 + decision = { behavior: 'deny', message: 'Backend admin-ka injoignable: ' + e.message };
81 + }
82 + send({
83 + jsonrpc: '2.0', id,
84 + result: { content: [{ type: 'text', text: JSON.stringify(decision) }] },
85 + });
86 + return;
87 + }
88 + if (id !== undefined) {
89 + send({ jsonrpc: '2.0', id, error: { code: -32601, message: 'method not found: ' + method } });
90 + }
91 +});
added server/server.js +534 −0
@@ -0,0 +1,534 @@
1 +// admin-ka — backend : pont HTTP/WebSocket ⇄ Claude Code (stream-json) sur M3U96a
2 +import http from 'node:http';
3 +import crypto from 'node:crypto';
4 +import fs from 'node:fs';
5 +import path from 'node:path';
6 +import os from 'node:os';
7 +import { spawn } from 'node:child_process';
8 +import { fileURLToPath } from 'node:url';
9 +import { WebSocketServer } from 'ws';
10 +
11 +const __dirname = path.dirname(fileURLToPath(import.meta.url));
12 +const APP_DIR = path.join(__dirname, '..');
13 +const DATA_DIR = path.join(APP_DIR, 'data');
14 +const TRANSCRIPTS_DIR = path.join(DATA_DIR, 'transcripts');
15 +const PUBLIC_DIR = path.join(APP_DIR, 'public');
16 +const HOME = os.homedir();
17 +
18 +fs.mkdirSync(TRANSCRIPTS_DIR, { recursive: true });
19 +
20 +// ---------- config ----------
21 +const CONFIG_PATH = path.join(DATA_DIR, 'config.json');
22 +if (!fs.existsSync(CONFIG_PATH)) {
23 + console.error('config.json manquant — exécuter: npm run set-password -- <motdepasse>');
24 + process.exit(1);
25 +}
26 +const config = JSON.parse(fs.readFileSync(CONFIG_PATH, 'utf8'));
27 +const PORT = config.port || 3300;
28 +const CLAUDE_BIN = config.claudeBin || '/opt/homebrew/bin/claude';
29 +const NODE_BIN = config.nodeBin || '/opt/homebrew/bin/node';
30 +
31 +// clé API Anthropic pour claude headless (depuis ~/.claude/.env)
32 +function loadAnthropicKey() {
33 + try {
34 + const envFile = fs.readFileSync(path.join(HOME, '.claude', '.env'), 'utf8');
35 + const m = envFile.match(/ANTHROPIC_API_KEY=(\S+)/);
36 + if (m) return m[1];
37 + } catch {}
38 + return process.env.ANTHROPIC_API_KEY || '';
39 +}
40 +const ANTHROPIC_API_KEY = loadAnthropicKey();
41 +
42 +// ---------- audit ----------
43 +const AUDIT_PATH = path.join(DATA_DIR, 'audit.jsonl');
44 +function audit(entry) {
45 + fs.appendFile(AUDIT_PATH, JSON.stringify({ ts: new Date().toISOString(), ...entry }) + '\n', () => {});
46 +}
47 +
48 +// ---------- sessions (auth) ----------
49 +const SESSIONS_PATH = path.join(DATA_DIR, 'sessions.json');
50 +let sessions = {};
51 +try { sessions = JSON.parse(fs.readFileSync(SESSIONS_PATH, 'utf8')); } catch {}
52 +function saveSessions() { fs.writeFileSync(SESSIONS_PATH, JSON.stringify(sessions)); }
53 +const SESSION_IDLE_MS = 7 * 24 * 3600 * 1000; // 7 jours d'inactivité
54 +const SESSION_MAX_MS = 30 * 24 * 3600 * 1000; // 30 jours absolu
55 +
56 +function verifyPassword(pw) {
57 + const hash = crypto.scryptSync(pw, Buffer.from(config.salt, 'hex'), 64).toString('hex');
58 + return crypto.timingSafeEqual(Buffer.from(hash), Buffer.from(config.passwordHash));
59 +}
60 +function newSession() {
61 + const token = crypto.randomBytes(32).toString('hex');
62 + sessions[token] = { created: Date.now(), last: Date.now() };
63 + saveSessions();
64 + return token;
65 +}
66 +function getSession(req) {
67 + const cookie = req.headers.cookie || '';
68 + const m = cookie.match(/(?:^|;\s*)akid=([a-f0-9]{64})/);
69 + if (!m) return null;
70 + const s = sessions[m[1]];
71 + if (!s) return null;
72 + const now = Date.now();
73 + if (now - s.last > SESSION_IDLE_MS || now - s.created > SESSION_MAX_MS) {
74 + delete sessions[m[1]]; saveSessions(); return null;
75 + }
76 + s.last = now;
77 + return m[1];
78 +}
79 +
80 +// rate limit login : 8 échecs / 15 min / IP
81 +const loginFails = new Map();
82 +function clientIp(req) {
83 + const xf = req.headers['x-forwarded-for'];
84 + return (xf ? String(xf).split(',')[0].trim() : req.socket.remoteAddress) || '?';
85 +}
86 +function loginAllowed(ip) {
87 + const rec = loginFails.get(ip);
88 + if (!rec) return true;
89 + if (Date.now() - rec.first > 15 * 60 * 1000) { loginFails.delete(ip); return true; }
90 + return rec.count < 8;
91 +}
92 +function loginFailed(ip) {
93 + const rec = loginFails.get(ip) || { first: Date.now(), count: 0 };
94 + rec.count++; loginFails.set(ip, rec);
95 +}
96 +
97 +// ---------- chats ----------
98 +const CHATS_PATH = path.join(DATA_DIR, 'chats.json');
99 +let chats = [];
100 +try { chats = JSON.parse(fs.readFileSync(CHATS_PATH, 'utf8')); } catch {}
101 +function saveChats() { fs.writeFileSync(CHATS_PATH, JSON.stringify(chats, null, 1)); }
102 +function getChat(id) { return chats.find(c => c.id === id); }
103 +function transcriptPath(id) { return path.join(TRANSCRIPTS_DIR, id.replace(/[^a-zA-Z0-9_-]/g, '') + '.jsonl'); }
104 +function appendTranscript(chatId, event) {
105 + fs.appendFile(transcriptPath(chatId), JSON.stringify(event) + '\n', () => {});
106 +}
107 +function readTranscript(chatId) {
108 + try {
109 + return fs.readFileSync(transcriptPath(chatId), 'utf8')
110 + .split('\n').filter(Boolean).map(l => { try { return JSON.parse(l); } catch { return null; } })
111 + .filter(Boolean);
112 + } catch { return []; }
113 +}
114 +
115 +// ---------- projets ----------
116 +// Doctrine remote-first Groupe Ka : chaque app KA se modifie DIRECTEMENT sur son
117 +// nœud de déploiement (repo de prod = source de vérité). Le backend lance donc
118 +// claude via SSH sur le bon nœud pour ces projets.
119 +const SELF_NODE = 'M3U96a';
120 +const SELF_LAN_HOST = config.selfLanHost || 'MacStudio-de-simon-pierre-2.local';
121 +// Uniquement les 12 apps du Groupe KA (demande utilisateur 2026-08-19).
122 +// node:null = app déployée sur M3U96a (exécution locale) ; sinon claude est
123 +// lancé via SSH sur le nœud de déploiement, dans le repo de prod.
124 +const PROJECTS = [
125 + { id: 'lou-ka@M3U96b', name: 'Lou·Ka', node: 'M3U96b', dir: '~/apps/lou-ka' },
126 + { id: 'immo-ka@M4M64a', name: 'Immo·Ka', node: 'M4M64a', dir: '~/apps/immo-ka' },
127 + { id: 'vrai-prix@M3U96a', name: 'Vrai-Prix', node: null, dir: path.join(HOME, 'apps', 'vrai-prix') },
128 + { id: 'valoplex@M3U96a', name: 'ValoPlex', node: null, dir: path.join(HOME, 'apps', 'valoplex') },
129 + { id: 'auto-ka@M4M64b', name: 'Auto·Ka', node: 'M4M64b', dir: '~/auto-ka' },
130 + { id: 'fabri-ka@M4M64a', name: 'Fabri·Ka', node: 'M4M64a', dir: '~/fabri-ka' },
131 + { id: 'food-ka@M4M64b', name: 'Food·Ka', node: 'M4M64b', dir: '~/apps/food-ka' },
132 + { id: 'resto-ka@M3U96b', name: 'Resto·Ka', node: 'M3U96b', dir: '~/apps/resto-ka' },
133 + { id: 'sorti-ka@M3U96a', name: 'Sorti·Ka', node: null, dir: path.join(HOME, 'apps', 'sorti-ka') },
134 + { id: 'crea-ka@M3U96b', name: 'Créa·Ka', node: 'M3U96b', dir: '~/apps/crea-ka' },
135 + { id: 'job-ka@M3U96a', name: 'Job·Ka', node: null, dir: path.join(HOME, 'apps', 'job-ka') },
136 + { id: 'trouve-ka@M2M32', name: 'Trouve·Ka', node: 'M2M32', dir: '~/trouve-ka' },
137 +];
138 +function listProjects() {
139 + return PROJECTS.map(p => ({ id: p.id, name: p.name + ' · ' + (p.node || SELF_NODE), node: p.node, dir: p.dir }));
140 +}
141 +function findProject(id) {
142 + return listProjects().find(p => p.id === id) || null;
143 +}
144 +
145 +// ---------- processus Claude en cours ----------
146 +// chatId -> { proc, buffer:'', permToken, killTimer }
147 +const running = new Map();
148 +// requestId -> { chatId, resolve, tool, input, timer }
149 +const pendingPerms = new Map();
150 +
151 +function broadcast(chatId, msg) {
152 + const data = JSON.stringify(msg);
153 + for (const ws of wss.clients) {
154 + if (ws.readyState === 1 && ws.chatId === chatId) ws.send(data);
155 + }
156 +}
157 +
158 +function emitAndLog(chatId, msg) {
159 + appendTranscript(chatId, msg);
160 + broadcast(chatId, msg);
161 +}
162 +
163 +const ALLOWED_READONLY = 'Read,Glob,Grep,LS,WebFetch,WebSearch,TodoWrite,NotebookRead,Task';
164 +
165 +// Doctrine Groupe KA imposée à chaque session lancée par la console
166 +const SYSTEM_APPEND = `RÈGLE OBLIGATOIRE (console administration-ka) : si tu as modifié des fichiers du projet pendant ce tour, tu DOIS avant de conclure : (1) rebuild si le projet a une étape de build ; (2) redéployer — pm2 restart <app> (ou le mécanisme en place) — et VÉRIFIER que l'app répond (healthcheck/port/site) ; (3) committer et pousser : git add + git commit + git push origin main — le remote origin est spbgit (git perso git.spboucher.ai), PAS GitHub. Ne termine jamais en laissant des modifications non commitées ou non redéployées. Si aucun fichier n'a été modifié, ignore cette règle.`;
167 +
168 +// quoting shell sûr pour la commande ssh distante
169 +const shq = (s) => `'` + String(s).replace(/'/g, `'\\''`) + `'`;
170 +
171 +function startClaude(chat, prompt, mode) {
172 + if (running.has(chat.id)) throw new Error('Une exécution est déjà en cours pour cette conversation.');
173 + const permToken = crypto.randomBytes(16).toString('hex');
174 + let proc;
175 +
176 + const baseArgs = ['-p', '--output-format', 'stream-json', '--verbose', '--include-partial-messages',
177 + '--append-system-prompt', SYSTEM_APPEND];
178 + if (chat.claudeSessionId) baseArgs.push('--resume', chat.claudeSessionId);
179 +
180 + if (!chat.node) {
181 + // --- exécution locale (projet sur M3U96a) ---
182 + const args = [...baseArgs];
183 + if (mode === 'auto') {
184 + args.push('--dangerously-skip-permissions');
185 + } else {
186 + const mcpCfg = {
187 + mcpServers: {
188 + adminka: {
189 + command: NODE_BIN,
190 + args: [path.join(__dirname, 'perm-mcp.js')],
191 + env: {
192 + ADMIN_KA_PERM_URL: `http://127.0.0.1:${PORT}/internal/perm`,
193 + ADMIN_KA_PERM_TOKEN: permToken,
194 + },
195 + },
196 + },
197 + };
198 + const cfgPath = path.join(DATA_DIR, `mcp-${chat.id}.json`);
199 + fs.writeFileSync(cfgPath, JSON.stringify(mcpCfg));
200 + args.push('--mcp-config', cfgPath);
201 + args.push('--permission-prompt-tool', 'mcp__adminka__approve');
202 + args.push('--allowedTools', ALLOWED_READONLY);
203 + }
204 + proc = spawn(CLAUDE_BIN, args, {
205 + cwd: chat.dir,
206 + env: {
207 + ...process.env,
208 + ANTHROPIC_API_KEY,
209 + PATH: '/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin',
210 + HOME,
211 + },
212 + stdio: ['pipe', 'pipe', 'pipe'],
213 + });
214 + } else {
215 + // --- exécution distante : claude tourne SUR le nœud de déploiement de l'app,
216 + // --- dans le repo de prod (source de vérité). Le prompt passe par stdin.
217 + // --- Les demandes de permission reviennent par un tunnel SSH inverse
218 + // --- (l'IPv4 LAN inter-nœuds n'est pas routée partout).
219 + const sshArgs = ['-o', 'BatchMode=yes', '-o', 'ConnectTimeout=15'];
220 + let cmd = 'exec /opt/homebrew/bin/claude ' + baseArgs.map(shq).join(' ');
221 + if (mode === 'auto') {
222 + cmd += ' --dangerously-skip-permissions';
223 + } else {
224 + const revPort = 21000 + Math.floor(Math.random() * 3000);
225 + sshArgs.push('-R', `127.0.0.1:${revPort}:127.0.0.1:${PORT}`);
226 + const mcpCfg = {
227 + mcpServers: {
228 + adminka: {
229 + command: '/opt/homebrew/bin/node',
230 + args: ['/Users/simon-pierreboucher/.adminka/perm-mcp.js'],
231 + env: {
232 + ADMIN_KA_PERM_URL: `http://127.0.0.1:${revPort}/internal/perm`,
233 + ADMIN_KA_PERM_TOKEN: permToken,
234 + },
235 + },
236 + },
237 + };
238 + const cfgFile = `/tmp/adminka-mcp-${permToken}.json`;
239 + cmd = `printf '%s' '${JSON.stringify(mcpCfg)}' > ${cfgFile} && ${cmd} --mcp-config ${cfgFile} --permission-prompt-tool mcp__adminka__approve --allowedTools '${ALLOWED_READONLY}'`;
240 + }
241 + const remoteCmd = [
242 + `cd ${chat.dir}`,
243 + 'export PATH=/opt/homebrew/bin:/usr/local/bin:$PATH',
244 + 'export $(cat ~/.claude/.env | xargs)',
245 + `echo $$ > /tmp/adminka-pid-${permToken}`,
246 + cmd,
247 + ].join(' && ');
248 + proc = spawn('ssh', [...sshArgs, chat.node, remoteCmd], {
249 + env: { ...process.env, PATH: '/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin', HOME },
250 + stdio: ['pipe', 'pipe', 'pipe'],
251 + });
252 + }
253 + proc.stdin.write(prompt);
254 + proc.stdin.end();
255 +
256 + const state = { proc, permToken, stderr: '', remote: chat.node || null };
257 + running.set(chat.id, state);
258 + audit({ kind: 'prompt', chatId: chat.id, project: chat.projectId, node: chat.node || SELF_NODE, dir: chat.dir, mode, prompt: prompt.slice(0, 2000) });
259 + emitAndLog(chat.id, { type: 'status', state: 'running' });
260 +
261 + let buf = '';
262 + proc.stdout.on('data', (d) => {
263 + buf += d.toString('utf8');
264 + let idx;
265 + while ((idx = buf.indexOf('\n')) >= 0) {
266 + const line = buf.slice(0, idx).trim();
267 + buf = buf.slice(idx + 1);
268 + if (!line) continue;
269 + let ev;
270 + try { ev = JSON.parse(line); } catch { continue; }
271 + handleClaudeEvent(chat, ev);
272 + }
273 + });
274 + proc.stderr.on('data', (d) => { state.stderr = (state.stderr + d.toString()).slice(-8000); });
275 + proc.on('close', (code) => {
276 + running.delete(chat.id);
277 + // refuser les permissions encore en attente pour ce chat
278 + for (const [rid, p] of pendingPerms) {
279 + if (p.chatId === chat.id) { p.resolve({ behavior: 'deny', message: 'Exécution terminée' }); pendingPerms.delete(rid); }
280 + }
281 + if (code !== 0 && code !== null) {
282 + emitAndLog(chat.id, { type: 'error', message: `claude a quitté (code ${code})\n${state.stderr.slice(-1500)}` });
283 + }
284 + emitAndLog(chat.id, { type: 'status', state: 'idle' });
285 + chat.updated = Date.now(); saveChats();
286 + });
287 + proc.on('error', (err) => {
288 + running.delete(chat.id);
289 + emitAndLog(chat.id, { type: 'error', message: 'Impossible de lancer claude: ' + err.message });
290 + emitAndLog(chat.id, { type: 'status', state: 'idle' });
291 + });
292 +}
293 +
294 +function handleClaudeEvent(chat, ev) {
295 + if (ev.type === 'system' && ev.subtype === 'init' && ev.session_id) {
296 + chat.claudeSessionId = ev.session_id;
297 + saveChats();
298 + }
299 + if (ev.type === 'assistant' && ev.message && Array.isArray(ev.message.content)) {
300 + for (const block of ev.message.content) {
301 + if (block.type === 'tool_use') {
302 + audit({ kind: 'tool_use', chatId: chat.id, tool: block.name, input: JSON.stringify(block.input || {}).slice(0, 1000) });
303 + }
304 + }
305 + }
306 + if (ev.type === 'result') {
307 + audit({ kind: 'result', chatId: chat.id, subtype: ev.subtype, cost: ev.total_cost_usd, duration_ms: ev.duration_ms, turns: ev.num_turns });
308 + chat.updated = Date.now(); saveChats();
309 + }
310 + // ne jamais persister les stream_event (volumineux, reconstruits depuis les messages complets)
311 + if (ev.type === 'stream_event') {
312 + broadcast(chat.id, { type: 'claude', event: ev });
313 + } else {
314 + emitAndLog(chat.id, { type: 'claude', event: ev });
315 + }
316 +}
317 +
318 +function interrupt(chatId) {
319 + const st = running.get(chatId);
320 + if (!st) return;
321 + audit({ kind: 'interrupt', chatId });
322 + if (st.remote) {
323 + spawn('ssh', ['-o', 'BatchMode=yes', st.remote, `kill -TERM $(cat /tmp/adminka-pid-${st.permToken} 2>/dev/null) 2>/dev/null; rm -f /tmp/adminka-pid-${st.permToken}`], {
324 + env: { ...process.env, HOME }, stdio: 'ignore',
325 + });
326 + }
327 + st.proc.kill('SIGTERM');
328 + setTimeout(() => { try { st.proc.kill('SIGKILL'); } catch {} }, 5000);
329 +}
330 +
331 +// ---------- HTTP ----------
332 +const MIME = { '.html': 'text/html; charset=utf-8', '.js': 'text/javascript; charset=utf-8', '.css': 'text/css; charset=utf-8', '.svg': 'image/svg+xml', '.png': 'image/png', '.ico': 'image/x-icon', '.json': 'application/json', '.woff2': 'font/woff2' };
333 +
334 +function readBody(req, limit = 512 * 1024) {
335 + return new Promise((resolve, reject) => {
336 + let data = '';
337 + req.on('data', (c) => { data += c; if (data.length > limit) { reject(new Error('body trop gros')); req.destroy(); } });
338 + req.on('end', () => resolve(data));
339 + req.on('error', reject);
340 + });
341 +}
342 +function json(res, code, obj) {
343 + res.writeHead(code, { 'Content-Type': 'application/json' });
344 + res.end(JSON.stringify(obj));
345 +}
346 +
347 +const server = http.createServer(async (req, res) => {
348 + const url = new URL(req.url, 'http://x');
349 + const p = url.pathname;
350 +
351 + if (p === '/healthz') { res.writeHead(200); return res.end('ok'); }
352 +
353 + // --- endpoint interne de permission (long-poll par perm-mcp.js) ---
354 + if (p === '/internal/perm' && req.method === 'POST') {
355 + // accessible depuis le LAN (perm-mcp des nœuds distants) — authentifié par le
356 + // token de run (32 hex aléatoires, valable seulement pendant l'exécution)
357 + let body;
358 + try { body = JSON.parse(await readBody(req)); } catch { return json(res, 400, { error: 'bad json' }); }
359 + let chatId = null;
360 + for (const [cid, st] of running) if (st.permToken === body.token) chatId = cid;
361 + if (!chatId) return json(res, 403, { error: 'bad token' });
362 + const requestId = crypto.randomBytes(8).toString('hex');
363 + const p2 = new Promise((resolve) => {
364 + const timer = setTimeout(() => {
365 + pendingPerms.delete(requestId);
366 + emitAndLog(chatId, { type: 'permission_resolved', requestId, allow: false, reason: 'timeout' });
367 + resolve({ behavior: 'deny', message: "Pas de réponse de l'utilisateur (timeout 10 min)" });
368 + }, 10 * 60 * 1000);
369 + pendingPerms.set(requestId, { chatId, resolve, timer, input: body.input });
370 + });
371 + audit({ kind: 'permission_request', chatId, tool: body.tool_name, input: JSON.stringify(body.input || {}).slice(0, 1000) });
372 + emitAndLog(chatId, { type: 'permission_request', requestId, tool: body.tool_name, input: body.input });
373 + const decision = await p2;
374 + return json(res, 200, decision);
375 + }
376 +
377 + // --- auth ---
378 + if (p === '/api/login' && req.method === 'POST') {
379 + const ip = clientIp(req);
380 + if (!loginAllowed(ip)) return json(res, 429, { error: 'Trop de tentatives — réessayer dans 15 minutes.' });
381 + let body;
382 + try { body = JSON.parse(await readBody(req)); } catch { return json(res, 400, { error: 'bad json' }); }
383 + if (typeof body.password !== 'string' || !verifyPassword(body.password)) {
384 + loginFailed(ip);
385 + audit({ kind: 'login_fail', ip });
386 + return json(res, 401, { error: 'Mot de passe invalide.' });
387 + }
388 + const token = newSession();
389 + audit({ kind: 'login_ok', ip });
390 + res.writeHead(200, {
391 + 'Content-Type': 'application/json',
392 + 'Set-Cookie': `akid=${token}; HttpOnly; Path=/; Max-Age=2592000; SameSite=Lax; Secure`,
393 + });
394 + return res.end(JSON.stringify({ ok: true }));
395 + }
396 + if (p === '/api/logout' && req.method === 'POST') {
397 + const t = getSession(req);
398 + if (t) { delete sessions[t]; saveSessions(); }
399 + res.writeHead(200, { 'Content-Type': 'application/json', 'Set-Cookie': 'akid=; HttpOnly; Path=/; Max-Age=0; SameSite=Lax; Secure' });
400 + return res.end(JSON.stringify({ ok: true }));
401 + }
402 +
403 + // --- API authentifiée ---
404 + if (p.startsWith('/api/')) {
405 + if (!getSession(req)) return json(res, 401, { error: 'auth' });
406 + if (p === '/api/me') return json(res, 200, { ok: true, host: os.hostname() });
407 + if (p === '/api/projects') return json(res, 200, { projects: listProjects() });
408 + if (p === '/api/chats' && req.method === 'GET') {
409 + const list = [...chats].sort((a, b) => (b.updated || 0) - (a.updated || 0)).slice(0, 100)
410 + .map(({ id, title, projectId, projectName, mode, updated, created }) => ({ id, title, projectId, projectName, mode, updated, created, running: running.has(id) }));
411 + return json(res, 200, { chats: list });
412 + }
413 + if (p.startsWith('/api/chats/') && req.method === 'DELETE') {
414 + const id = p.split('/')[3];
415 + const chat = getChat(id);
416 + if (chat && !running.has(id)) {
417 + chats = chats.filter(c => c.id !== id); saveChats();
418 + try { fs.unlinkSync(transcriptPath(id)); } catch {}
419 + return json(res, 200, { ok: true });
420 + }
421 + return json(res, 400, { error: 'introuvable ou en cours' });
422 + }
423 + return json(res, 404, { error: 'not found' });
424 + }
425 +
426 + // --- statique ---
427 + let file = p === '/' ? '/index.html' : p;
428 + file = path.normalize(file).replace(/^(\.\.[/\\])+/, '');
429 + const full = path.join(PUBLIC_DIR, file);
430 + if (!full.startsWith(PUBLIC_DIR)) { res.writeHead(403); return res.end(); }
431 + fs.readFile(full, (err, data) => {
432 + if (err) { res.writeHead(404); return res.end('not found'); }
433 + res.writeHead(200, { 'Content-Type': MIME[path.extname(full)] || 'application/octet-stream', 'Cache-Control': full.includes('/vendor/') ? 'public, max-age=86400' : 'no-cache' });
434 + res.end(data);
435 + });
436 +});
437 +
438 +// ---------- WebSocket ----------
439 +const wss = new WebSocketServer({ noServer: true });
440 +
441 +server.on('upgrade', (req, socket, head) => {
442 + const url = new URL(req.url, 'http://x');
443 + if (url.pathname !== '/ws' || !getSession(req)) {
444 + socket.write('HTTP/1.1 401 Unauthorized\r\n\r\n');
445 + return socket.destroy();
446 + }
447 + wss.handleUpgrade(req, socket, head, (ws) => wss.emit('connection', ws, req));
448 +});
449 +
450 +wss.on('connection', (ws) => {
451 + ws.chatId = null;
452 + ws.isAlive = true;
453 + ws.on('pong', () => { ws.isAlive = true; });
454 + ws.on('message', (raw) => {
455 + let msg;
456 + try { msg = JSON.parse(raw.toString()); } catch { return; }
457 + try { handleWsMessage(ws, msg); } catch (e) {
458 + ws.send(JSON.stringify({ type: 'error', message: e.message }));
459 + }
460 + });
461 +});
462 +
463 +setInterval(() => {
464 + for (const ws of wss.clients) {
465 + if (!ws.isAlive) { ws.terminate(); continue; }
466 + ws.isAlive = false; ws.ping();
467 + }
468 +}, 30000);
469 +
470 +function handleWsMessage(ws, msg) {
471 + if (msg.type === 'open') {
472 + const chat = getChat(msg.chatId);
473 + if (!chat) return ws.send(JSON.stringify({ type: 'error', message: 'Conversation introuvable' }));
474 + ws.chatId = chat.id;
475 + ws.send(JSON.stringify({
476 + type: 'history',
477 + chat: { id: chat.id, title: chat.title, projectId: chat.projectId, projectName: chat.projectName, mode: chat.mode },
478 + events: readTranscript(chat.id),
479 + running: running.has(chat.id),
480 + }));
481 + return;
482 + }
483 + if (msg.type === 'start') {
484 + const prompt = String(msg.prompt || '').trim();
485 + if (!prompt) return;
486 + const mode = msg.mode === 'auto' ? 'auto' : 'safe';
487 + let chat = msg.chatId ? getChat(msg.chatId) : null;
488 + if (!chat) {
489 + const proj = findProject(msg.project) || listProjects()[0];
490 + chat = {
491 + id: crypto.randomBytes(8).toString('hex'),
492 + title: prompt.slice(0, 60),
493 + projectId: proj.id,
494 + projectName: proj.name,
495 + node: proj.node,
496 + dir: proj.dir,
497 + mode,
498 + claudeSessionId: null,
499 + created: Date.now(),
500 + updated: Date.now(),
501 + };
502 + chats.push(chat); saveChats();
503 + ws.send(JSON.stringify({ type: 'chat_created', chat: { id: chat.id, title: chat.title, projectId: chat.projectId, projectName: chat.projectName, mode: chat.mode } }));
504 + }
505 + chat.mode = mode; saveChats();
506 + ws.chatId = chat.id;
507 + emitAndLog(chat.id, { type: 'user_prompt', text: prompt, ts: Date.now() });
508 + startClaude(chat, prompt, mode);
509 + return;
510 + }
511 + if (msg.type === 'perm') {
512 + const pending = pendingPerms.get(msg.requestId);
513 + if (!pending) return;
514 + clearTimeout(pending.timer);
515 + pendingPerms.delete(msg.requestId);
516 + audit({ kind: 'permission_response', chatId: pending.chatId, requestId: msg.requestId, allow: !!msg.allow });
517 + emitAndLog(pending.chatId, { type: 'permission_resolved', requestId: msg.requestId, allow: !!msg.allow });
518 + pending.resolve(msg.allow
519 + ? { behavior: 'allow', updatedInput: pending.input || {} }
520 + : { behavior: 'deny', message: "Refusé par l'utilisateur depuis administration-ka.com" });
521 + return;
522 + }
523 + if (msg.type === 'interrupt') {
524 + if (ws.chatId) interrupt(ws.chatId);
525 + return;
526 + }
527 +}
528 +
529 +// '::' (dual-stack v4+v6) : ngrok (localhost) + perm-mcp des nœuds distants via
530 +// LAN (.local peut résoudre en IPv6 link-local). L'API est protégée par mot de
531 +// passe ; /internal/perm par token de run.
532 +server.listen(PORT, '::', () => {
533 + console.log(`admin-ka backend sur port ${PORT} (dual-stack)`);
534 +});
added server/set-password.js +26 −0
@@ -0,0 +1,26 @@
1 +// Initialise/Met à jour data/config.json avec le hash scrypt du mot de passe.
2 +// Usage: node server/set-password.js <motdepasse> [port]
3 +import crypto from 'node:crypto';
4 +import fs from 'node:fs';
5 +import path from 'node:path';
6 +import { fileURLToPath } from 'node:url';
7 +
8 +const __dirname = path.dirname(fileURLToPath(import.meta.url));
9 +const DATA_DIR = path.join(__dirname, '..', 'data');
10 +fs.mkdirSync(DATA_DIR, { recursive: true });
11 +const CONFIG_PATH = path.join(DATA_DIR, 'config.json');
12 +
13 +const pw = process.argv[2];
14 +if (!pw) {
15 + console.error('Mot de passe requis.');
16 + process.exit(1);
17 +}
18 +if (pw.length < 12) console.warn('⚠️ mot de passe court (<12) — le rate-limit de login reste la seule protection contre le brute-force.');
19 +let config = {};
20 +try { config = JSON.parse(fs.readFileSync(CONFIG_PATH, 'utf8')); } catch {}
21 +const salt = crypto.randomBytes(16);
22 +config.salt = salt.toString('hex');
23 +config.passwordHash = crypto.scryptSync(pw, salt, 64).toString('hex');
24 +config.port = Number(process.argv[3]) || config.port || 3300;
25 +fs.writeFileSync(CONFIG_PATH, JSON.stringify(config, null, 2));
26 +console.log('config.json mis à jour (port ' + config.port + ').');
27