ocpsoft / redoculous

Light documentation server backed by Git with hook URLs for GitHub
Other
9 stars 2 forks source link

support pluggable backends and templates for asciidoctor and other renderers #7

Open lincolnthree opened 11 years ago

lincolnthree commented 11 years ago

This could take the form of a folder structure:

.redoculous/ .redoculous/asciidoc/theme/ .redoculous/markdown/theme/

Etc.

mojavelinux commented 11 years ago

To give you an idea of what those templates might look like for AsciiDoc, check out the custom Asciidoctor backends repository:

https://github.com/asciidoctor/asciidoctor-backends

Asciidoctor looks for a template file for each node it visits in the tree and uses the template to produce the backend output, such as HTML, DocBook, etc.

lincolnthree commented 11 years ago

https://github.com/asciidoctor/asciidoctor-backends/

lincolnthree commented 11 years ago

Ah, you beat me! Nice :) Thanks Dan!