hellux/jotdown

bug: consecutive attributes are ignored

hellux opened this issue · 1 comments

e.g.

word{.a}{#b}

turns into

Start(Paragraph, {})
Start(Span, {class="a"})
Str("word")
End(Span)
End(Paragraph)

instead of

Start(Paragraph, {})
Start(Span, {class="a", id="b"})
Str("word")
End(Span)
End(Paragraph)

resolved by #30