✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
65 lines
1.3 KiB
JavaScript
65 lines
1.3 KiB
JavaScript
(function (Prism) {
|
|
|
|
Prism.languages.diff = {
|
|
'coord': [
|
|
// Match all kinds of coord lines (prefixed by "+++", "---" or "***").
|
|
/^(?:\*{3}|-{3}|\+{3}).*$/m,
|
|
// Match "@@ ... @@" coord lines in unified diff.
|
|
/^@@.*@@$/m,
|
|
// Match coord lines in normal diff (starts with a number).
|
|
/^\d.*$/m
|
|
]
|
|
|
|
// deleted, inserted, unchanged, diff
|
|
};
|
|
|
|
/**
|
|
* A map from the name of a block to its line prefix.
|
|
*
|
|
* @type {Object<string, string>}
|
|
*/
|
|
var PREFIXES = {
|
|
'deleted-sign': '-',
|
|
'deleted-arrow': '<',
|
|
'inserted-sign': '+',
|
|
'inserted-arrow': '>',
|
|
'unchanged': ' ',
|
|
'diff': '!',
|
|
};
|
|
|
|
// add a token for each prefix
|
|
Object.keys(PREFIXES).forEach(function (name) {
|
|
var prefix = PREFIXES[name];
|
|
|
|
var alias = [];
|
|
if (!/^\w+$/.test(name)) { // "deleted-sign" -> "deleted"
|
|
alias.push(/\w+/.exec(name)[0]);
|
|
}
|
|
if (name === 'diff') {
|
|
alias.push('bold');
|
|
}
|
|
|
|
Prism.languages.diff[name] = {
|
|
pattern: RegExp('^(?:[' + prefix + '].*(?:\r\n?|\n|(?![\\s\\S])))+', 'm'),
|
|
alias: alias,
|
|
inside: {
|
|
'line': {
|
|
pattern: /(.)(?=[\s\S]).*(?:\r\n?|\n)?/,
|
|
lookbehind: true
|
|
},
|
|
'prefix': {
|
|
pattern: /[\s\S]/,
|
|
alias: /\w+/.exec(name)[0]
|
|
}
|
|
}
|
|
};
|
|
|
|
});
|
|
|
|
// make prefixes available to Diff plugin
|
|
Object.defineProperty(Prism.languages.diff, 'PREFIXES', {
|
|
value: PREFIXES
|
|
});
|
|
|
|
}(Prism));
|