Sophie

Sophie

distrib > Mageia > 6 > armv5tl > by-pkgid > 19d93b8911540bb196ce3f96ead75cf0 > files > 5129

kernel-linus-doc-4.9.40-1.mga6.noarch.rpm

#!/bin/bash
#
# Convert a template file into something like RST
#
# fix <function>
# feed to pandoc
# fix \_
# title line?
#

in=$1
rst=$2
tmp=$rst.tmp

cp $in $tmp
sed --in-place -f convert_template.sed $tmp
pandoc -s -S -f docbook -t rst -o $rst $tmp
sed --in-place -f post_convert.sed $rst
rm $tmp