Github will parse a reStructuredText file if its extension is .rst. The docutils buildhtml.py will only parse files with the extension .txt, and I can't see an option to change that. This is massively annoying. Is there any way to get Github to recognise .txt files as RST or buildhtml to recognise .rst files?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Perhaps you can just use a symlink?

link|improve this answer
Interesting idea! – Joe May 3 '11 at 5:50
Seems like that would seriously clutter your source tree, plus not all operating systems support symlinks, so you could be introducing more problems than you're addressing especially since it's a github related issue. – OldTroll May 25 '11 at 23:23
feedback

buildhtml.py appears to just be a directory walker wrapped around docutils' internals. Considering its small size, the simplest solution is probably to just modify it to suit your needs by replacing the .txt test with a .rst test.

link|improve this answer
Yeah I was looking for something out-of-the-box (trying to find a solution that's compatible with automatic environment configuration without too much hassle). – Joe May 3 '11 at 5:50
feedback

Your Answer

 
or
required, but never shown

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