mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 18:25:21 -04:00
Update to support code block syntax highlighting of gherkin
This commit is contained in:
parent
38a7c373e7
commit
e32dd547b4
2 changed files with 3 additions and 2 deletions
|
@ -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])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue