in assets/js/documentation.js [9:18]
function convertDone(html) {
var includecommon = $('#doccontent').attr('data-include-common');
if (includecommon === 'true') {
markdownApi.convert('../documentation/md/common.md', function(commonHtml) {
updateContent(html, commonHtml);
});
} else {
updateContent(html);
}
}