@arshdelight/practi 0.9.3 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/dist/cmd/clone.js +2 -3
- package/dist/cmd/clone.js.map +1 -1
- package/dist/cmd/edit.js +2 -3
- package/dist/cmd/edit.js.map +1 -1
- package/dist/cmd/new.js +2 -3
- package/dist/cmd/new.js.map +1 -1
- package/dist/cmd/pull.js +2 -3
- package/dist/cmd/pull.js.map +1 -1
- package/dist/cmd/repair.js +34 -0
- package/dist/cmd/repair.js.map +1 -0
- package/dist/cmd/skill.js +2 -3
- package/dist/cmd/skill.js.map +1 -1
- package/dist/cmd/update.js +41 -14
- package/dist/cmd/update.js.map +1 -1
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/state.js +30 -0
- package/dist/state.js.map +1 -1
- package/dist/web.js +305 -139
- package/dist/web.js.map +1 -1
- package/dist/workspace.js +10 -0
- package/dist/workspace.js.map +1 -1
- package/package.json +3 -2
- package/web-default/app.js +106 -0
- package/web-default/detail.html +32 -0
- package/web-default/detail.js +531 -0
- package/web-default/index.html +28 -0
- package/web-default/lang.js +169 -0
- package/web-default/marked.min.js +69 -0
- package/web-default/style.css +182 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
// practi web 语言层:中英双语(默认中文),偏好存 localStorage(每浏览器各记各的)。
|
|
2
|
+
// 设置入口(header 右上角齿轮 + 固定大小弹窗)由本文件注入,目录页/详情页共用;
|
|
3
|
+
// app.js / detail.js 消费 t() 并用 onChange 注册重渲染。tab 名与 JSON 视图标题是
|
|
4
|
+
// 术语(Wizard/StandardView/Document JSON),不参与翻译。
|
|
5
|
+
'use strict';
|
|
6
|
+
|
|
7
|
+
var POP_I18N = (function () {
|
|
8
|
+
var KEY = 'practi.lang';
|
|
9
|
+
|
|
10
|
+
// 字典值:字符串,或函数(复数/拼接类文案按参数生成)
|
|
11
|
+
var M = {
|
|
12
|
+
zh: {
|
|
13
|
+
settings: '设置', language: '语言', done: '完成',
|
|
14
|
+
tabWizard: '步骤', tabSv: '标准视图', tabDoc: '文档树',
|
|
15
|
+
labelDocJson: '文档 JSON', labelSvJson: 'StandardView JSON',
|
|
16
|
+
// 目录页
|
|
17
|
+
pageTitle: '我的实践',
|
|
18
|
+
thDocument: '文档', thSteps: '步骤', thAdded: '添加时间',
|
|
19
|
+
emptyLead: '还没有记录。写下第一手实践经验,成为一份 POP 文档——哈希可验证,永久保存。',
|
|
20
|
+
emptyHint: '用 <code>practi new</code> 创建',
|
|
21
|
+
countDocs: function (n) { return n + ' 篇文档'; },
|
|
22
|
+
pageOf: function (a, b) { return '第 ' + a + ' / ' + b + ' 页'; },
|
|
23
|
+
pagerPrev: '上一页', pagerNext: '下一页',
|
|
24
|
+
loadFail: '加载失败(/api/directs)',
|
|
25
|
+
// 详情页
|
|
26
|
+
stepCount: function (n) { return n + ' 个步骤'; },
|
|
27
|
+
loading: '加载中…',
|
|
28
|
+
opPar: '以下任务并行执行——顺序无关',
|
|
29
|
+
opChoice: '选择一个分支继续',
|
|
30
|
+
opSet: '独立小节——可自由跳转,无顺序',
|
|
31
|
+
secContent: '正文', secInputs: '输入', secOutputs: '输出', secAttachments: '附件',
|
|
32
|
+
secSteps: function (n) { return '步骤 (' + n + ')'; },
|
|
33
|
+
secTasks: function (n) { return '任务 (' + n + ')'; },
|
|
34
|
+
secOptions: function (n) { return '选项 (' + n + ')'; },
|
|
35
|
+
secItems: function (n) { return '条目 (' + n + ')'; },
|
|
36
|
+
repeatX: function (n) { return '重复 ×' + n; },
|
|
37
|
+
repeatUntil: function (s) { return '重复直到:' + s; },
|
|
38
|
+
repeat: '重复',
|
|
39
|
+
wizardPrev: '上一步', next: '下一步',
|
|
40
|
+
chooseBranch: '选择一个分支继续',
|
|
41
|
+
endPractice: '实践完结',
|
|
42
|
+
revisions: function (n) { return '修订 (' + n + ')'; },
|
|
43
|
+
refines: function (n) { return '改进 (' + n + ')'; },
|
|
44
|
+
docFail: function (s) { return '文档加载失败(' + s + ')'; },
|
|
45
|
+
backMine: '← 我的实践'
|
|
46
|
+
},
|
|
47
|
+
en: {
|
|
48
|
+
settings: 'Settings', language: 'Language', done: 'Done',
|
|
49
|
+
tabWizard: 'Todo', tabSv: 'StandardView', tabDoc: 'Document',
|
|
50
|
+
labelDocJson: 'Document JSON', labelSvJson: 'StandardView JSON',
|
|
51
|
+
pageTitle: 'My practices',
|
|
52
|
+
thDocument: 'Document', thSteps: 'Steps', thAdded: 'Added',
|
|
53
|
+
emptyLead: 'Nothing recorded yet. Write first-hand experience as a POP document — verifiable by hash, forever.',
|
|
54
|
+
emptyHint: 'create one with <code>practi new</code>',
|
|
55
|
+
countDocs: function (n) { return n + (n === 1 ? ' document' : ' documents'); },
|
|
56
|
+
pageOf: function (a, b) { return 'page ' + a + ' of ' + b; },
|
|
57
|
+
pagerPrev: 'Previous', pagerNext: 'Next',
|
|
58
|
+
loadFail: 'failed to load /api/directs',
|
|
59
|
+
stepCount: function (n) { return n + (n === 1 ? ' step' : ' steps'); },
|
|
60
|
+
loading: 'loading…',
|
|
61
|
+
opPar: 'the tasks below run in parallel — order does not matter',
|
|
62
|
+
opChoice: 'pick one branch to continue',
|
|
63
|
+
opSet: 'independent sections — jump freely, no ordering',
|
|
64
|
+
secContent: 'content', secInputs: 'inputs', secOutputs: 'outputs', secAttachments: 'attachments',
|
|
65
|
+
secSteps: function (n) { return 'steps (' + n + ')'; },
|
|
66
|
+
secTasks: function (n) { return 'tasks (' + n + ')'; },
|
|
67
|
+
secOptions: function (n) { return 'options (' + n + ')'; },
|
|
68
|
+
secItems: function (n) { return 'items (' + n + ')'; },
|
|
69
|
+
repeatX: function (n) { return 'repeat ×' + n; },
|
|
70
|
+
repeatUntil: function (s) { return 'repeat until: ' + s; },
|
|
71
|
+
repeat: 'repeat',
|
|
72
|
+
wizardPrev: 'Prev', next: 'Next',
|
|
73
|
+
chooseBranch: 'choose a branch to continue',
|
|
74
|
+
endPractice: 'end of practice',
|
|
75
|
+
revisions: function (n) { return 'revisions (' + n + ')'; },
|
|
76
|
+
refines: function (n) { return 'refines (' + n + ')'; },
|
|
77
|
+
docFail: function (s) { return 'failed to load document (' + s + ')'; },
|
|
78
|
+
backMine: '← My practices'
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
function getLang() {
|
|
83
|
+
var v = null;
|
|
84
|
+
try { v = localStorage.getItem(KEY); } catch (e) { /* 隐私模式等:内存态即可 */ }
|
|
85
|
+
return v === 'en' || v === 'zh' ? v : 'zh';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function t(key) {
|
|
89
|
+
var lang = M[getLang()];
|
|
90
|
+
var v = lang[key] !== undefined ? lang[key] : M.zh[key];
|
|
91
|
+
if (v === undefined) return key;
|
|
92
|
+
if (typeof v === 'function') return v.apply(null, Array.prototype.slice.call(arguments, 1));
|
|
93
|
+
return v;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
var listeners = [];
|
|
97
|
+
function onChange(fn) { listeners.push(fn); }
|
|
98
|
+
|
|
99
|
+
function setLang(lang) {
|
|
100
|
+
if (lang !== 'zh' && lang !== 'en') return;
|
|
101
|
+
try { localStorage.setItem(KEY, lang); } catch (e) { /* 同上 */ }
|
|
102
|
+
document.documentElement.lang = lang === 'zh' ? 'zh-CN' : 'en';
|
|
103
|
+
for (var i = 0; i < listeners.length; i++) listeners[i]();
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// ── 设置入口:header 右上角齿轮 + 固定大小弹窗(语言选择)──
|
|
107
|
+
function mountSettings() {
|
|
108
|
+
var header = document.querySelector('header');
|
|
109
|
+
if (!header) return;
|
|
110
|
+
|
|
111
|
+
var btn = document.createElement('button');
|
|
112
|
+
btn.type = 'button';
|
|
113
|
+
btn.className = 'settings-btn';
|
|
114
|
+
btn.setAttribute('aria-label', 'settings');
|
|
115
|
+
btn.innerHTML = '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">' +
|
|
116
|
+
'<path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"/>' +
|
|
117
|
+
'<circle cx="12" cy="12" r="3"/></svg>';
|
|
118
|
+
header.appendChild(btn);
|
|
119
|
+
|
|
120
|
+
var overlay = document.createElement('div');
|
|
121
|
+
overlay.className = 'settings-overlay';
|
|
122
|
+
overlay.innerHTML =
|
|
123
|
+
'<div class="settings-dialog" role="dialog" aria-label="settings">' +
|
|
124
|
+
'<p class="settings-title"></p>' +
|
|
125
|
+
'<div class="settings-body">' +
|
|
126
|
+
'<p class="settings-field"></p>' +
|
|
127
|
+
'<div class="settings-langs">' +
|
|
128
|
+
'<button type="button" class="settings-lang" data-lang="zh">中文</button>' +
|
|
129
|
+
'<button type="button" class="settings-lang" data-lang="en">English</button>' +
|
|
130
|
+
'</div></div>' +
|
|
131
|
+
'<div class="settings-foot"><button type="button" class="btn settings-done"></button></div>' +
|
|
132
|
+
'</div>';
|
|
133
|
+
document.body.appendChild(overlay);
|
|
134
|
+
|
|
135
|
+
var title = overlay.querySelector('.settings-title');
|
|
136
|
+
var field = overlay.querySelector('.settings-field');
|
|
137
|
+
var done = overlay.querySelector('.settings-done');
|
|
138
|
+
|
|
139
|
+
function syncText() {
|
|
140
|
+
title.textContent = t('settings');
|
|
141
|
+
field.textContent = t('language');
|
|
142
|
+
done.textContent = t('done');
|
|
143
|
+
var cur = getLang();
|
|
144
|
+
var btns = overlay.querySelectorAll('.settings-lang');
|
|
145
|
+
for (var i = 0; i < btns.length; i++) btns[i].classList.toggle('on', btns[i].getAttribute('data-lang') === cur);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
function open() { syncText(); overlay.classList.add('open'); }
|
|
149
|
+
function close() { overlay.classList.remove('open'); }
|
|
150
|
+
|
|
151
|
+
btn.addEventListener('click', open);
|
|
152
|
+
overlay.addEventListener('click', function (e) {
|
|
153
|
+
if (e.target === overlay) close();
|
|
154
|
+
var langBtn = e.target.closest('.settings-lang');
|
|
155
|
+
if (langBtn) { setLang(langBtn.getAttribute('data-lang')); syncText(); }
|
|
156
|
+
});
|
|
157
|
+
overlay.querySelector('.settings-done').addEventListener('click', close);
|
|
158
|
+
document.addEventListener('keydown', function (e) {
|
|
159
|
+
if (e.key === 'Escape') close();
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
164
|
+
document.documentElement.lang = getLang() === 'zh' ? 'zh-CN' : 'en';
|
|
165
|
+
mountSettings();
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
return { t: t, getLang: getLang, setLang: setLang, onChange: onChange };
|
|
169
|
+
})();
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* marked v15.0.12 - a markdown parser
|
|
3
|
+
* Copyright (c) 2011-2025, Christopher Jeffrey. (MIT Licensed)
|
|
4
|
+
* https://github.com/markedjs/marked
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* DO NOT EDIT THIS FILE
|
|
9
|
+
* The code in this file is generated from files in ./src/
|
|
10
|
+
*/
|
|
11
|
+
(function(g,f){if(typeof exports=="object"&&typeof module<"u"){module.exports=f()}else if("function"==typeof define && define.amd){define("marked",f)}else {g["marked"]=f()}}(typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : this,function(){var exports={};var __exports=exports;var module={exports};
|
|
12
|
+
"use strict";var H=Object.defineProperty;var be=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var we=Object.prototype.hasOwnProperty;var ye=(l,e)=>{for(var t in e)H(l,t,{get:e[t],enumerable:!0})},Re=(l,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Te(e))!we.call(l,s)&&s!==t&&H(l,s,{get:()=>e[s],enumerable:!(n=be(e,s))||n.enumerable});return l};var Se=l=>Re(H({},"__esModule",{value:!0}),l);var kt={};ye(kt,{Hooks:()=>L,Lexer:()=>x,Marked:()=>E,Parser:()=>b,Renderer:()=>$,TextRenderer:()=>_,Tokenizer:()=>S,defaults:()=>w,getDefaults:()=>z,lexer:()=>ht,marked:()=>k,options:()=>it,parse:()=>pt,parseInline:()=>ct,parser:()=>ut,setOptions:()=>ot,use:()=>lt,walkTokens:()=>at});module.exports=Se(kt);function z(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var w=z();function N(l){w=l}var I={exec:()=>null};function h(l,e=""){let t=typeof l=="string"?l:l.source,n={replace:(s,i)=>{let r=typeof i=="string"?i:i.source;return r=r.replace(m.caret,"$1"),t=t.replace(s,r),n},getRegex:()=>new RegExp(t,e)};return n}var m={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:l=>new RegExp(`^( {0,3}${l})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}#`),htmlBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}<(?:[a-z].*>|!--)`,"i")},$e=/^(?:[ \t]*(?:\n|$))+/,_e=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,Le=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,O=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,ze=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,F=/(?:[*+-]|\d{1,9}[.)])/,ie=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,oe=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).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/).replace(/\|table/g,"").getRegex(),Me=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).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/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),Q=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Pe=/^[^\n]+/,U=/(?!\s*\])(?:\\.|[^\[\]\\])+/,Ae=h(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",U).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),Ee=h(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,F).getRegex(),v="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",K=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,Ce=h("^ {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",K).replace("tag",v).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),le=h(Q).replace("hr",O).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",v).getRegex(),Ie=h(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",le).getRegex(),X={blockquote:Ie,code:_e,def:Ae,fences:Le,heading:ze,hr:O,html:Ce,lheading:oe,list:Ee,newline:$e,paragraph:le,table:I,text:Pe},re=h("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",O).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\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",v).getRegex(),Oe={...X,lheading:Me,table:re,paragraph:h(Q).replace("hr",O).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",re).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",v).getRegex()},Be={...X,html:h(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",K).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:I,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:h(Q).replace("hr",O).replace("heading",` *#{1,6} *[^
|
|
13
|
+
]`).replace("lheading",oe).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},qe=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,ve=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,ae=/^( {2,}|\\)\n(?!\s*$)/,De=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,D=/[\p{P}\p{S}]/u,W=/[\s\p{P}\p{S}]/u,ce=/[^\s\p{P}\p{S}]/u,Ze=h(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,W).getRegex(),pe=/(?!~)[\p{P}\p{S}]/u,Ge=/(?!~)[\s\p{P}\p{S}]/u,He=/(?:[^\s\p{P}\p{S}]|~)/u,Ne=/\[[^[\]]*?\]\((?:\\.|[^\\\(\)]|\((?:\\.|[^\\\(\)])*\))*\)|`[^`]*?`|<[^<>]*?>/g,ue=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,je=h(ue,"u").replace(/punct/g,D).getRegex(),Fe=h(ue,"u").replace(/punct/g,pe).getRegex(),he="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",Qe=h(he,"gu").replace(/notPunctSpace/g,ce).replace(/punctSpace/g,W).replace(/punct/g,D).getRegex(),Ue=h(he,"gu").replace(/notPunctSpace/g,He).replace(/punctSpace/g,Ge).replace(/punct/g,pe).getRegex(),Ke=h("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,ce).replace(/punctSpace/g,W).replace(/punct/g,D).getRegex(),Xe=h(/\\(punct)/,"gu").replace(/punct/g,D).getRegex(),We=h(/^<(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(),Je=h(K).replace("(?:-->|$)","-->").getRegex(),Ve=h("^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",Je).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),q=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Ye=h(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",q).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),ke=h(/^!?\[(label)\]\[(ref)\]/).replace("label",q).replace("ref",U).getRegex(),ge=h(/^!?\[(ref)\](?:\[\])?/).replace("ref",U).getRegex(),et=h("reflink|nolink(?!\\()","g").replace("reflink",ke).replace("nolink",ge).getRegex(),J={_backpedal:I,anyPunctuation:Xe,autolink:We,blockSkip:Ne,br:ae,code:ve,del:I,emStrongLDelim:je,emStrongRDelimAst:Qe,emStrongRDelimUnd:Ke,escape:qe,link:Ye,nolink:ge,punctuation:Ze,reflink:ke,reflinkSearch:et,tag:Ve,text:De,url:I},tt={...J,link:h(/^!?\[(label)\]\((.*?)\)/).replace("label",q).getRegex(),reflink:h(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",q).getRegex()},j={...J,emStrongRDelimAst:Ue,emStrongLDelim:Fe,url:h(/^((?: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~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},nt={...j,br:h(ae).replace("{2,}","*").getRegex(),text:h(j.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},B={normal:X,gfm:Oe,pedantic:Be},P={normal:J,gfm:j,breaks:nt,pedantic:tt};var st={"&":"&","<":"<",">":">",'"':""","'":"'"},fe=l=>st[l];function R(l,e){if(e){if(m.escapeTest.test(l))return l.replace(m.escapeReplace,fe)}else if(m.escapeTestNoEncode.test(l))return l.replace(m.escapeReplaceNoEncode,fe);return l}function V(l){try{l=encodeURI(l).replace(m.percentDecode,"%")}catch{return null}return l}function Y(l,e){let t=l.replace(m.findPipe,(i,r,o)=>{let a=!1,c=r;for(;--c>=0&&o[c]==="\\";)a=!a;return a?"|":" |"}),n=t.split(m.splitPipe),s=0;if(n[0].trim()||n.shift(),n.length>0&&!n.at(-1)?.trim()&&n.pop(),e)if(n.length>e)n.splice(e);else for(;n.length<e;)n.push("");for(;s<n.length;s++)n[s]=n[s].trim().replace(m.slashPipe,"|");return n}function A(l,e,t){let n=l.length;if(n===0)return"";let s=0;for(;s<n;){let i=l.charAt(n-s-1);if(i===e&&!t)s++;else if(i!==e&&t)s++;else break}return l.slice(0,n-s)}function de(l,e){if(l.indexOf(e[1])===-1)return-1;let t=0;for(let n=0;n<l.length;n++)if(l[n]==="\\")n++;else if(l[n]===e[0])t++;else if(l[n]===e[1]&&(t--,t<0))return n;return t>0?-2:-1}function me(l,e,t,n,s){let i=e.href,r=e.title||null,o=l[1].replace(s.other.outputLinkReplace,"$1");n.state.inLink=!0;let a={type:l[0].charAt(0)==="!"?"image":"link",raw:t,href:i,title:r,text:o,tokens:n.inlineTokens(o)};return n.state.inLink=!1,a}function rt(l,e,t){let n=l.match(t.other.indentCodeCompensation);if(n===null)return e;let s=n[1];return e.split(`
|
|
14
|
+
`).map(i=>{let r=i.match(t.other.beginningSpace);if(r===null)return i;let[o]=r;return o.length>=s.length?i.slice(s.length):i}).join(`
|
|
15
|
+
`)}var S=class{options;rules;lexer;constructor(e){this.options=e||w}space(e){let t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){let t=this.rules.block.code.exec(e);if(t){let n=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:A(n,`
|
|
16
|
+
`)}}}fences(e){let t=this.rules.block.fences.exec(e);if(t){let n=t[0],s=rt(n,t[3]||"",this.rules);return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:s}}}heading(e){let t=this.rules.block.heading.exec(e);if(t){let n=t[2].trim();if(this.rules.other.endingHash.test(n)){let s=A(n,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(n=s.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){let t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:A(t[0],`
|
|
17
|
+
`)}}blockquote(e){let t=this.rules.block.blockquote.exec(e);if(t){let n=A(t[0],`
|
|
18
|
+
`).split(`
|
|
19
|
+
`),s="",i="",r=[];for(;n.length>0;){let o=!1,a=[],c;for(c=0;c<n.length;c++)if(this.rules.other.blockquoteStart.test(n[c]))a.push(n[c]),o=!0;else if(!o)a.push(n[c]);else break;n=n.slice(c);let p=a.join(`
|
|
20
|
+
`),u=p.replace(this.rules.other.blockquoteSetextReplace,`
|
|
21
|
+
$1`).replace(this.rules.other.blockquoteSetextReplace2,"");s=s?`${s}
|
|
22
|
+
${p}`:p,i=i?`${i}
|
|
23
|
+
${u}`:u;let d=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(u,r,!0),this.lexer.state.top=d,n.length===0)break;let g=r.at(-1);if(g?.type==="code")break;if(g?.type==="blockquote"){let T=g,f=T.raw+`
|
|
24
|
+
`+n.join(`
|
|
25
|
+
`),y=this.blockquote(f);r[r.length-1]=y,s=s.substring(0,s.length-T.raw.length)+y.raw,i=i.substring(0,i.length-T.text.length)+y.text;break}else if(g?.type==="list"){let T=g,f=T.raw+`
|
|
26
|
+
`+n.join(`
|
|
27
|
+
`),y=this.list(f);r[r.length-1]=y,s=s.substring(0,s.length-g.raw.length)+y.raw,i=i.substring(0,i.length-T.raw.length)+y.raw,n=f.substring(r.at(-1).raw.length).split(`
|
|
28
|
+
`);continue}}return{type:"blockquote",raw:s,tokens:r,text:i}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n=t[1].trim(),s=n.length>1,i={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:"[*+-]");let r=this.rules.other.listItemRegex(n),o=!1;for(;e;){let c=!1,p="",u="";if(!(t=r.exec(e))||this.rules.block.hr.test(e))break;p=t[0],e=e.substring(p.length);let d=t[2].split(`
|
|
29
|
+
`,1)[0].replace(this.rules.other.listReplaceTabs,Z=>" ".repeat(3*Z.length)),g=e.split(`
|
|
30
|
+
`,1)[0],T=!d.trim(),f=0;if(this.options.pedantic?(f=2,u=d.trimStart()):T?f=t[1].length+1:(f=t[2].search(this.rules.other.nonSpaceChar),f=f>4?1:f,u=d.slice(f),f+=t[1].length),T&&this.rules.other.blankLine.test(g)&&(p+=g+`
|
|
31
|
+
`,e=e.substring(g.length+1),c=!0),!c){let Z=this.rules.other.nextBulletRegex(f),te=this.rules.other.hrRegex(f),ne=this.rules.other.fencesBeginRegex(f),se=this.rules.other.headingBeginRegex(f),xe=this.rules.other.htmlBeginRegex(f);for(;e;){let G=e.split(`
|
|
32
|
+
`,1)[0],C;if(g=G,this.options.pedantic?(g=g.replace(this.rules.other.listReplaceNesting," "),C=g):C=g.replace(this.rules.other.tabCharGlobal," "),ne.test(g)||se.test(g)||xe.test(g)||Z.test(g)||te.test(g))break;if(C.search(this.rules.other.nonSpaceChar)>=f||!g.trim())u+=`
|
|
33
|
+
`+C.slice(f);else{if(T||d.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||ne.test(d)||se.test(d)||te.test(d))break;u+=`
|
|
34
|
+
`+g}!T&&!g.trim()&&(T=!0),p+=G+`
|
|
35
|
+
`,e=e.substring(G.length+1),d=C.slice(f)}}i.loose||(o?i.loose=!0:this.rules.other.doubleBlankLine.test(p)&&(o=!0));let y=null,ee;this.options.gfm&&(y=this.rules.other.listIsTask.exec(u),y&&(ee=y[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),i.items.push({type:"list_item",raw:p,task:!!y,checked:ee,loose:!1,text:u,tokens:[]}),i.raw+=p}let a=i.items.at(-1);if(a)a.raw=a.raw.trimEnd(),a.text=a.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let c=0;c<i.items.length;c++)if(this.lexer.state.top=!1,i.items[c].tokens=this.lexer.blockTokens(i.items[c].text,[]),!i.loose){let p=i.items[c].tokens.filter(d=>d.type==="space"),u=p.length>0&&p.some(d=>this.rules.other.anyLine.test(d.raw));i.loose=u}if(i.loose)for(let c=0;c<i.items.length;c++)i.items[c].loose=!0;return i}}html(e){let t=this.rules.block.html.exec(e);if(t)return{type:"html",block:!0,raw:t[0],pre:t[1]==="pre"||t[1]==="script"||t[1]==="style",text:t[0]}}def(e){let t=this.rules.block.def.exec(e);if(t){let n=t[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),s=t[2]?t[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:s,title:i}}}table(e){let t=this.rules.block.table.exec(e);if(!t||!this.rules.other.tableDelimiter.test(t[2]))return;let n=Y(t[1]),s=t[2].replace(this.rules.other.tableAlignChars,"").split("|"),i=t[3]?.trim()?t[3].replace(this.rules.other.tableRowBlankLine,"").split(`
|
|
36
|
+
`):[],r={type:"table",raw:t[0],header:[],align:[],rows:[]};if(n.length===s.length){for(let o of s)this.rules.other.tableAlignRight.test(o)?r.align.push("right"):this.rules.other.tableAlignCenter.test(o)?r.align.push("center"):this.rules.other.tableAlignLeft.test(o)?r.align.push("left"):r.align.push(null);for(let o=0;o<n.length;o++)r.header.push({text:n[o],tokens:this.lexer.inline(n[o]),header:!0,align:r.align[o]});for(let o of i)r.rows.push(Y(o,r.header.length).map((a,c)=>({text:a,tokens:this.lexer.inline(a),header:!1,align:r.align[c]})));return r}}lheading(e){let 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){let t=this.rules.block.paragraph.exec(e);if(t){let n=t[1].charAt(t[1].length-1)===`
|
|
37
|
+
`?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:n,tokens:this.lexer.inline(n)}}}text(e){let 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){let t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){let t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.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){let t=this.rules.inline.link.exec(e);if(t){let n=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let r=A(n.slice(0,-1),"\\");if((n.length-r.length)%2===0)return}else{let r=de(t[2],"()");if(r===-2)return;if(r>-1){let a=(t[0].indexOf("!")===0?5:4)+t[1].length+r;t[2]=t[2].substring(0,r),t[0]=t[0].substring(0,a).trim(),t[3]=""}}let s=t[2],i="";if(this.options.pedantic){let r=this.rules.other.pedanticHrefTitle.exec(s);r&&(s=r[1],i=r[3])}else i=t[3]?t[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?s=s.slice(1):s=s.slice(1,-1)),me(t,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let s=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=t[s.toLowerCase()];if(!i){let r=n[0].charAt(0);return{type:"text",raw:r,text:r}}return me(n,i,n[0],this.lexer,this.rules)}}emStrong(e,t,n=""){let s=this.rules.inline.emStrongLDelim.exec(e);if(!s||s[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(s[1]||s[2]||"")||!n||this.rules.inline.punctuation.exec(n)){let r=[...s[0]].length-1,o,a,c=r,p=0,u=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(u.lastIndex=0,t=t.slice(-1*e.length+r);(s=u.exec(t))!=null;){if(o=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!o)continue;if(a=[...o].length,s[3]||s[4]){c+=a;continue}else if((s[5]||s[6])&&r%3&&!((r+a)%3)){p+=a;continue}if(c-=a,c>0)continue;a=Math.min(a,a+c+p);let d=[...s[0]][0].length,g=e.slice(0,r+s.index+d+a);if(Math.min(r,a)%2){let f=g.slice(1,-1);return{type:"em",raw:g,text:f,tokens:this.lexer.inlineTokens(f)}}let T=g.slice(2,-2);return{type:"strong",raw:g,text:T,tokens:this.lexer.inlineTokens(T)}}}}codespan(e){let t=this.rules.inline.code.exec(e);if(t){let n=t[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return s&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:t[0],text:n}}}br(e){let t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){let 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){let t=this.rules.inline.autolink.exec(e);if(t){let n,s;return t[2]==="@"?(n=t[1],s="mailto:"+n):(n=t[1],s=n),{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}url(e){let t;if(t=this.rules.inline.url.exec(e)){let n,s;if(t[2]==="@")n=t[0],s="mailto:"+n;else{let i;do i=t[0],t[0]=this.rules.inline._backpedal.exec(t[0])?.[0]??"";while(i!==t[0]);n=t[0],t[1]==="www."?s="http://"+t[0]:s=t[0]}return{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(e){let t=this.rules.inline.text.exec(e);if(t){let n=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:n}}}};var x=class l{tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||w,this.options.tokenizer=this.options.tokenizer||new S,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:B.normal,inline:P.normal};this.options.pedantic?(t.block=B.pedantic,t.inline=P.pedantic):this.options.gfm&&(t.block=B.gfm,this.options.breaks?t.inline=P.breaks:t.inline=P.gfm),this.tokenizer.rules=t}static get rules(){return{block:B,inline:P}}static lex(e,t){return new l(t).lex(e)}static lexInline(e,t){return new l(t).inlineTokens(e)}lex(e){e=e.replace(m.carriageReturn,`
|
|
38
|
+
`),this.blockTokens(e,this.tokens);for(let t=0;t<this.inlineQueue.length;t++){let n=this.inlineQueue[t];this.inlineTokens(n.src,n.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,t=[],n=!1){for(this.options.pedantic&&(e=e.replace(m.tabCharGlobal," ").replace(m.spaceLine,""));e;){let s;if(this.options.extensions?.block?.some(r=>(s=r.call({lexer:this},e,t))?(e=e.substring(s.raw.length),t.push(s),!0):!1))continue;if(s=this.tokenizer.space(e)){e=e.substring(s.raw.length);let r=t.at(-1);s.raw.length===1&&r!==void 0?r.raw+=`
|
|
39
|
+
`:t.push(s);continue}if(s=this.tokenizer.code(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=`
|
|
40
|
+
`+s.raw,r.text+=`
|
|
41
|
+
`+s.text,this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(s=this.tokenizer.fences(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.heading(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.hr(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.blockquote(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.list(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.html(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.def(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=`
|
|
42
|
+
`+s.raw,r.text+=`
|
|
43
|
+
`+s.raw,this.inlineQueue.at(-1).src=r.text):this.tokens.links[s.tag]||(this.tokens.links[s.tag]={href:s.href,title:s.title});continue}if(s=this.tokenizer.table(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.lheading(e)){e=e.substring(s.raw.length),t.push(s);continue}let i=e;if(this.options.extensions?.startBlock){let r=1/0,o=e.slice(1),a;this.options.extensions.startBlock.forEach(c=>{a=c.call({lexer:this},o),typeof a=="number"&&a>=0&&(r=Math.min(r,a))}),r<1/0&&r>=0&&(i=e.substring(0,r+1))}if(this.state.top&&(s=this.tokenizer.paragraph(i))){let r=t.at(-1);n&&r?.type==="paragraph"?(r.raw+=`
|
|
44
|
+
`+s.raw,r.text+=`
|
|
45
|
+
`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s),n=i.length!==e.length,e=e.substring(s.raw.length);continue}if(s=this.tokenizer.text(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="text"?(r.raw+=`
|
|
46
|
+
`+s.raw,r.text+=`
|
|
47
|
+
`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(e){let r="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(r);break}else throw new Error(r)}}return this.state.top=!0,t}inline(e,t=[]){return this.inlineQueue.push({src:e,tokens:t}),t}inlineTokens(e,t=[]){let n=e,s=null;if(this.tokens.links){let o=Object.keys(this.tokens.links);if(o.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(n))!=null;)o.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(n))!=null;)n=n.slice(0,s.index)+"++"+n.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(s=this.tokenizer.rules.inline.blockSkip.exec(n))!=null;)n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);let i=!1,r="";for(;e;){i||(r=""),i=!1;let o;if(this.options.extensions?.inline?.some(c=>(o=c.call({lexer:this},e,t))?(e=e.substring(o.raw.length),t.push(o),!0):!1))continue;if(o=this.tokenizer.escape(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.tag(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.link(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(o.raw.length);let c=t.at(-1);o.type==="text"&&c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(o=this.tokenizer.emStrong(e,n,r)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.codespan(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.br(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.del(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.autolink(e)){e=e.substring(o.raw.length),t.push(o);continue}if(!this.state.inLink&&(o=this.tokenizer.url(e))){e=e.substring(o.raw.length),t.push(o);continue}let a=e;if(this.options.extensions?.startInline){let c=1/0,p=e.slice(1),u;this.options.extensions.startInline.forEach(d=>{u=d.call({lexer:this},p),typeof u=="number"&&u>=0&&(c=Math.min(c,u))}),c<1/0&&c>=0&&(a=e.substring(0,c+1))}if(o=this.tokenizer.inlineText(a)){e=e.substring(o.raw.length),o.raw.slice(-1)!=="_"&&(r=o.raw.slice(-1)),i=!0;let c=t.at(-1);c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(e){let c="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(c);break}else throw new Error(c)}}return t}};var $=class{options;parser;constructor(e){this.options=e||w}space(e){return""}code({text:e,lang:t,escaped:n}){let s=(t||"").match(m.notSpaceStart)?.[0],i=e.replace(m.endingNewline,"")+`
|
|
48
|
+
`;return s?'<pre><code class="language-'+R(s)+'">'+(n?i:R(i,!0))+`</code></pre>
|
|
49
|
+
`:"<pre><code>"+(n?i:R(i,!0))+`</code></pre>
|
|
50
|
+
`}blockquote({tokens:e}){return`<blockquote>
|
|
51
|
+
${this.parser.parse(e)}</blockquote>
|
|
52
|
+
`}html({text:e}){return e}heading({tokens:e,depth:t}){return`<h${t}>${this.parser.parseInline(e)}</h${t}>
|
|
53
|
+
`}hr(e){return`<hr>
|
|
54
|
+
`}list(e){let t=e.ordered,n=e.start,s="";for(let o=0;o<e.items.length;o++){let a=e.items[o];s+=this.listitem(a)}let i=t?"ol":"ul",r=t&&n!==1?' start="'+n+'"':"";return"<"+i+r+`>
|
|
55
|
+
`+s+"</"+i+`>
|
|
56
|
+
`}listitem(e){let t="";if(e.task){let n=this.checkbox({checked:!!e.checked});e.loose?e.tokens[0]?.type==="paragraph"?(e.tokens[0].text=n+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=n+" "+R(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:n+" ",text:n+" ",escaped:!0}):t+=n+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`<li>${t}</li>
|
|
57
|
+
`}checkbox({checked:e}){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:e}){return`<p>${this.parser.parseInline(e)}</p>
|
|
58
|
+
`}table(e){let t="",n="";for(let i=0;i<e.header.length;i++)n+=this.tablecell(e.header[i]);t+=this.tablerow({text:n});let s="";for(let i=0;i<e.rows.length;i++){let r=e.rows[i];n="";for(let o=0;o<r.length;o++)n+=this.tablecell(r[o]);s+=this.tablerow({text:n})}return s&&(s=`<tbody>${s}</tbody>`),`<table>
|
|
59
|
+
<thead>
|
|
60
|
+
`+t+`</thead>
|
|
61
|
+
`+s+`</table>
|
|
62
|
+
`}tablerow({text:e}){return`<tr>
|
|
63
|
+
${e}</tr>
|
|
64
|
+
`}tablecell(e){let t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+`</${n}>
|
|
65
|
+
`}strong({tokens:e}){return`<strong>${this.parser.parseInline(e)}</strong>`}em({tokens:e}){return`<em>${this.parser.parseInline(e)}</em>`}codespan({text:e}){return`<code>${R(e,!0)}</code>`}br(e){return"<br>"}del({tokens:e}){return`<del>${this.parser.parseInline(e)}</del>`}link({href:e,title:t,tokens:n}){let s=this.parser.parseInline(n),i=V(e);if(i===null)return s;e=i;let r='<a href="'+e+'"';return t&&(r+=' title="'+R(t)+'"'),r+=">"+s+"</a>",r}image({href:e,title:t,text:n,tokens:s}){s&&(n=this.parser.parseInline(s,this.parser.textRenderer));let i=V(e);if(i===null)return R(n);e=i;let r=`<img src="${e}" alt="${n}"`;return t&&(r+=` title="${R(t)}"`),r+=">",r}text(e){return"tokens"in e&&e.tokens?this.parser.parseInline(e.tokens):"escaped"in e&&e.escaped?e.text:R(e.text)}};var _=class{strong({text:e}){return e}em({text:e}){return e}codespan({text:e}){return e}del({text:e}){return e}html({text:e}){return e}text({text:e}){return e}link({text:e}){return""+e}image({text:e}){return""+e}br(){return""}};var b=class l{options;renderer;textRenderer;constructor(e){this.options=e||w,this.options.renderer=this.options.renderer||new $,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new _}static parse(e,t){return new l(t).parse(e)}static parseInline(e,t){return new l(t).parseInline(e)}parse(e,t=!0){let n="";for(let s=0;s<e.length;s++){let i=e[s];if(this.options.extensions?.renderers?.[i.type]){let o=i,a=this.options.extensions.renderers[o.type].call({parser:this},o);if(a!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(o.type)){n+=a||"";continue}}let r=i;switch(r.type){case"space":{n+=this.renderer.space(r);continue}case"hr":{n+=this.renderer.hr(r);continue}case"heading":{n+=this.renderer.heading(r);continue}case"code":{n+=this.renderer.code(r);continue}case"table":{n+=this.renderer.table(r);continue}case"blockquote":{n+=this.renderer.blockquote(r);continue}case"list":{n+=this.renderer.list(r);continue}case"html":{n+=this.renderer.html(r);continue}case"paragraph":{n+=this.renderer.paragraph(r);continue}case"text":{let o=r,a=this.renderer.text(o);for(;s+1<e.length&&e[s+1].type==="text";)o=e[++s],a+=`
|
|
66
|
+
`+this.renderer.text(o);t?n+=this.renderer.paragraph({type:"paragraph",raw:a,text:a,tokens:[{type:"text",raw:a,text:a,escaped:!0}]}):n+=a;continue}default:{let o='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}parseInline(e,t=this.renderer){let n="";for(let s=0;s<e.length;s++){let i=e[s];if(this.options.extensions?.renderers?.[i.type]){let o=this.options.extensions.renderers[i.type].call({parser:this},i);if(o!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){n+=o||"";continue}}let r=i;switch(r.type){case"escape":{n+=t.text(r);break}case"html":{n+=t.html(r);break}case"link":{n+=t.link(r);break}case"image":{n+=t.image(r);break}case"strong":{n+=t.strong(r);break}case"em":{n+=t.em(r);break}case"codespan":{n+=t.codespan(r);break}case"br":{n+=t.br(r);break}case"del":{n+=t.del(r);break}case"text":{n+=t.text(r);break}default:{let o='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}};var L=class{options;block;constructor(e){this.options=e||w}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}provideLexer(){return this.block?x.lex:x.lexInline}provideParser(){return this.block?b.parse:b.parseInline}};var E=class{defaults=z();options=this.setOptions;parse=this.parseMarkdown(!0);parseInline=this.parseMarkdown(!1);Parser=b;Renderer=$;TextRenderer=_;Lexer=x;Tokenizer=S;Hooks=L;constructor(...e){this.use(...e)}walkTokens(e,t){let n=[];for(let s of e)switch(n=n.concat(t.call(this,s)),s.type){case"table":{let i=s;for(let r of i.header)n=n.concat(this.walkTokens(r.tokens,t));for(let r of i.rows)for(let o of r)n=n.concat(this.walkTokens(o.tokens,t));break}case"list":{let i=s;n=n.concat(this.walkTokens(i.items,t));break}default:{let i=s;this.defaults.extensions?.childTokens?.[i.type]?this.defaults.extensions.childTokens[i.type].forEach(r=>{let o=i[r].flat(1/0);n=n.concat(this.walkTokens(o,t))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,t)))}}return n}use(...e){let t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{let s={...n};if(s.async=this.defaults.async||s.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let r=t.renderers[i.name];r?t.renderers[i.name]=function(...o){let a=i.renderer.apply(this,o);return a===!1&&(a=r.apply(this,o)),a}:t.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let r=t[i.level];r?r.unshift(i.tokenizer):t[i.level]=[i.tokenizer],i.start&&(i.level==="block"?t.startBlock?t.startBlock.push(i.start):t.startBlock=[i.start]:i.level==="inline"&&(t.startInline?t.startInline.push(i.start):t.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(t.childTokens[i.name]=i.childTokens)}),s.extensions=t),n.renderer){let i=this.defaults.renderer||new $(this.defaults);for(let r in n.renderer){if(!(r in i))throw new Error(`renderer '${r}' does not exist`);if(["options","parser"].includes(r))continue;let o=r,a=n.renderer[o],c=i[o];i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u||""}}s.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new S(this.defaults);for(let r in n.tokenizer){if(!(r in i))throw new Error(`tokenizer '${r}' does not exist`);if(["options","rules","lexer"].includes(r))continue;let o=r,a=n.tokenizer[o],c=i[o];i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new L;for(let r in n.hooks){if(!(r in i))throw new Error(`hook '${r}' does not exist`);if(["options","block"].includes(r))continue;let o=r,a=n.hooks[o],c=i[o];L.passThroughHooks.has(r)?i[o]=p=>{if(this.defaults.async)return Promise.resolve(a.call(i,p)).then(d=>c.call(i,d));let u=a.call(i,p);return c.call(i,u)}:i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,r=n.walkTokens;s.walkTokens=function(o){let a=[];return a.push(r.call(this,o)),i&&(a=a.concat(i.call(this,o))),a}}this.defaults={...this.defaults,...s}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return x.lex(e,t??this.defaults)}parser(e,t){return b.parse(e,t??this.defaults)}parseMarkdown(e){return(n,s)=>{let i={...s},r={...this.defaults,...i},o=this.onError(!!r.silent,!!r.async);if(this.defaults.async===!0&&i.async===!1)return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return o(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return o(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));r.hooks&&(r.hooks.options=r,r.hooks.block=e);let a=r.hooks?r.hooks.provideLexer():e?x.lex:x.lexInline,c=r.hooks?r.hooks.provideParser():e?b.parse:b.parseInline;if(r.async)return Promise.resolve(r.hooks?r.hooks.preprocess(n):n).then(p=>a(p,r)).then(p=>r.hooks?r.hooks.processAllTokens(p):p).then(p=>r.walkTokens?Promise.all(this.walkTokens(p,r.walkTokens)).then(()=>p):p).then(p=>c(p,r)).then(p=>r.hooks?r.hooks.postprocess(p):p).catch(o);try{r.hooks&&(n=r.hooks.preprocess(n));let p=a(n,r);r.hooks&&(p=r.hooks.processAllTokens(p)),r.walkTokens&&this.walkTokens(p,r.walkTokens);let u=c(p,r);return r.hooks&&(u=r.hooks.postprocess(u)),u}catch(p){return o(p)}}}onError(e,t){return n=>{if(n.message+=`
|
|
67
|
+
Please report this to https://github.com/markedjs/marked.`,e){let s="<p>An error occurred:</p><pre>"+R(n.message+"",!0)+"</pre>";return t?Promise.resolve(s):s}if(t)return Promise.reject(n);throw n}}};var M=new E;function k(l,e){return M.parse(l,e)}k.options=k.setOptions=function(l){return M.setOptions(l),k.defaults=M.defaults,N(k.defaults),k};k.getDefaults=z;k.defaults=w;k.use=function(...l){return M.use(...l),k.defaults=M.defaults,N(k.defaults),k};k.walkTokens=function(l,e){return M.walkTokens(l,e)};k.parseInline=M.parseInline;k.Parser=b;k.parser=b.parse;k.Renderer=$;k.TextRenderer=_;k.Lexer=x;k.lexer=x.lex;k.Tokenizer=S;k.Hooks=L;k.parse=k;var it=k.options,ot=k.setOptions,lt=k.use,at=k.walkTokens,ct=k.parseInline,pt=k,ut=b.parse,ht=x.lex;
|
|
68
|
+
|
|
69
|
+
if(__exports != exports)module.exports = exports;return module.exports}));
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
/* practi web 默认前端样式(与 hub 视觉语言同源)。
|
|
2
|
+
本文件位于 CLI 安装包内;把拷贝放进 <数据目录>/web/ 即可按文件覆盖自定义。 */
|
|
3
|
+
:root {
|
|
4
|
+
color-scheme: light;
|
|
5
|
+
--brand: #003366;
|
|
6
|
+
--brand-60: rgba(0, 51, 102, .6);
|
|
7
|
+
--brand-50: rgba(0, 51, 102, .5);
|
|
8
|
+
--brand-40: rgba(0, 51, 102, .4);
|
|
9
|
+
--brand-30: rgba(0, 51, 102, .3);
|
|
10
|
+
--brand-15: rgba(0, 51, 102, .15);
|
|
11
|
+
--primary: #111827;
|
|
12
|
+
--border: #e5e7eb;
|
|
13
|
+
--border-light: #f3f4f6;
|
|
14
|
+
--hover-bg: #f9fafb;
|
|
15
|
+
}
|
|
16
|
+
* { box-sizing: border-box; }
|
|
17
|
+
/* 常驻滚动条水槽:内容超长时滚动条出现不再挤压视口,居中元素(操作区等)不左右平移 */
|
|
18
|
+
html { scrollbar-gutter: stable; }
|
|
19
|
+
body { font: 15px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif; margin: 0; color: var(--brand); background: #fff; }
|
|
20
|
+
header { position: sticky; top: 0; z-index: 10; background: #fff; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: center; padding: 10px 24px; }
|
|
21
|
+
.brand-link { display: inline-flex; align-items: center; gap: 10px; }
|
|
22
|
+
.brand-link:hover { text-decoration: none; }
|
|
23
|
+
.brand-link:hover .logo { opacity: .8; }
|
|
24
|
+
header .logo { width: 28px; height: 28px; color: var(--primary); flex: none; }
|
|
25
|
+
header .brand { font-weight: 700; letter-spacing: .2px; font-size: 16px; }
|
|
26
|
+
header .sub { color: var(--brand-40); font-size: 13px; }
|
|
27
|
+
/* 设置入口(lang.js 注入):header 右上角齿轮 ghost 钮 */
|
|
28
|
+
.settings-btn { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: none; border-radius: 8px; background: transparent; color: var(--brand-40); cursor: pointer; }
|
|
29
|
+
.settings-btn:hover { background: var(--hover-bg); color: var(--brand); }
|
|
30
|
+
/* 设置弹窗:固定大小(320×212),遮罩点击/Esc/完成均可关 */
|
|
31
|
+
.settings-overlay { display: none; position: fixed; inset: 0; z-index: 50; background: rgba(17, 24, 39, .32); }
|
|
32
|
+
.settings-overlay.open { display: block; }
|
|
33
|
+
.settings-dialog { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 320px; height: 212px; background: #fff; border-radius: 14px; box-shadow: 0 20px 50px rgba(0, 25, 51, .18); padding: 18px 20px 16px; display: flex; flex-direction: column; }
|
|
34
|
+
.settings-title { margin: 0 0 12px; font-size: 15px; font-weight: 600; color: var(--brand); }
|
|
35
|
+
.settings-body { flex: 1; }
|
|
36
|
+
.settings-field { margin: 0 0 8px; font-size: 12px; color: var(--brand-50); }
|
|
37
|
+
.settings-langs { display: flex; gap: 8px; }
|
|
38
|
+
.settings-lang { flex: 1; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--brand-60); font: inherit; font-size: 14px; padding: 8px 0; cursor: pointer; }
|
|
39
|
+
.settings-lang:hover { border-color: var(--brand-30); color: var(--brand); }
|
|
40
|
+
.settings-lang.on { background: rgba(0, 51, 102, .08); border-color: rgba(0, 51, 102, .25); color: var(--brand); font-weight: 500; }
|
|
41
|
+
.settings-foot { display: flex; justify-content: flex-end; }
|
|
42
|
+
main { max-width: 72rem; margin: 0 auto; padding: 40px 24px 64px; }
|
|
43
|
+
a { color: var(--primary); text-decoration: none; }
|
|
44
|
+
a:hover { text-decoration: underline; }
|
|
45
|
+
.page-title { font-size: 16px; font-weight: 600; margin: 0 0 16px; }
|
|
46
|
+
/* 目录表(对齐 hub DataTable 形态):表头小字弱化、行底细线、末行无线。
|
|
47
|
+
fixed 布局是必须的:hash 是无空格长串,auto 布局下 max-width 失效会把表撑出横向滚动 */
|
|
48
|
+
.doc-table { width: 100%; border-collapse: collapse; font-size: 14px; table-layout: fixed; }
|
|
49
|
+
.doc-table th { padding: 8px 16px; font-size: 12px; font-weight: 500; color: var(--brand-50); text-align: left; white-space: nowrap; border-bottom: 1px solid var(--border); }
|
|
50
|
+
.doc-table th.col-steps { width: 8ch; }
|
|
51
|
+
.doc-table th.col-added { width: 22ch; }
|
|
52
|
+
.doc-table td { padding: 12px 16px; vertical-align: middle; border-bottom: 1px solid var(--border-light); overflow: hidden; text-overflow: ellipsis; }
|
|
53
|
+
.doc-table tr:last-child td { border-bottom: none; }
|
|
54
|
+
.doc-name { font-weight: 500; color: var(--brand); }
|
|
55
|
+
.doc-desc { font-size: 12px; color: var(--brand-40); margin: 2px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
56
|
+
.doc-steps { font-size: 12px; color: var(--brand-40); font-variant-numeric: tabular-nums; }
|
|
57
|
+
.doc-date { font-size: 12px; color: var(--brand-40); white-space: nowrap; font-variant-numeric: tabular-nums; }
|
|
58
|
+
.doc-date.derived { opacity: .6; }
|
|
59
|
+
.count-row { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; font-size: 14px; color: var(--brand-60); }
|
|
60
|
+
.pager { display: flex; gap: 8px; }
|
|
61
|
+
.pager button { padding: 6px 12px; border: 1px solid #d1d5db; border-radius: 8px; color: var(--brand-60); font-size: 14px; background: #fff; cursor: pointer; }
|
|
62
|
+
.pager button:hover { background: var(--hover-bg); }
|
|
63
|
+
.empty { text-align: center; padding: 64px 0; }
|
|
64
|
+
.empty svg { color: var(--brand-15); margin-bottom: 16px; }
|
|
65
|
+
.empty .lead { font-size: 14px; color: var(--brand-50); margin: 0; }
|
|
66
|
+
.empty .hint { font-size: 12px; color: var(--brand-40); margin: 12px 0 0; }
|
|
67
|
+
.empty code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; }
|
|
68
|
+
|
|
69
|
+
/* ── 详情页(向导模式):一次一节点,op 决定呈现 ── */
|
|
70
|
+
.detail { max-width: 48rem; padding-bottom: 110px; }
|
|
71
|
+
.node-title { font-size: 22px; font-weight: 700; color: var(--brand); margin: 8px 0 4px; }
|
|
72
|
+
.node-desc { color: var(--brand-60); margin: 0 0 12px; }
|
|
73
|
+
.op-note { font-size: 13px; color: var(--brand-40); font-style: italic; margin: 0 0 8px; }
|
|
74
|
+
.prose { font-size: 16px; line-height: 1.75; color: var(--brand); }
|
|
75
|
+
.prose p { margin: 10px 0; }
|
|
76
|
+
.section-sm .prose p:first-child { margin-top: 0; }
|
|
77
|
+
.section-sm .prose p:last-child { margin-bottom: 0; }
|
|
78
|
+
.prose pre { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; overflow-x: auto; font-size: 13px; margin: 12px 0; }
|
|
79
|
+
.prose figure { margin: 14px 0; }
|
|
80
|
+
.prose img { max-width: 100%; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 1px 2px rgba(0, 0, 0, .08); }
|
|
81
|
+
.prose figcaption { font-size: 12px; color: var(--brand-40); text-align: center; margin-top: 4px; }
|
|
82
|
+
/* markdown 全语法排版(对齐 hub MarkdownView 的 prose 观感):标题品牌色、链接 primary
|
|
83
|
+
无下划线 hover 下划线、行内 code 浅底胶囊、块内 code 交还 pre 默认、blockquote 弱化竖线、
|
|
84
|
+
列表 marker 淡品牌色、表格细线表头浅底、hr 淡线 */
|
|
85
|
+
.prose h3, .prose h4, .prose h5, .prose h6 { color: var(--brand); font-weight: 600; line-height: 1.35; margin: 20px 0 8px; }
|
|
86
|
+
.prose h3 { font-size: 17px; }
|
|
87
|
+
.prose h4 { font-size: 16px; }
|
|
88
|
+
.prose h5, .prose h6 { font-size: 15px; }
|
|
89
|
+
.prose h3:first-child, .prose h4:first-child { margin-top: 0; }
|
|
90
|
+
.prose ul, .prose ol { margin: 10px 0; padding-left: 22px; }
|
|
91
|
+
.prose li { margin: 3px 0; }
|
|
92
|
+
.prose li::marker { color: var(--brand-30); }
|
|
93
|
+
.prose strong { color: var(--brand); }
|
|
94
|
+
.prose a { color: var(--primary); text-decoration: none; }
|
|
95
|
+
.prose a:hover { text-decoration: underline; }
|
|
96
|
+
.prose code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: .85em; background: #f8fafc; border: 1px solid rgba(226, 232, 240, .8); border-radius: 4px; padding: 1px 5px; }
|
|
97
|
+
.prose pre code { background: transparent; border: none; padding: 0; font-size: inherit; }
|
|
98
|
+
.prose blockquote { margin: 12px 0; padding: 2px 0 2px 14px; border-left: 3px solid var(--brand-30); color: var(--brand-60); }
|
|
99
|
+
.prose blockquote p { margin: 6px 0; }
|
|
100
|
+
.prose table { border-collapse: collapse; margin: 12px 0; font-size: 14px; }
|
|
101
|
+
.prose th, .prose td { border: 1px solid var(--border); padding: 6px 12px; text-align: left; }
|
|
102
|
+
.prose th { background: #f8fafc; font-weight: 600; }
|
|
103
|
+
.prose hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
|
|
104
|
+
/* action 管道读序:inputs → 正文 → outputs,各占一块有序列表;io 条目与正文同字体同字号 */
|
|
105
|
+
ol.io-list { margin: 0; padding-left: 24px; font-size: 16px; line-height: 1.75; color: var(--brand); }
|
|
106
|
+
ol.io-list li { padding: 2px 0; }
|
|
107
|
+
/* spec 独立成行放在名字下方(弃括号内联),小一号弱化 */
|
|
108
|
+
.io-spec { display: block; font-size: 13px; line-height: 1.5; color: var(--brand-40); }
|
|
109
|
+
.io-from, .att-meta { color: var(--brand-30); font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 12px; }
|
|
110
|
+
/* from 反解命中的 #编号引用:小号等宽+点状下划线提示可悬停(title=来源节点名) */
|
|
111
|
+
/* 通用悬停气泡(对齐 hub Tooltip.tsx 皮肤):白底深蓝字+浅边框+投影,hover .5s 延迟出现 */
|
|
112
|
+
[data-tip] { position: relative; }
|
|
113
|
+
[data-tip]::after { content: attr(data-tip); position: absolute; left: 50%; bottom: calc(100% + 6px); transform: translateX(-50%); background: #fff; color: var(--brand); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; font-size: 12px; line-height: 1.4; padding: 2px 8px; border: 1px solid rgba(226, 232, 240, .9); border-radius: 6px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s ease .5s; z-index: 20; }
|
|
114
|
+
[data-tip]:hover::after { opacity: 1; }
|
|
115
|
+
/* 侧栏 tab 的气泡朝下翻:tab 贴侧栏顶,朝上会被 .side 的 overflow-y:auto 裁剪
|
|
116
|
+
(absolute 元素出不了滚动容器,非 z-index 问题),朝下空间无限不受裁 */
|
|
117
|
+
.side-tab[data-tip]::after { bottom: auto; top: calc(100% + 6px); }
|
|
118
|
+
/* from 反解命中的 #编号引用:可点跳转(data-path 委托) */
|
|
119
|
+
.io-ref { color: var(--brand-50); font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 13px; cursor: pointer; border-bottom: 1px dotted var(--brand-30); text-decoration: none; }
|
|
120
|
+
.io-ref:hover { color: var(--brand); text-decoration: none; }
|
|
121
|
+
.section-sm { margin-top: 18px; }
|
|
122
|
+
.section-sm .label { font-size: 12px; font-weight: 600; color: var(--brand-50); margin-bottom: 6px; }
|
|
123
|
+
.att-list li { padding: 4px 0; }
|
|
124
|
+
.child-card { border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; margin-bottom: 8px; font-size: 14px; color: var(--brand-60); background: #fff; }
|
|
125
|
+
button.child-card { width: 100%; text-align: left; cursor: pointer; font: inherit; }
|
|
126
|
+
button.child-card:hover { border-color: var(--brand); color: var(--brand); }
|
|
127
|
+
.child-desc { font-size: 12px; color: var(--brand-40); margin-top: 2px; display: block; }
|
|
128
|
+
/* 选项卡:无字母圈,内容竖直居中;选项名=大标题同色(--brand),描述回落全局 child-desc 浅色 */
|
|
129
|
+
.choice-card { display: flex; align-items: center; width: 100%; text-align: left; border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 8px; background: #fff; cursor: pointer; font: inherit; color: var(--brand); }
|
|
130
|
+
.choice-card:hover { border-color: var(--brand); background: rgba(0, 51, 102, .04); }
|
|
131
|
+
/* 底部导航固定在视口底部:位置恒定,不随内容高度漂移;内行与正文列同宽对齐 */
|
|
132
|
+
/* 底部操作区:固定视口底悬浮于内容列上方,无分界线(仅极轻投影托起),行与正文列同宽 */
|
|
133
|
+
.nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 10; background: #fff; padding: 10px 24px; box-shadow: 0 -1px 8px rgba(0, 51, 102, .03); }
|
|
134
|
+
.nav-row { max-width: 48rem; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
|
|
135
|
+
.btn { padding: 8px 16px; border: 1px solid #d1d5db; border-radius: 8px; background: #fff; color: var(--brand-60); font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; }
|
|
136
|
+
.btn:hover { background: var(--hover-bg); text-decoration: none; }
|
|
137
|
+
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
|
|
138
|
+
.btn-primary:hover { background: #1f2937; }
|
|
139
|
+
.nav-hint { font-size: 13px; color: var(--brand-40); }
|
|
140
|
+
.finish { font-size: 13px; color: var(--brand-40); }
|
|
141
|
+
/* ── 详情页外壳:左侧大纲栏(sticky 侧栏)+ 内容列;窄屏侧栏隐藏回单列 ── */
|
|
142
|
+
.shell { display: flex; align-items: flex-start; }
|
|
143
|
+
.shell main { flex: 1; min-width: 0; }
|
|
144
|
+
.side { display: none; }
|
|
145
|
+
.side-count { font-size: 12px; font-weight: 500; color: var(--brand-40); margin: 0 0 8px; }
|
|
146
|
+
.side-item { display: block; border-radius: 6px; padding: 6px 10px; font-size: 13px; line-height: 1.45; color: var(--brand-60); }
|
|
147
|
+
.side-item:hover { color: var(--brand); text-decoration: none; background: rgba(0, 51, 102, .04); }
|
|
148
|
+
.side-item.on { background: rgba(0, 51, 102, .08); color: var(--brand); font-weight: 500; }
|
|
149
|
+
.side-num { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 11px; color: var(--brand-30); margin-right: 6px; }
|
|
150
|
+
.side-item.on .side-num { color: var(--brand-50); }
|
|
151
|
+
.side-root { font-weight: 600; color: var(--brand-60); margin-bottom: 4px; }
|
|
152
|
+
/* 侧栏底部附加区:revisions/refines 汇总(段空不出现) */
|
|
153
|
+
.side-sec { margin-top: 14px; padding-top: 10px; border-top: 1px solid var(--border); }
|
|
154
|
+
.side-note { display: block; border-radius: 6px; padding: 4px 10px; font-size: 12px; line-height: 1.45; color: var(--brand-40); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
155
|
+
a.side-note:hover { color: var(--brand); text-decoration: none; background: rgba(0, 51, 102, .04); }
|
|
156
|
+
.side-note.mono { display: inline; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 11px; padding: 0; }
|
|
157
|
+
.side-note-row { display: flex; align-items: baseline; gap: 6px; min-width: 0; }
|
|
158
|
+
.side-note-row .side-note.plain { flex: 1; min-width: 0; }
|
|
159
|
+
/* 档案底仓:钉在侧栏最底(flex 末位),大纲长过侧栏时随滚动自然跟在内容后 */
|
|
160
|
+
.side-foot { margin-top: auto; padding-top: 4px; }
|
|
161
|
+
@media (min-width: 1024px) {
|
|
162
|
+
.side { display: flex; flex-direction: column; position: sticky; top: 49px; height: calc(100dvh - 49px); overflow-y: auto; width: 16rem; flex: none; border-right: 1px solid var(--border); background: #f8fafc; padding: 12px 14px 24px; }
|
|
163
|
+
/* 操作区只覆盖内容列:left 让出侧栏,侧栏档案区完整可见 */
|
|
164
|
+
.nav { left: 16rem; }
|
|
165
|
+
}
|
|
166
|
+
/* 视图三 tab(侧栏最顶):向导正文 / StandardView / document,切换内容区形态。
|
|
167
|
+
共用一枚胶囊:容器持边框与圆角,tab 自身无边框,选中以胶囊内填充块呈现 */
|
|
168
|
+
.side-tabs { display: flex; gap: 2px; margin-bottom: 12px; padding: 3px; border: 1px solid var(--border); border-radius: 999px; background: #fff; }
|
|
169
|
+
.side-tab { flex: 1; border: none; border-radius: 999px; background: transparent; color: var(--brand-40); font: inherit; font-size: 12px; padding: 4px 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
|
|
170
|
+
.side-tab svg { width: 16px; height: 16px; }
|
|
171
|
+
.side-tab:hover { color: var(--brand); }
|
|
172
|
+
.side-tab.on { background: rgba(0, 51, 102, .1); color: var(--brand); font-weight: 500; }
|
|
173
|
+
/* JSON 视图:pretty 渲染,当前节点/其子树 steps 命中行整行铺浅蓝底(编辑器选中行形态) */
|
|
174
|
+
.json-pre { margin: 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 13px; line-height: 1.6; color: var(--brand); overflow-x: auto; white-space: pre; }
|
|
175
|
+
.json-pre .jk { color: var(--brand-60); }
|
|
176
|
+
/* 行级块:短行铺满可视宽、长行铺到内容末尾,高亮行首尾与缩进、逗号全部入色带 */
|
|
177
|
+
.json-pre .ln { display: block; width: max-content; min-width: 100%; }
|
|
178
|
+
.json-pre .ln.hl { background: rgba(0, 51, 102, .08); scroll-margin-top: 64px; }
|
|
179
|
+
/* revisions 折叠:节点自己的变更史,默认收起,好奇点开 */
|
|
180
|
+
/* revisions 折叠已删:revisions/refines 汇总挪到左侧大纲底部(.side-sec) */
|
|
181
|
+
|
|
182
|
+
/* LR kick */
|