Merge branch 'next'

This commit is contained in:
Isiah Meadows 2018-12-06 00:34:15 -05:00
commit aacfda739a
81 changed files with 6700 additions and 2285 deletions

View file

@ -28,7 +28,7 @@ var Editor = {
view: function() {
return [
m("textarea.input", {
oninput: m.withAttr("value", state.update),
oninput: function (e) { state.update(e.traget.value) },
value: state.text
}),
m(".preview", m.trust(marked(state.text))),