From cfc6a4901346f45284dcf591375f759e7193d561 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 22 Aug 2015 21:37:51 +0200 Subject: [PATCH] more monkey-patching for the website --- pycco-rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pycco-rs b/pycco-rs index 7ac0b89..072dd2e 100755 --- a/pycco-rs +++ b/pycco-rs @@ -19,9 +19,14 @@ 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 = '' + +css_marker = '' custom_css = '' -patched_html = html_src.replace(marker, marker+custom_css, 1) +patched_html = html_src.replace(css_marker, css_marker+custom_css, 1) + +title_marker = '' +patched_html = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) + pycco.main.pycco_template = pycco.main.template(patched_html) pycco.main.main() -- 2.30.2