♻️ Restructure: Move Astro to repository root
BREAKING CHANGE: Astro project is now at repository root - Removed dealplustech-astro subdirectory - Moved all Astro files to root - Updated PostCSS config to .cjs - Removed old Next.js files ✅ 11 pages built successfully ✅ Cookie consent banner included ✅ Privacy/Terms links in footer ✅ Ready for Easypanel deployment (no root dir needed) Migration path: - Old structure: /dealplustech-astro/ - New structure: / (root)
This commit is contained in:
40
dealplustech-astro/node_modules/prismjs/components/prism-xml-doc.js
generated
vendored
40
dealplustech-astro/node_modules/prismjs/components/prism-xml-doc.js
generated
vendored
@@ -1,40 +0,0 @@
|
||||
(function (Prism) {
|
||||
|
||||
/**
|
||||
* If the given language is present, it will insert the given doc comment grammar token into it.
|
||||
*
|
||||
* @param {string} lang
|
||||
* @param {any} docComment
|
||||
*/
|
||||
function insertDocComment(lang, docComment) {
|
||||
if (Prism.languages[lang]) {
|
||||
Prism.languages.insertBefore(lang, 'comment', {
|
||||
'doc-comment': docComment
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
var tag = Prism.languages.markup.tag;
|
||||
|
||||
var slashDocComment = {
|
||||
pattern: /\/\/\/.*/,
|
||||
greedy: true,
|
||||
alias: 'comment',
|
||||
inside: {
|
||||
'tag': tag
|
||||
}
|
||||
};
|
||||
var tickDocComment = {
|
||||
pattern: /'''.*/,
|
||||
greedy: true,
|
||||
alias: 'comment',
|
||||
inside: {
|
||||
'tag': tag
|
||||
}
|
||||
};
|
||||
|
||||
insertDocComment('csharp', slashDocComment);
|
||||
insertDocComment('fsharp', slashDocComment);
|
||||
insertDocComment('vbnet', tickDocComment);
|
||||
|
||||
}(Prism));
|
||||
Reference in New Issue
Block a user