File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 16
16
def add_css (element : bs4 .element .Tag ):
17
17
with open (CSS_PATH ) as f :
18
18
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
+
19
27
head = element .find ('head' )
20
28
head .append ('<style>\n ' + css_content + '</style>' )
21
29
@@ -52,6 +60,15 @@ def main():
52
60
add_css (result )
53
61
result .find ('body' ).append (main )
54
62
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
+
55
72
formatter = bs4 .formatter .HTMLFormatter ()
56
73
print (result .prettify (formatter = formatter ))
57
74
You can’t perform that action at this time.
0 commit comments