git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
20 lines
301 B
Bash
Executable File
20 lines
301 B
Bash
Executable File
#!/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
|