Re: [sphinx-users] Intersphinx for links among our own projects?

2016-04-16 Thread Carol Willing
Hi Dave, I would be interested in your two round build script if you wish to share it :-) I have about 30 some repos across 3 organizations that would really benefit from any tips/tools that simplifies linking between them on RTD. Thanks, Carol On Sunday, April 10, 2016 at 5:44:48 PM UTC-7,

[sphinx-users] Re: Sphinx 1.4.1 released

2016-04-16 Thread Carol Willing
Congrats on the release. Thanks to all who contributed. The 1.4 release series has worked really well for us. Warmly, Carol On Friday, April 15, 2016 at 9:39:05 PM UTC-7, Takayuki SHIMIZUKAWA wrote: > > Hi all, > > I'm delighted to announce the release of Sphinx 1.4.1, now available on > the Pyt

[sphinx-users] Re: customizing ref

2016-04-16 Thread Andrea Cassioli
Hi, thanks again! That works indeed A last question: How do I force a literal node? I would like to make sure it is a literal regardless the CSS or the kind of output. In my understanding `nodes.reference` is a generic `TextElement`. On Saturday, 9 April 2016 16:29:39 UTC+2, Andrea Cassio

Re: [sphinx-users] Re: customizing ref

2016-04-16 Thread Takayuki Shimizukawa
Hi Andrea, At first, the sample code I posted before is wrong. Sorry. Below code works well. ``` import docutils.nodes def role_fn(name, rawtext, text, lineno, inliner, options={}, content=[]): ref = docutils.nodes.reference(rawtext, text, internal=True, refname=text) return [ref], [] d