hmmlib2 2.0.9: Add ()"% as break_on_punct chars

This commit is contained in:
Matt Mascarenhas 2021-05-27 16:11:12 +01:00
parent 9a31a1b10c
commit b20192e445
1 changed files with 2 additions and 2 deletions

View File

@ -299,7 +299,7 @@ static char* _hmml_read_attr(struct _hmml_parser* p, char* mem, size_t mem_size,
p->cursor = src+1;
} else {
const char* breaks = break_on_punct
? " ]\r\n\t:,'-.#=[\\?!…"
? " ]\r\n\t:,'-.#=[\\?!…()\"%"
: " ]\r\n\t"
;
@ -813,7 +813,7 @@ void hmml_free(HMML_Output* out)
}
const struct HMML_Version hmml_version = {
2, 0, 8
2, 0, 9
};
#undef HSTX