mirror of https://github.com/status-im/codimd.git
Update to change makefile syntax highlighting to Prism
This commit is contained in:
parent
a3cdc5ba80
commit
b2985085d0
|
@ -7,6 +7,7 @@ require('prismjs/components/prism-haskell')
|
|||
require('prismjs/components/prism-go')
|
||||
require('prismjs/components/prism-typescript')
|
||||
require('prismjs/components/prism-jsx')
|
||||
require('prismjs/components/prism-makefile')
|
||||
|
||||
import Prism from 'prismjs'
|
||||
import hljs from 'highlight.js'
|
||||
|
@ -516,6 +517,11 @@ export function finishView (view) {
|
|||
result = {
|
||||
value: Prism.highlight(code, Prism.languages.wiki)
|
||||
}
|
||||
} else if (reallang === 'cmake') {
|
||||
code = S(code).unescapeHTML().s
|
||||
result = {
|
||||
value: Prism.highlight(code, Prism.languages.makefile)
|
||||
}
|
||||
} else {
|
||||
code = S(code).unescapeHTML().s
|
||||
const languages = hljs.listLanguages()
|
||||
|
|
Loading…
Reference in New Issue