147f04ca76
* Kubernetes 1.8 reference docs * Kubectl reference docs for 1.8 * Update side bar with 1.8 kubectl and api ref docs links
24 lines
682 B
JavaScript
24 lines
682 B
JavaScript
module.exports = function(hljs) {
|
|
return {
|
|
aliases: ['clean','icl','dcl'],
|
|
keywords: {
|
|
keyword:
|
|
'if let in with where case of class instance otherwise ' +
|
|
'implementation definition system module from import qualified as ' +
|
|
'special code inline foreign export ccall stdcall generic derive ' +
|
|
'infix infixl infixr',
|
|
literal:
|
|
'True False'
|
|
},
|
|
contains: [
|
|
|
|
hljs.C_LINE_COMMENT_MODE,
|
|
hljs.C_BLOCK_COMMENT_MODE,
|
|
hljs.APOS_STRING_MODE,
|
|
hljs.QUOTE_STRING_MODE,
|
|
hljs.C_NUMBER_MODE,
|
|
|
|
{begin: '->|<-[|:]?|::|#!?|>>=|\\{\\||\\|\\}|:==|=:|\\.\\.|<>|`'} // relevance booster
|
|
]
|
|
};
|
|
}; |