'\\' at the end of block does not cause hard break.

This commit is contained in:
Martin Mitas 2016-10-05 11:33:25 +02:00
parent f06fe013e2
commit c2eca50a1c

View File

@ -379,7 +379,9 @@ md_analyze_inlines(MD_CTX* ctx, const MD_LINE* lines, int n_lines)
* Note it can go beyond line->end as it may involve
* escaped new line to form a hard break. */
if(ch == _T('\\') && off+1 < ctx->size && (ISPUNCT(off+1) || ISNEWLINE(off+1))) {
PUSH(ch, off, off+2, MD_MARK_ACTIVE);
/* Hard-break cannot be on the last line of the block. */
if(!ISNEWLINE(off+1) || i+1 < n_lines)
PUSH(ch, off, off+2, MD_MARK_ACTIVE);
off += 2;
continue;
}