Consider changing > character in pipes
izolate opened this issue · 2 comments
izolate commented
I'm having trouble with the >
character in the following pipe:
<h1>{{title|blank>N/A}}</h1>
This conflicts with the Element.innerHTML
method due to it returning <
as >
h1.innerHTML // <h1>{{title|blank>N/A}}</h1>
Please consider using an alternate character or different syntax. Cheers.
adammark commented
Thanks for the feedback. See https://github.com/adammark/Markup.js#changing-the-argument-delimiter
Adam
izolate commented
I need to learn how to read. Thanks for this.