Fix highlighting bug

raw_icon
John Crepezzi 14 years ago
parent 29651ebfd5
commit 895485e410
  1. 1
      TODO.md
  2. 3
      static/application.js
  3. 2
      static/application.min.js

@ -5,4 +5,3 @@
* Add file extensions ourselves to push state
* Better about page text
* add feedback for errors to UI - esp. too long
* html escape everything

@ -17,7 +17,8 @@ haste_document.prototype.load = function(key, callback, lang) {
try {
var high = lang ? hljs.highlight(lang, res.data) : hljs.highlightAuto(res.data);
} catch(err) {
high = { value: res.data, language: null };
// failed highlight, fall back on auto
high = hljs.highlightAuto(res.data);
}
callback({
value: high.value,

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save