mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
on highlight error, return data
This commit is contained in:
parent
6285d665ad
commit
8281d382e4
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ haste_document.prototype.load = function(key, callback, lang) {
|
|||
try {
|
||||
var high = lang ? hljs.highlight(lang, res.data) : hljs.highlightAuto(res.data);
|
||||
} catch(err) {
|
||||
high = hljs.highlightAuto(res.data);
|
||||
high = { value: res.data, language: null };
|
||||
}
|
||||
callback({
|
||||
value: high.value,
|
||||
|
|
Loading…
Reference in a new issue