Browse Source

Highlight: Use marked options.

master
Maciej Smolinski 10 years ago
parent
commit
74ed0744ec
  1. 94
      resources/public/js/highlight.js
  2. 4
      resources/public/js/publishing.js

94
resources/public/js/highlight.js

@ -7,53 +7,16 @@ @@ -7,53 +7,16 @@
* High Level API:
*
* // Load basic dependencies and language support for present code tags
*
* highlight.init()
*
*
* // Re-highlights all code tags on demand
* // Useful when markdown has been parsed again
* // and new language occurred in the output for example
*
* highlight.update();
* api.init()
*
*
* Hooks To:
*
* 'document:loaded' ~> highlight.init();
* 'content:rendered' ~> highlight.update();
*
*/
(function (global) {
// Simplified debounce version (no args support)
function debounce(callback, milliseconds) {
var timeout;
return function () {
clearTimeout(timeout);
timeout = setTimeout(function () {
callback();
}, milliseconds);
};
}
// Highlight callback
function highlight() {
if (!('Prism' in global)) {
throw new Error(
'[Highlight] Prism not detected. Please run `highlight.init` to load all dependencies'
);
}
global.Prism.highlightAll();
}
// Debounced highlight callback
var debouncedHighlight =
debounce(highlight, 300);
// Load minimal requirements
function loadInitialScriptsAndStyles() {
var link =
@ -62,9 +25,6 @@ @@ -62,9 +25,6 @@
var mainScript =
document.createElement('script');
var autoloaderScript =
document.createElement('script');
link.rel =
'stylesheet';
@ -74,19 +34,42 @@ @@ -74,19 +34,42 @@
mainScript.src =
'https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/prism.min.js';
autoloaderScript.src =
'https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/plugins/autoloader/prism-autoloader.min.js';
mainScript.addEventListener('load', function () {
// Load autoloader after Prism loads
document.body.appendChild(autoloaderScript);
// Escape early if back-end rendering is used
if (!('marked' in global)) {
// @TODO Autoload er
return Prism.highlightAll();
}
// Set up autoloading
marked.setOptions({
highlight: function (code, language) {
if (!(language in Prism.languages)) {
var additionalLanguageScript =
document.createElement('script');
additionalLanguageScript.src =
'https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/components/prism-' + language + '.min.js';
// On success, highlight code for given language
additionalLanguageScript.addEventListener('load', function () {
[].forEach.call(document.querySelectorAll('.lang-' + language), function (element) {
Prism.highlightElement(element);
});
});
// Remove if language not available
additionalLanguageScript.addEventListener('error', function () {
document.body.removeChild(additionalLanguageScript);
});
autoloaderScript.addEventListener('load', function () {
global.Prism.plugins.autoloader.languages_path =
'https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/components/';
document.body.appendChild(additionalLanguageScript);
}
return Prism.highlight(code, Prism.languages[language] || Prism.languages.markup);
},
});
global.highlight.update();
});
document.head.appendChild(link);
@ -94,22 +77,15 @@ @@ -94,22 +77,15 @@
}
// High Level API
global.highlight = global.highlight || {
var api = {
init: function () {
loadInitialScriptsAndStyles();
},
update: function () {
debouncedHighlight();
},
};
// Hooks
if ('events' in global) {
events.subscribe('document:loaded', global.highlight.init);
events.subscribe('content:rendered', global.highlight.update);
events.subscribe('document:loaded', api.init);
}
}(window));

4
resources/public/js/publishing.js

@ -24,10 +24,12 @@ function enableButton() { @@ -24,10 +24,12 @@ function enableButton() {
button.disabled = !checkbox.checked;
}
function onLoad() {
document.addEventListener('DOMContentLoaded', function () {
// Hook point
events.publish('document:loaded');
});
function onLoad() {
$note = $("note");
$action = $("action").value;
$preview = $("draft");

Loading…
Cancel
Save