Gollum Export - bootstraponline/meta GitHub Wiki

Exporting HTML from Gollum to Google Docs requires <br> tags after <p> for proper spacing.

// Run in Chrome
$x("//*/p").forEach(function(e){
 e.parentNode.insertBefore(document.createElement('br'), e.nextSibling);
});