Kubernetes 1.6 api reference docs

This commit is contained in:
Phillip Wittrock
2017-03-16 18:29:00 -07:00
parent 21773e77fa
commit 292a9ca3ce
769 changed files with 170879 additions and 0 deletions
@@ -0,0 +1,21 @@
module.exports = function(hljs) {
return {
aliases: ['docker'],
case_insensitive: true,
keywords: 'from maintainer expose env user onbuild',
contains: [
hljs.HASH_COMMENT_MODE,
hljs.APOS_STRING_MODE,
hljs.QUOTE_STRING_MODE,
hljs.NUMBER_MODE,
{
beginKeywords: 'run cmd entrypoint volume add copy workdir label healthcheck',
starts: {
end: /[^\\]\n/,
subLanguage: 'bash'
}
}
],
illegal: '</'
}
};