Skip to content

Instantly share code, notes, and snippets.

@sbp
Created October 2, 2011 10:50
Show Gist options
  • Save sbp/1257340 to your computer and use it in GitHub Desktop.
Save sbp/1257340 to your computer and use it in GitHub Desktop.
Add paragraphs and style to HTML
(function() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'style.css';
document.head.appendChild(link);
})();
window.onload = function() {
document.body.innerHTML = document.body.innerHTML
.replace(/\n\n/g, '<p>')
.replace(/\n/g, '<br>');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment