@Scrum how would you go about ensuring the parser/renderer leaves this code block alone and renders it as-is? ```html <#if count = 0> test <#else> other </#if> ``` Right now, the closing `</#if>` is turned into a comment and no tag is recognized, even if we define a directive like: ```js [{name: '#if', start: '<', end: '>'}] ``` Or maybe I'm doing something wrong in the directive? Thanks!