I'm used to working with Sphinx for C++ and Python projects. I've just started a project in Clojure and I'd like to re-use my Sphinx/reStructuredText skills to document my Clojure code. Since there's no built-in domain for Clojure, I started writing one.
Ironically, Sphinx's documentation is of no help at all for writing extensions. So, starting from the built-in modes for Python and Javascript, I've got some basic elements working. I can write document for functions using the following directives:
.. clj:ns:: clojure.core
.. clj:fn:: (filter f coll)
:param f: predicate
:param coll: collection
Built-in!
However, the HTML output produces C/Python-style signatures. The preceding example generates something like this:
filter(f, coll)
Parameters: * f - predicate
* coll - collection
Built-in!
I'd much rather get the signature in the lisp-ish form as:
(filter f coll)
Parameters: * f - predicate
* coll - collection
Built-in!
The code that generates the signatures seems to go all the way down to docutils.addnodes module. How can I make Sphinx generate the HTML using the Sphinx syntax? Can it be done with a template, or do I need hack my way through the whole builder system to do this?
sphinx.builders.html.py,class HTMLTranslator). It seems you need to write your own HTML builder to render the output. Now, how on earth am I going to document multiple languages in the same project? – André Caron Apr 20 '11 at 21:24