From 7df9cdaae2db9969c8b83c4c69ccc21eb0973eb4 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 18 May 2016 10:27:53 +0200 Subject: [PATCH] fix pycco-rs to get rid of empty code blocks --- pycco-rs | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/pycco-rs b/pycco-rs index b1d7f43..d250b20 100755 --- a/pycco-rs +++ b/pycco-rs @@ -2,7 +2,13 @@ # A little wrapper around pycco, to add Rust support. import pycco, pycco_resources from pygments import lexers, formatters -import re +import sys, re + +# helper functions +def patch_html(source, marker, new_text): + '''Find the [marker] in [source], and insert [new_text] after it.''' + assert source.count(marker) == 1 + return source.replace(marker, marker + new_text, 1) # now, monkey-patch pycco for Rust support pycco.main.languages[".rs"] = { "name": "rust", "symbol": "//"} @@ -17,19 +23,27 @@ for ext, l in pycco.main.languages.items(): l["divider_html"] = re.compile(r'\n*' + l["symbol"] + 'DIVIDER\n*') # Get the Pygments Lexer for this language. l["lexer"] = lexers.get_lexer_by_name(l["name"]) -# and monkey-patch for a custom CSS file -html_src = pycco_resources.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) +# and monkey-patch the function generating the output to do some post-processing +generate_documentation_orig = pycco.main.generate_documentation +generate_documentation_called = False +def generate_documentation(*args, **kwargs): + global generate_documentation_called + generate_documentation_called = True + result = generate_documentation_orig(*args, **kwargs) + # now patch it + result = patch_html(result, '<link rel="stylesheet" href="pycco.css">', + '<link rel="stylesheet" href="pycco_custom.css"><meta name="viewport" content="width=device-width">') + result = patch_html(result, '<title>', 'Rust-101: ') + ## remove empty code blocks + result = re.sub('''<div class='code'> + *<div class="highlight"><pre>(<span></span>)?</pre></div> + *</div>''', '<!-- empty code block -->', result) + # done + return result +pycco.main.generate_documentation = generate_documentation +# call pycco +assert len(sys.argv) == 2 pycco.main.main() +assert generate_documentation_called -- 2.30.2