Skip to content

Commit e3ff912

Browse files
committed
scripts: Update extract standings script
1 parent 65194dd commit e3ff912

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

scripts/extract_standings.py

100644100755
+17
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
def add_css(element: bs4.element.Tag):
1717
with open(CSS_PATH) as f:
1818
css_content = f.read()
19+
20+
# hack to edit .sticky-heading's 'top' attribute to 0.
21+
sticky_start = css_content.find('.sticky-heading')
22+
print(sticky_start, file=sys.stderr)
23+
if sticky_start >= 0:
24+
match = re.compile(r"top:\s*[^;]+;").search(css_content, pos=sticky_start)
25+
css_content = css_content[:match.start()] + "top: 0;" + css_content[match.end():]
26+
1927
head = element.find('head')
2028
head.append('<style>\n' + css_content + '</style>')
2129

@@ -52,6 +60,15 @@ def main():
5260
add_css(result)
5361
result.find('body').append(main)
5462

63+
# Update HTML title and H1 text.
64+
if html.title:
65+
new_title = html.title.string + ' Standings'
66+
new_title_tag = html.new_tag('title')
67+
new_title_tag.string = new_title
68+
result.head.append(new_title_tag)
69+
70+
result.h1.string = new_title
71+
5572
formatter = bs4.formatter.HTMLFormatter()
5673
print(result.prettify(formatter=formatter))
5774

0 commit comments

Comments
 (0)