Skip to content

Instantly share code, notes, and snippets.

View nallerooth's full-sized avatar

Nalle Rooth nallerooth

View GitHub Profile

Keybase proof

I hereby claim:

  • I am nallerooth on github.
  • I am nallerooth (https://keybase.io/nallerooth) on keybase.
  • I have a public key ASATSibs5E1MqmK9hFW8UR6SluT8lFSnnnZN9LsAQYIPTgo

To claim this, I am signing this object:

@nallerooth
nallerooth / BlogTest.js
Last active December 18, 2015 20:07
Blog Test gist
var init = function () {
function renderMarkdown(srcId, dstId) {
var src = document.getElementById(srcId);
var dst = document.getElementById(dstId);
var process = null;
// Add some comments to this before deploy
process = function () {
dst.innerHTML = markdown.toHTML(src.value);
};