CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
17 lines
546 B
JavaScript
17 lines
546 B
JavaScript
Prism.languages.matlab = {
|
|
'comment': [
|
|
/%\{[\s\S]*?\}%/,
|
|
/%.+/
|
|
],
|
|
'string': {
|
|
pattern: /\B'(?:''|[^'\r\n])*'/,
|
|
greedy: true
|
|
},
|
|
// FIXME We could handle imaginary numbers as a whole
|
|
'number': /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[eE][+-]?\d+)?(?:[ij])?|\b[ij]\b/,
|
|
'keyword': /\b(?:NaN|break|case|catch|continue|else|elseif|end|for|function|if|inf|otherwise|parfor|pause|pi|return|switch|try|while)\b/,
|
|
'function': /\b(?!\d)\w+(?=\s*\()/,
|
|
'operator': /\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,
|
|
'punctuation': /\.{3}|[.,;\[\](){}!]/
|
|
};
|