You don't mention whether you are building HTML or PDF (via LaTeX). LaTeX is quite particular about what characters you use, since many are "magic" (meaning they have meaning to LaTeX to command it to do something), or they require mapping (e.g., embedded Unicode characters that must be declared to LaTeX). I would try *not* using a slash in the label, first (since that is a file system separator that is "magic" to a shell invocation, if that happens anywhere).
On Sun, Nov 8, 2015 at 7:02 AM, Alex Little <[email protected]> wrote: > Hi all, > > I'm relatively new to using Sphinx Docs - and I'm a little stuck with > something I'm attempting to do... > > What I'd like is to have a table, where the entries in the cells in the > first column refer to another doc page. > > What I've tried so far is: > > .. table:: > > ======================== =============== ===================== > Session Time Notes > ======================== =============== ===================== > :ref:`intro/00_setup` 1 hour Yes > ======================== =============== ===================== > > and: > > +------------------------+------------+----------+ > | Session | Time | Notes | > +========================+============+==========+ > | :ref:`intro/00_setup` | 1 hour | Yes | > +------------------------+------------+----------+ > > However neither of these turn the :ref: part into an actual link to the > doc page (it simply outputs 'intro/00_setup'). I realise that this is quite > similar to a toctree - but I'd really like to also show the time and notes > (hence the table format rather than a simple list), that toctree doesn't > seem to allow me to do. > > Any help or other options/approaches for how I could achieve this is very > much appreciated. Also quite likely is that I have a misunderstanding or > I've missed something obvious. > > Cheers, > Alex > > -- > You received this message because you are subscribed to the Google Groups > "sphinx-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sphinx-users. > For more options, visit https://groups.google.com/d/optout. > -- Dave Dittrich [email protected] -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
