apache: automatically convert reStructuredText to HTML

revision d54d4a46bf77c850f0d242298ea27adf76efd840

raw

apache-site.conf

1
2
3
4
5
6
7
8
9
10
ExtFilterDefine rst2html mode=output \
    intype=text/x-rst outtype=text/html \
    EnableEnv=supports_html \
    cmd="/usr/bin/rst2html"
AddType text/x-rst .rst
<FilesMatch "\.rst$">
    SetEnvIf Accept text/html supports_html
    SetOutputFilter rst2html
</FilesMatch>
 

History