Skip to content

Commit

Permalink
Attempted fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Oct 30, 2023
1 parent 4d0c1d3 commit c7a5efb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/resources/js/highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import http from "highlight.js/lib/languages/http";
import properties from "highlight.js/lib/languages/properties";
import xml from "highlight.js/lib/languages/xml";

ready(function () {
hljs.registerLanguage('http', http);
hljs.registerLanguage('properties', properties);
hljs.registerLanguage('xml', xml);
});
hljs.registerLanguage('http', http);
hljs.registerLanguage('properties', properties);
hljs.registerLanguage('xml', xml);
alert('DEBUG');

export let hljs;

0 comments on commit c7a5efb

Please sign in to comment.