function penroseLanguage(type) {
let keywords = null;
if (type === "dsl") {
keywords = "type value constructor function predicate notation Prop";
}
if (type === "sty") {
keywords =
"forall where with delete as true false layer encourage ensure override bove below";
}
if (type === "sub") {
keywords = "AutoLabel Label NoLabel All";
}
const COMMENT = {
variants: [highlightjs.COMMENT('--', '$'), highlightjs.C_BLOCK_COMMENT_MODE]
};
return function(hljs) {
return {
name: `Penrose-${type}`,
alias: [type],
aliases: ['penrose'],
keywords: keywords,
contains: [COMMENT, highlightjs.QUOTE_STRING_MODE]
};
};
}