Skip to content

Commit 4af1c0c

Browse files
author
Sreeparna Deb
committed
plugin md content updated
1 parent 86b1e6b commit 4af1c0c

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

scripts/update_plugininfo.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,26 +78,20 @@ def write_markdown(info, authors, readme_text=""):
7878
"shortname": info["name"].split()[0],
7979
"key": REPO.lower(),
8080
"type": info.get("type", "").lower(),
81+
8182
"version": info["version"]["plugin"],
8283
"date": datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S"),
8384
"organization": "ManiVault",
8485
"organization-link": "https://www.manivault.studio",
8586
"authors": authors,
86-
# NOTE: shortdescription intentionally removed (derived on site)
8787
"repo": f"https://github.com/{OWNER}/{REPO}",
88+
"dependencies": info.get("dependencies", []),
8889
}
8990

9091
# Build page body: README + repo link footer
9192
body_parts = []
9293
if readme_text:
9394
body_parts.append(readme_text)
94-
deps = info.get("dependencies", [])
95-
if deps:
96-
deps_text = "\n\n---\n**Dependencies:** " + ", ".join(deps)
97-
body_parts.append(deps_text)
98-
99-
# Repository link footer
100-
body_parts.append(f"\n---\n**Source repository:** https://github.com/{OWNER}/{REPO}\n")
10195

10296
body = "\n".join(body_parts).lstrip("\n")
10397

0 commit comments

Comments
 (0)