Merge pull request #174 from davidszotten/non_enclosing_angle_brackets

only remove enclosing angle brackets
This commit is contained in:
Xavier Mendez 2015-09-19 21:38:15 +02:00
commit ca4609d56a

View file

@ -1199,8 +1199,10 @@ char_link(hoedown_buffer *ob, hoedown_document *doc, uint8_t *data, size_t offse
link_e--;
/* remove optional angle brackets around the link */
if (data[link_b] == '<') link_b++;
if (data[link_e - 1] == '>') link_e--;
if (data[link_b] == '<' && data[link_e - 1] == '>') {
link_b++;
link_e--;
}
/* building escaped link and title */
if (link_e > link_b) {