yavsc/BookAStar/BookAStar.Droid/Html.cs
Paul Schneider 4d7de134ce Implements Markdown editor
as a WebView using Quill.js
2016-09-10 00:52:22 +02:00

12 lines
No EOL
191 B
C#

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));
}
}