Initial commit.
Signed-off-by: Andreas Widen <aw@luflow.net>
This commit is contained in:
commit
a4a5c7daa5
1389 changed files with 241399 additions and 0 deletions
52
static/highlight/es/languages/dockerfile.js
Normal file
52
static/highlight/es/languages/dockerfile.js
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*! `dockerfile` grammar compiled for Highlight.js 11.11.1 */
|
||||
var hljsGrammar = (function () {
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
Language: Dockerfile
|
||||
Requires: bash.js
|
||||
Author: Alexis Hénaut <alexis@henaut.net>
|
||||
Description: language definition for Dockerfile files
|
||||
Website: https://docs.docker.com/engine/reference/builder/
|
||||
Category: config
|
||||
*/
|
||||
|
||||
/** @type LanguageFn */
|
||||
function dockerfile(hljs) {
|
||||
const KEYWORDS = [
|
||||
"from",
|
||||
"maintainer",
|
||||
"expose",
|
||||
"env",
|
||||
"arg",
|
||||
"user",
|
||||
"onbuild",
|
||||
"stopsignal"
|
||||
];
|
||||
return {
|
||||
name: 'Dockerfile',
|
||||
aliases: [ 'docker' ],
|
||||
case_insensitive: true,
|
||||
keywords: KEYWORDS,
|
||||
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 shell',
|
||||
starts: {
|
||||
end: /[^\\]$/,
|
||||
subLanguage: 'bash'
|
||||
}
|
||||
}
|
||||
],
|
||||
illegal: '</'
|
||||
};
|
||||
}
|
||||
|
||||
return dockerfile;
|
||||
|
||||
})();
|
||||
;
|
||||
export default hljsGrammar;
|
||||
Loading…
Reference in a new issue