in tools/plugins.py [0:0]
def _render_header():
header = "|Name|State|Repo|Changes (last 3 months/all)|Description|Maintainers"
dashes = "|----|-----|----|---------------------------|-----------|---"
spacer = "| | | | | | "
links = "\n"
for b in BRANCHES:
header += "|Branch|CI"
dashes += "|-----:|--"
spacer += f"|[{b}]|"
links += f"[{b}]: {CI}/view/Plugins-{b}\n"
return (header, dashes, spacer, links)