summaryrefslogtreecommitdiff
path: root/public/js/extra.js
diff options
context:
space:
mode:
authorWu Cheng-Han2017-05-05 18:03:23 +0800
committerWu Cheng-Han2017-05-05 18:03:23 +0800
commite32dd547b4f4fcc581425aaf594dc859d81aa830 (patch)
tree8603ad77f84eb8680b839d5f9f9657a7f5d1ef67 /public/js/extra.js
parent38a7c373e7ad5b44bbd437d121902d92940ba9b0 (diff)
Update to support code block syntax highlighting of gherkin
Diffstat (limited to 'public/js/extra.js')
-rw-r--r--public/js/extra.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/public/js/extra.js b/public/js/extra.js
index a5be4251..6febd880 100644
--- a/public/js/extra.js
+++ b/public/js/extra.js
@@ -8,6 +8,7 @@ require('prismjs/components/prism-go')
require('prismjs/components/prism-typescript')
require('prismjs/components/prism-jsx')
require('prismjs/components/prism-makefile')
+require('prismjs/components/prism-gherkin')
import Prism from 'prismjs'
import hljs from 'highlight.js'
@@ -510,7 +511,7 @@ export function finishView (view) {
result = {
value: code
}
- } else if (reallang === 'haskell' || reallang === 'go' || reallang === 'typescript' || reallang === 'jsx') {
+ } else if (reallang === 'haskell' || reallang === 'go' || reallang === 'typescript' || reallang === 'jsx' || reallang === 'gherkin') {
code = S(code).unescapeHTML().s
result = {
value: Prism.highlight(code, Prism.languages[reallang])