blob: 076dcf37452ecaee7eea69c34defc91e5e57b60c (
plain)
1
2
3
4
5
6
|
if (typeof window !== "undefined") {
// Prevent Prism from auto-highlighting every code block on page load.
// We only want explicit highlight() calls inside YueCompiler.
window.Prism = window.Prism || {};
window.Prism.manual = true;
}
|