smartdown
Version:
A library for translating, rendering and interacting with Smartdown documents. Smartdown is an extension of Markdown that provides richer media support and reactive programming capability.
18 lines (16 loc) • 561 B
JavaScript
var baseURL = 'https://smartdown.site/';
if (typeof smartdownBaseURL === 'string') {
baseURL = smartdownBaseURL;
}
var starterScript = baseURL + 'lib/starter.js';
var head = document.head || document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = starterScript;
script.onerror = function loadError(error) {
throw new URIError('The script ' + error.target.src + ' is not accessible.');
};
script.onload = function (x) {
window.smartdownStarter();
};
head.appendChild(script);