#!/bin/bash

for i in $(ls *.adoc);do
	./bin/asciidoctor-web-pdf $i --template-require ./theme/template.js
done

