(_match: re.Match, command: str = command)
| 81 | for command in [command for command in commands if command not in INFO_COMMANDS]: |
| 82 | |
| 83 | def add_link(_match: re.Match, command: str = command) -> str: |
| 84 | return f":ref:`{command} <command-{command}>`" |
| 85 | |
| 86 | s = re.sub(f"``{command}``(?!\\n)", add_link, s) |
| 87 | return s |
nothing calls this directly
no outgoing calls
no test coverage detected