Skip to content

Commit 42535ed

Browse files
authored
fix: append eol after par
1 parent a33efef commit 42535ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typeset/md2tex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ static int text_callback(MD_TEXTTYPE type, const MD_CHAR *text, MD_SIZE size,
364364
case MD_TEXT_NULLCHAR:
365365
break;
366366
case MD_TEXT_BR:
367-
RENDER_VERBATIM(r, "\\par");
367+
RENDER_VERBATIM(r, "\\par\n");
368368
break;
369369
case MD_TEXT_SOFTBR:
370370
RENDER_VERBATIM(r, "\n");

0 commit comments

Comments
 (0)