Skip to content
Snippets Groups Projects

Use `html2wiki` to convert the Bibtex HTML to DokuWiki

Merged B.E. Droge requested to merge html2dokuwiki into main
Compare and
2 files
+ 10
10
Preferences
Compare changes
Files
2
@@ -5,6 +5,11 @@ if [ $# -ne 3 ]; then
exit -1
fi
if ! which html2wiki >/dev/null; then
echo "The html2wiki program cannot be found, please install it first."
exit -1
fi
bibfile=$1
startyear=$2
endyear=$3
@@ -13,15 +18,10 @@ cat header.wiki > references.wiki
for year in $( seq $endyear -1 $startyear); do
bib2bib -c "year=$year" $bibfile > $year.bib
bibtex2html -nofooter -noheader --no-abstract --no-keywords --nobibsource --nodoc --style peregrine.bst -a $year.bib
cat << EOF >> references.wiki
=== $year ===
<html>
EOF
cat $year.html >> references.wiki
printf "</html>\n" >> references.wiki
bibtex2html -dl -nofooter -noheader -nokeys --no-abstract --no-keywords --nobibsource --nodoc --style peregrine.bst -a $year.bib
printf "\n\n=== $year ===\n\n" >> references.wiki
# run html2wiki, remove empty lines, and make it an ordered list
html2wiki --no-escape-entities --dialect DokuWiki $year.html | sed '/^$/d' | sed 's/^/ - /' >> references.wiki
rm $year.bib
rm $year.html
done