Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > f01a6e0eafdd4310c5c23232c36360ae > files > 5149

kernel-doc-4.9.43-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