Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
fix alias links once more
Browse files Browse the repository at this point in the history
  • Loading branch information
hsjobeki committed Oct 31, 2023
1 parent 2097fe0 commit b254dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json-to-md/convert.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const getAliases = (aliases, path) => {
const name = ps.join(".");
const title = `${name} ${name.endsWith("'") ? "(Prime)" : ""}`.trim();
const label = ps.join(".");
const target = [PREFIX, "reference", subpath, title.replaceAll(".", "-")]
const target = [PREFIX, "reference", subpath.join("/"), title.replaceAll(".", "-")]
.filter(Boolean)
.join("/")
.toLowerCase();
Expand Down

0 comments on commit b254dad

Please sign in to comment.