simplify for better results

This commit is contained in:
dre 2021-07-11 14:55:26 +08:00
parent 31f3a95ee0
commit 35923fdca0
2 changed files with 3 additions and 2 deletions

View file

@ -20,7 +20,8 @@ comment -->
<!--
multi line comment block, terminated.
With a break line, <!-- and inline comments -->
With a break line, <!-- and multi line
inline comments -->
and [with a](link);
-->

View file

@ -62,7 +62,7 @@ func wrap(m *fsm, data []byte) (*fsm, []byte) {
}
// clip entire line
if m.multiLineBlockMode > 0 && scount-ecount == 0 {
if m.multiLineBlockMode > 0 {
data = data[:0]
return m, data
}