Update to support code block syntax highlighting of gherkin

This commit is contained in:
Wu Cheng-Han 2017-05-05 18:03:23 +08:00
parent 38a7c373e7
commit e32dd547b4
2 changed files with 3 additions and 2 deletions

View file

@ -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])