]>
BookStack Code Mirror - bookstack/blob - resources/js/components/code-highlighter.js
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'feature_change_view_in_shelves_show' of git://github.com/philjak/BookSt...
[bookstack]
/
resources
/
js
/
components
/
code-highlighter.js
1
import Code from "../services/code"
2
class CodeHighlighter {
3
4
constructor(elem) {
5
Code.highlightWithin(elem);
6
}
7
8
}
9
10
export default CodeHighlighter;