We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd8b2d2 commit 26e19fdCopy full SHA for 26e19fd
magic_pdf/dict2md/mkcontent.py
@@ -390,7 +390,7 @@ def mk_nlp_markdown(content_list):
390
elif content_type == "equation":
391
content_md.append(f"$$\n{c.get('latex')}\n$$")
392
elif content_type == "table":
393
- content_md.append(f"$$\n{c.get('table_latex')}\n$$")
+ content_md.append(f"$$$\n{c.get('table_latex')}\n$$$")
394
elif content_type in UNI_FORMAT_TEXT_TYPE:
395
content_md.append(f"{'#'*int(content_type[1])} {c.get('text')}")
396
return "\n\n".join(content_md)
0 commit comments