tp-note 1.19.6

Minimalistic note taking: save and edit your clipboard content as a note file
#!/bin/bash
# Author: Jens Getreu

# apt install pandoc docbook-xsl-ns xsltproc
render () {
    ### parse args

    #set -x
    InPath="$1"
    InFile="${InPath##*/}"
    InFileExt="${InPath##*.}"
    InBase="${InFile%.*}"
    InDir="${InPath%/*}"
    if [ "$InDir" = "$InPath" ] ; then
        InDir="."
    fi

    OutPath="$2"
    OutFile="${OutPath##*/}"
    OutBase="${OutFile%.*}"
    OutDir="${OutPath%/*}"
    if [ "$OutDir" = "$OutPath" ] ; then
        OutDir="."
    fi


    ### Prepare

    XmlPath="$OutDir/$OutBase.xml"
    HtmlPath="$OutDir/$OutBase.html"
    TemplatePath="$OutDir/template.db"
    mkdir -p "$OutDir"


    ### Generate XML

    # unfortunately the chain does not honor --number-section yet
    if [ $InFileExt == 'xml' ]
    then
        cp "$InPath" "$XmlPath"
    else
        if ! pandoc -s -t docbook5 -o "$XmlPath" "$InPath"
        then
            echo Fatal error: Pandoc failed: \"$InPath\"
            exit 1
        fi
    fi

    # Workaround bug
    # [Docbook5 Writer: produces invalid output when author is given ·
    # Issue #6244 · jgm/pandoc](https://github.com/jgm/pandoc/issues/6244)

    if grep -q '<author>' "$XmlPath" &&  ! grep -q '<personname>' "$XmlPath"
    then
        echo change
        sed -i 's/<author>/<author><personname>/g' "$XmlPath"
        sed -i 's/<\/author>/<\/personname><\/author>/g' "$XmlPath"
    fi


    ### Validate

    if ! xmlstarlet val --err \
        --xsd /usr/share/xml/docbook/schema/xsd/5.0/docbook.xsd \
        "$XmlPath"
        then
            echo Fatal error: docbook file \"$XmlFile\" is not valid.
            exit 1
        fi



    ### Generate .html
    # xsltproc also take parameters e.g. --stringparam use.extensions 0\
    # this is only needed for html output
    cp -r  "$InDir/images/" "$OutDir"
    cp "$InDir/docutils_basic.css" "$OutDir"

    ### Generate HTML

    # Xsltproc also take parameters e.g. --stringparam use.extensions 0\
    #  Schema 1.79.1 does not render figure references correctly:
    #     /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/html/docbook.xsl\
    #  Use snapshot with UTF-8 in docbook.xsl instead
    xsltproc --stringparam html.stylesheet docutils_basic.css --output "$HtmlPath" \
	--stringparam  section.autolabel 1 \
        /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/xhtml/docbook.xsl \
           "$XmlPath" && \
    rm  "$XmlPath"
}



### Main
# usage:
# render FILE [FILE]
# render report.md ./rendition/report.html

if [[ -n "${2/[ ]*\n/}" ]] ; then
        OutPath="$2"
else
        OutPath="${1%.*}.html" # $2 is empty
fi
render "$1" "$OutPath"