Skip to content

Commit

Permalink
Delete redundant logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammad-suliman committed May 20, 2022
1 parent 07f14e5 commit e49960a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions addon/globalPlugins/quickNotetaker/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,8 @@ def handleMdContent(mdContent):
def getTitle(mdContent):
# Delete HTML tags if any
mdContent = retrieveTextFromHtml(mdContent)
log.debug(mdContent)
titleText = markdown(mdContent, extras=["markdown-in-html"])
titleText = retrieveTextFromHtml(titleText)
log.debug(titleText)
titleText = _removeExtraSpaces(titleText)
lines = titleText.split("\n")
for line in lines:
Expand Down

0 comments on commit e49960a

Please sign in to comment.