vote up 0 vote down star

How do you set tab width in HTML output of Sphinx code snippets highlighted by Pygments? By default it is the annoying 8, but I want 4. Did not find a word about this setting in Sphinx conf.py.

flag
1  
Why are you using tabs in the first place? What's wrong with making them spaces in your source document? That's what PEP 8 suggests. Why not follow the conventional path? Why stick with tabs? – S.Lott Nov 6 at 11:38
I'm from Java world. I use Sphinx to document an application framework and I add Java code snippets. – Zilupe Nov 6 at 12:50
1  
Agreed with S. Lott, even in the Java world you can use spaces instead of tabs. java.sun.com/docs/codeconv/… – John Paulett Nov 6 at 13:14
I expected a comment like that. This is a question about Sphinx features, not about religion. – Zilupe Nov 6 at 15:20

2 Answers

vote up 0 vote down

I asked the same question on sphinx-dev group and it turns out it's a problem with Docutils which is used by Sphinx. Docutils replace all tabs with 8 spaces and currently there is no way to change that value from Sphinx.

http://groups.google.com/group/sphinx-dev/browse%5Fthread/thread/35b8071ffe9a8feb

The only feasible solution seems to be to follow the advice from S.Lott and John Paulett in comments to my question -- use spaces instead of tabs.

link|flag
vote up 0 vote down

You will need to write a Sphinx Extension. Add your custom Lexer, and apply it with VisibleWhitespaceFilter.

link|flag
I updated my Sphinx to 0.6.3 and Pygments to 1.1.1 (pygmentize -V). Touched all my files, then added this to conf.py: def setup(app): from sphinx.highlighting import lexers from pygments.lexers.compiled import JavaLexer from pygments.filters import VisibleWhitespaceFilter myLexer = JavaLexer() myLexer.add_filter(VisibleWhitespaceFilter(spaces='!')); app.add_lexer('java', myLexer); This replaced all tabs in my Java code with eight "!" and all spaces with "!" as expected. When I tried option tabs='!', nothing changed. When I tried option tabsize=4, nothing changed. – Zilupe Nov 9 at 15:13
It seems like tabs have been replaced with spaces somewhere earlier in the chain. So, I tried to add this filter to other lexers (rest, none) [with lexers['rest'].add_filter(...)], but none of that had any effect on tabs or tabsize. – Zilupe Nov 9 at 15:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.