Skip to content

Instantly share code, notes, and snippets.

@yuya-matsushima
Created August 19, 2012 15:57
Show Gist options
  • Save yuya-matsushima/3395652 to your computer and use it in GitHub Desktop.
Save yuya-matsushima/3395652 to your computer and use it in GitHub Desktop.
var MarkdownViewModel = function () {
"use strict";
this.textData = ko.observable('edit markdown');
this.displayHtml = ko.computed(function () {
return markdown.toHTML(this.textData());
}, this);
};
ko.applyBindings(new MarkdownViewModel());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment