https://github.com/torvalds/linux
Raw File
Tip revision: fa8410b355251fd30341662a40ac6b22d3e38468 authored by Linus Torvalds on 21 August 2016, 23:14:10 UTC
Linux 4.8-rc3
Tip revision: fa8410b
tmplcvt
#!/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
back to top