Implements Markdown editor

as a WebView using Quill.js
This commit is contained in:
Paul Schneider 2016-09-10 00:52:22 +02:00
commit 4d7de134ce
26 changed files with 52369 additions and 8 deletions

View file

@ -0,0 +1,12 @@

using System;
public static class Html
{
public static Action<System.IO.TextWriter> Write(object o)
{
return new Action<System.IO.TextWriter>(w => w.Write(o));
}
}