mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make module formatting into links to the other module docs
This commit is contained in:
parent
ba822ce0f9
commit
4c8d27f7bb
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ def rst_ify(text):
|
|||
|
||||
t = _ITALIC.sub(r'*' + r"\1" + r"*", text)
|
||||
t = _BOLD.sub(r'**' + r"\1" + r"**", t)
|
||||
t = _MODULE.sub(r'``' + r"\1" + r"``", t)
|
||||
t = _MODULE.sub(r':ref:`' + r"\1 <\1>" + r"`", t)
|
||||
t = _URL.sub(r"\1", t)
|
||||
t = _CONST.sub(r'``' + r"\1" + r"``", t)
|
||||
|
||||
|
|
Loading…
Reference in a new issue