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-typescript')
|
||||||
require('prismjs/components/prism-jsx')
|
require('prismjs/components/prism-jsx')
|
||||||
require('prismjs/components/prism-makefile')
|
require('prismjs/components/prism-makefile')
|
||||||
|
require('prismjs/components/prism-gherkin')
|
||||||
|
|
||||||
import Prism from 'prismjs'
|
import Prism from 'prismjs'
|
||||||
import hljs from 'highlight.js'
|
import hljs from 'highlight.js'
|
||||||
|
@ -510,7 +511,7 @@ export function finishView (view) {
|
||||||
result = {
|
result = {
|
||||||
value: code
|
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
|
code = S(code).unescapeHTML().s
|
||||||
result = {
|
result = {
|
||||||
value: Prism.highlight(code, Prism.languages[reallang])
|
value: Prism.highlight(code, Prism.languages[reallang])
|
||||||
|
|
|
@ -92,7 +92,7 @@ var cursorMenuThrottle = 50
|
||||||
var cursorActivityDebounce = 50
|
var cursorActivityDebounce = 50
|
||||||
var cursorAnimatePeriod = 100
|
var cursorAnimatePeriod = 100
|
||||||
var supportContainers = ['success', 'info', 'warning', 'danger']
|
var supportContainers = ['success', 'info', 'warning', 'danger']
|
||||||
var supportCodeModes = ['javascript', 'typescript', 'jsx', 'htmlmixed', 'htmlembedded', 'css', 'xml', 'clike', 'clojure', 'ruby', 'python', 'shell', 'php', 'sql', 'haskell', 'coffeescript', 'yaml', 'pug', 'lua', 'cmake', 'nginx', 'perl', 'sass', 'r', 'dockerfile', 'tiddlywiki', 'mediawiki', 'go']
|
var supportCodeModes = ['javascript', 'typescript', 'jsx', 'htmlmixed', 'htmlembedded', 'css', 'xml', 'clike', 'clojure', 'ruby', 'python', 'shell', 'php', 'sql', 'haskell', 'coffeescript', 'yaml', 'pug', 'lua', 'cmake', 'nginx', 'perl', 'sass', 'r', 'dockerfile', 'tiddlywiki', 'mediawiki', 'go', 'gherkin']
|
||||||
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc']
|
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc']
|
||||||
var supportHeaders = [
|
var supportHeaders = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue