// Generated by CoffeeScript 2.0.1 (function() { var data, init; data = void 0; init = async function() { // Data loading data || (data = (await fetch('data.json').then(function(response) { return response.json(); }))); // Set code text as the loaded prettified JSON document.querySelector('code').innerHTML = JSON.stringify(data, null, " "); // Highlights the JSON return hljs.highlightBlock(document.querySelector('code')); }; init(); }).call(this);