projects
/
rust-101.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
try and fail to make the mobile style prettier
[rust-101.git]
/
pycco-rs
diff --git
a/pycco-rs
b/pycco-rs
index 2dd50e772a5d51b6811859b446cf93196f9d78b8..b1d7f43d6274da6379f7e7afa2b4686b2f6f2bb6 100755
(executable)
--- a/
pycco-rs
+++ b/
pycco-rs
@@
-21,12
+21,15
@@
for ext, l in pycco.main.languages.items():
html_src = pycco_resources.html
css_marker = '<link rel="stylesheet" href="{{ stylesheet }}">'
html_src = pycco_resources.html
css_marker = '<link rel="stylesheet" href="{{ stylesheet }}">'
-custom_css = '<link rel="stylesheet" href="pycco_custom.css">'
+custom_css = '<link rel="stylesheet" href="pycco_custom.css"><meta name="viewport" content="width=device-width">'
+assert html_src.count(css_marker) == 1
html_src = html_src.replace(css_marker, css_marker+custom_css, 1)
title_marker = '<title>'
html_src = html_src.replace(css_marker, css_marker+custom_css, 1)
title_marker = '<title>'
+assert html_src.count(title_marker) == 1
html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1)
html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1)
-pycco.main.pycco_template = pycco.main.template(html_src)
+pycco_resources.html = html_src
+pycco.main.pycco_template = pycco_resources.pycco_template = pycco_resources.template(pycco_resources.html)
pycco.main.main()
pycco.main.main()