summaryrefslogtreecommitdiff
path: root/backends/html
blob: ee301f600db3b631cbc705b6ea57d758484e8872 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Backend to convert something into HTML
# Send any comments to Eric Bischoff <eric@caldera.de>
# This program is under GPL license. See LICENSE file for details.

# Convert to HTML
$SGML_JADE -t sgml $SGML_ARGUMENTS
if [ $? -ne 0 ]
then exit 1
fi

exit 0