zedr0n

Results 4 comments of zedr0n

Just had a go at supporting PNG images and it seems to be working fine. See [Commit](https://github.com/zedr0n/icsharp/commit/442459b278d239d6d522291dd73c45b09a461fe9) And then the code ``` #r System.Drawing using System.Drawing; using System.Drawing.Imaging; public static...

Html seems to be possible as well automatically but need a proper function to check for presence of tags. See [commit](https://github.com/zedr0n/icsharp/commit/0a5206b102611f27ee3298d8c05d3ede50a7ea63) ``` var html = @"Bold" + "" + "Italic";...

Re the design concerns. While it might be nice to be able to specify explicitly in user code the return type it's a bit cumbersome dependencies wise. What would need...

Here's also an example of directly returning HTML with embedded images ``` using System.Math; public static partial class Test { public static string Html() { var html = @""; return...