snippets

More or less useful code snippets
Log | Files | Refs

commit b1e939b6fffadaa8a13f86e401dbee1465e566ed
parent f296f8d0e45a22982073847bd1edacfc7b7c1f8b
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Sun, 13 Sep 2020 14:53:35 +0200

Add gen-python-html.sh

Diffstat:
Agen-python-html.sh | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/gen-python-html.sh b/gen-python-html.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +# TODO: Generalize to cover more programming languages +# Uses Asciidoc with Coderay to generate HTML with Python syntax highlighting +# from Python code. To install dependencies: +# apt install asciidoctor +# gem install coderay + +ADOC_FILE=source-code.adoc +printf "= Source code\n" > $ADOC_FILE +printf ":source-highlighter: coderay\n\n" >> $ADOC_FILE + +for source in $@; do + printf "== $source\n" >> $ADOC_FILE + printf "[source, python]\n" >> $ADOC_FILE + echo "----" >> $ADOC_FILE + cat $source >> $ADOC_FILE + printf "\n" >> $ADOC_FILE + echo "----" >> $ADOC_FILE + printf "\n" >> $ADOC_FILE +done + +asciidoctor $ADOC_FILE +rm $ADOC_FILE