diff --git a/app/application/resources/prism/app.js b/app/application/resources/prism/app.js index 5112a78..76d001a 100644 --- a/app/application/resources/prism/app.js +++ b/app/application/resources/prism/app.js @@ -19,6 +19,9 @@ import "prismjs/components/prism-docker.js"; import "prismjs/components/prism-diff.js"; import "prismjs/components/prism-php.js"; import "prismjs/components/prism-yaml.js"; +import "prismjs/components/prism-bash.js" +import "prismjs/components/prism-json.js" +import "prismjs/components/prism-toml.js" import "prismjs/plugins/toolbar/prism-toolbar.css"; diff --git a/app/application/resources/views/components/volt/forms/textarea-wysiwyg.blade.php b/app/application/resources/views/components/volt/forms/textarea-wysiwyg.blade.php index c89074c..4a9b130 100644 --- a/app/application/resources/views/components/volt/forms/textarea-wysiwyg.blade.php +++ b/app/application/resources/views/components/volt/forms/textarea-wysiwyg.blade.php @@ -113,6 +113,9 @@ codesample_languages: [ {text: 'HTML/XML', value: 'markup'}, {text: 'JavaScript', value: 'javascript'}, + {text: 'Bash', value: 'bash'}, + {text: 'SH', value: 'sh'}, + {text: 'Shell', value: 'shell'}, {text: 'CSS', value: 'css'}, {text: 'PHP', value: 'php'}, {text: 'Ruby', value: 'ruby'}, @@ -124,7 +127,9 @@ {text: 'Go', value: 'go'}, {text: 'Nginx', value: 'nginx'}, {text: 'Docker', value: 'docker'}, - {text: 'Yaml', value: 'yaml'}, + {text: 'YAML', value: 'yaml'}, + {text: 'TOML', value: 'toml'}, + {text: 'Json', value: 'json'}, {text: "Treeview", value: "treeview"}, {text: "Diff", value: "diff"}, ],