详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
(function () {
|
|
|
|
if (typeof Prism === 'undefined' || typeof document === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill
|
|
if (!Element.prototype.matches) {
|
|
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
|
|
}
|
|
|
|
|
|
Prism.plugins.UnescapedMarkup = true;
|
|
|
|
Prism.hooks.add('before-highlightall', function (env) {
|
|
env.selector += ', [class*="lang-"] script[type="text/plain"]'
|
|
+ ', [class*="language-"] script[type="text/plain"]'
|
|
+ ', script[type="text/plain"][class*="lang-"]'
|
|
+ ', script[type="text/plain"][class*="language-"]';
|
|
});
|
|
|
|
Prism.hooks.add('before-sanity-check', function (env) {
|
|
/** @type {HTMLElement} */
|
|
var element = env.element;
|
|
|
|
if (element.matches('script[type="text/plain"]')) {
|
|
// found a <script type="text/plain" ...> element
|
|
// we convert this element to a regular <pre><code> code block
|
|
|
|
var code = document.createElement('code');
|
|
var pre = document.createElement('pre');
|
|
|
|
// copy class name
|
|
pre.className = code.className = element.className;
|
|
|
|
// copy all "data-" attributes
|
|
var dataset = element.dataset;
|
|
Object.keys(dataset || {}).forEach(function (key) {
|
|
if (Object.prototype.hasOwnProperty.call(dataset, key)) {
|
|
pre.dataset[key] = dataset[key];
|
|
}
|
|
});
|
|
|
|
code.textContent = env.code = env.code.replace(/<\/script(?:>|>)/gi, '</scri' + 'pt>');
|
|
|
|
// change DOM
|
|
pre.appendChild(code);
|
|
element.parentNode.replaceChild(pre, element);
|
|
env.element = code;
|
|
return;
|
|
}
|
|
|
|
if (!env.code) {
|
|
// no code
|
|
var childNodes = element.childNodes;
|
|
if (childNodes.length === 1 && childNodes[0].nodeName == '#comment') {
|
|
// the only child is a comment -> use the comment's text
|
|
element.textContent = env.code = childNodes[0].textContent;
|
|
}
|
|
}
|
|
});
|
|
}());
|