Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

module_formatter: re-instate code #1658

Merged
merged 1 commit into from
Nov 23, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions hacking/module_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ def html_ify(text):
t = _BOLD.sub("<b>" + r"\1" + "</b>", t)
t = _MODULE.sub("<span class='module'>" + r"\1" + "</span>", t)
t = _URL.sub("<a href='" + r"\1" + "'>" + r"\1" + "</a>", t)
#t = _CONST.sub("<code>" + r"\1" + "</code>", t)
t = _CONST.sub(r"\1", t)
t = _CONST.sub("<code>" + r"\1" + "</code>", t)
return t

def json_ify(text):
Expand Down
2 changes: 1 addition & 1 deletion library/file
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ short_description: Sets attributes of files
description:
- Sets attributes of files, symlinks, and directories, or removes
files/symlinks/directories. Many other modules support the same options as
the file module - including M(copy), M(template), and M(assemble).
the M(file) module - including M(copy), M(template), and M(assemble).
options:
path:
description:
Expand Down