Skip to content

Commit

Permalink
remove line break from file link in py script
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcoleanderson committed Feb 12, 2024
1 parent e5d5134 commit 81d269e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obsidian_to_anki.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class FormatConverter:
@staticmethod
def format_note_with_url(note, url):
for key in note["fields"]:
note["fields"][key] += "<br>" + "".join([
note["fields"][key] += "".join([
'<a',
' href="{}" class="obsidian-link">Obsidian</a>'.format(url)
])
Expand Down

0 comments on commit 81d269e

Please sign in to comment.