Handlebars process
$(document).ready(function() {
var source = $('#text-template').html();
var template = Handlebars.compile(source);
var html = template(data);
$('#text').html(html);
});
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
$(document).ready(function() {
var source = $('#text-template').html();
var template = Handlebars.compile(source);
var html = template(data);
$('#text').html(html);
});