Keyboard shortcuts

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

Handlebars process

$(document).ready(function() {
    var source   = $('#text-template').html();
    var template = Handlebars.compile(source);
    var html    = template(data);
    $('#text').html(html);
});