#!/bin/sh
#
# wrasciidoc, wrapped asciidoc
# it exists to provide the various parameters to asciidoc
#
# this script runs in the source directory where it reads input files
# those files are processed by asciidoc
#
asciidoc \
    -b html5 \
    -a theme=losc \
    -a confdir=conf \
    -f ../conf/html5-losc.conf \
    -a scriptsdir=javascripts \
    -a stylesdir=stylesheets  \
    -a linkcss \
    -a pygments \
    -a doctitle="Local Open Source Cluster Breda" \
    -a nav \
    -a logo-losc \
    -a badges \
    -a icons \
    -a description="Local Open Source Cluster Breda, LOSC Breda" \
    -a keywords="Local Open Source Cluster, LOSC, local user group, Breda, \
computer, computerbijeenkomsten, bijeenkomsten, bijeenkomst, meetings, meeting, \
opensource, open source, software, hardware, vrije software, vrije hardware, \
linux, unix, programmeren, lezing, lezingen, presentaties, gnu, \
netwerk, node, Perl, Python, Postgres, \
Arduino, Beagleboard, AVR, Apache, Tomcat, Git, Gerrit, Java, Eclipse, Asciidoc" \
  ${1}.txt
#
# l l