X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/41c94f98f6cf8b5a05a8c3eb8d13bb73fc4fda3f..3530068c5bbcbd9185757369dd23b9edb3bbc9ad:/pycco-rs diff --git a/pycco-rs b/pycco-rs index bfb731c..fab890b 100755 --- a/pycco-rs +++ b/pycco-rs @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # A little wrapper around pycco, to add Rust support. import pycco, pycco_resources from pygments import lexers, formatters @@ -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 = '' -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 = '' +html_src = html_src.replace(css_marker, css_marker+custom_css, 1) + +title_marker = '' +html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) + +pycco.main.pycco_template = pycco.main.template(html_src) pycco.main.main()