Also hyperlink the :ac: role in CLI help output

This commit is contained in:
Kovid Goyal
2022-08-19 14:05:11 +05:30
parent 5350eb29c1
commit a59e1adee1
2 changed files with 10 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ def resolve_ref(ref: str, website_url: Callable[[str], str] = website_url) -> st
elif ref.startswith('action-group-'):
href = f'{website_url("generated/actions")}#{ref}'
elif ref.startswith('action-'):
frag = ref.partition('-')[-1]
frag = ref.partition('-')[-1].replace('_', '-')
href = f'{website_url("generated/actions")}#{frag}'
return href