Skip to content

Support the 'Sponsor' header field #911

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

Merged
merged 1 commit into from
Mar 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pep2html.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def fixfile(inpath, input_lines, outfile):
print('</td></tr></table>', file=outfile)
print('<div class="header">\n<table border="0">', file=outfile)
for k, v in header:
if k.lower() in ('author', 'bdfl-delegate', 'discussions-to'):
if k.lower() in ('author', 'bdfl-delegate', 'discussions-to', 'sponsor'):
mailtos = []
for part in re.split(r',\s*', v):
if '@' in part:
Expand Down Expand Up @@ -401,7 +401,7 @@ def apply(self):
# empty
continue
para = body[0]
if name in ('author', 'bdfl-delegate'):
if name in ('author', 'bdfl-delegate', 'sponsor'):
for node in para:
if isinstance(node, nodes.reference):
node.replace_self(peps.mask_email(node))
Expand Down