> Is there some alternative around?

If you don't care about performance and want flexibility you can roll
your own with CGI.

httpd.conf:

AddHandler md2html .md
Action md2html /cgi-bin/md2html

cgi:
```
#!/bin/sh

printf "Content-Type: text/html\r\n\r\n"


if [ -f "$PATH_TRANSLATED" ]; then
  pandoc -t html5  $PATH_TRANSLATED
fi
```

Then you can put whatever extra logic prior to invoking pandoc to add
head or style elements.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to