Skip to content

Commit

Permalink
add hyperlink for category(term) in meta.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xieby1 committed Nov 8, 2023
1 parent 216e67f commit 27c40ce
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 @@ -1438,7 +1438,7 @@ def outputMetaMd() -> None:
if transor.dev != Dev.NONE:
metamd.write("* **Development**: %s\n" % transor.dev)
if transor.term != Term.UNKNOWN:
metamd.write("* **Category**: %s\n" % term2str(transor.term))
metamd.write("* **Category**: [%s](../list/byTerm/%s.md)\n" % (term2str(transor.term), transor.term.name))
if transor.parent:
metamd.write("* **Parent**: [%s](../%s/index.md)\n" % (transor.parent.name, _canonicalize_folder_name(transor.parent.name)))

Expand Down

0 comments on commit 27c40ce

Please sign in to comment.