Stubble v1.0.0-alpha19 Release Notes

Release Date: 2018-07-02 // almost 6 years ago
    • ➕ Added the ability to skip HTML encoding by default without using triple {{{ tags. We're trusting you developers! (thanks to @Elringus for the request) #23
      To use this feature when passing render settings to the render method add the following:

      var stubble = new StubbleBuilder().Build();var result = await stubble.RenderAsync("{{Html}}\n{{{Html}}}", new { Html = "<b>Bold!</b>"}, new RenderSettings{ SkipHtmlEncoding = true});Assert.Equal("<b>Bold!</b>\n<b>Bold!</b>", result);

    • Migrated to portable PDBs which allow debugging on unix systems and now you can use sourcelink to debug the source on github! #11