Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
szn committed Sep 17, 2024
1 parent 610c339 commit e427d3c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/md2cf/utils/md2html.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@ def md_to_html(md_file: str,
"footnotes",
],
)
logger.debug("md_to_html html before postprocessing\n%s", html)
page_id_from_meta, url = __parse_confluence_url(html.metadata)
if add_info_panel:
html = __get_info_panel(md_file) + html

md_file_dir = os.path.dirname(md_file)
html = __rewrite_images(html, md_file_dir, images)
html = __fix_code_blocks(html)
logger.debug("md_to_html html after postprocessing\n%s", html)
return html, page_id_from_meta, url, images

def __parse_confluence_url(meta: Dict[str, str]) -> Tuple[Optional[str], Optional[str]]:
Expand Down

0 comments on commit e427d3c

Please sign in to comment.