Skip to content

Commit

Permalink
add hyperlink for parent in meta.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xieby1 committed Nov 8, 2023
1 parent ac4cb18 commit 216e67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ def outputMetaMd() -> None:
if transor.term != Term.UNKNOWN:
metamd.write("* **Category**: %s\n" % term2str(transor.term))
if transor.parent:
metamd.write("* **Parent**: %s\n" % transor.parent.name)
metamd.write("* **Parent**: [%s](../%s/index.md)\n" % (transor.parent.name, _canonicalize_folder_name(transor.parent.name)))

if len(transor.renames) > 0:
metamd.write("* **Renames**:")
Expand Down

0 comments on commit 216e67f

Please sign in to comment.