fix(MAT-174): Fix manage link — use markdown link to avoid italic underscore in URL

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-03-16 14:16:49 +02:00
parent 441def5fa3
commit 3d5351a24a

View File

@@ -16,7 +16,7 @@ def format_search_results(job_name: str, results: list[dict]) -> str:
lines.append("")
lines.append(
"_Manage automations: https://matrixhost.eu/settings/automations_"
"_[Manage automations](https://matrixhost.eu/settings/automations)_"
)
return "\n".join(lines)
@@ -51,6 +51,6 @@ def format_listings(job_name: str, listings: list[dict]) -> str:
lines.append("")
lines.append(
"_Manage automations: https://matrixhost.eu/settings/automations_"
"_[Manage automations](https://matrixhost.eu/settings/automations)_"
)
return "\n".join(lines)