When using the parse
dialect, how to parse tags that have properties enclosed by '
or '"`, as in:
thru <h2 class="txt-medium txt-bold">
thru <h2 class='txt-medium txt-bold'>
One way was to do:
thru {<h2 class=} thru {txt-medium txt-bold} thru ">"
Tried to use the |
or operator but with no success. Can I use the |
operator to parse the tag?