X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/f34c221547f429f23feedf3dc58344a9292c0e18..27a99e3d92e3ce48ed4aeee9527c4adc6d4b68f7:/pycco-rs diff --git a/pycco-rs b/pycco-rs index 7ac0b89..b1d7f43 100755 --- a/pycco-rs +++ b/pycco-rs @@ -19,9 +19,17 @@ for ext, l in pycco.main.languages.items(): l["lexer"] = lexers.get_lexer_by_name(l["name"]) # and monkey-patch for a custom CSS file html_src = pycco_resources.html -marker = '' -custom_css = '' -patched_html = html_src.replace(marker, marker+custom_css, 1) -pycco.main.pycco_template = pycco.main.template(patched_html) + +css_marker = '' +custom_css = '' +assert html_src.count(css_marker) == 1 +html_src = html_src.replace(css_marker, css_marker+custom_css, 1) + +title_marker = '' +assert html_src.count(title_marker) == 1 +html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) + +pycco_resources.html = html_src +pycco.main.pycco_template = pycco_resources.pycco_template = pycco_resources.template(pycco_resources.html) pycco.main.main()