Merge pull request #5 from r0e/master
[rust-101.git] / pycco-rs
index bfb731c22d6d81fa87694a520315e8098ec567d2..fab890bc88eb3fcd4713b64fffacb0dec15f2c0f 100755 (executable)
--- 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 = '<link rel="stylesheet" href="{{ stylesheet }}">'
-custom_css = '<link rel="stylesheet" href="pycco_custom.css">'
-patched_html = html_src.replace(marker, marker+custom_css, 1)
-pycco.main.pycco_template = pycco.main.template(patched_html)
+
+css_marker = '<link rel="stylesheet" href="{{ stylesheet }}">'
+custom_css = '<link rel="stylesheet" href="pycco_custom.css"><meta name="viewport" content="width=device-width">'
+html_src = html_src.replace(css_marker, css_marker+custom_css, 1)
+
+title_marker = '<title>'
+html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1)
+
+pycco.main.pycco_template = pycco.main.template(html_src)
 
 pycco.main.main()