Hi, 2014-08-20 21:09 GMT+09:00 <[email protected]>: > While > foo = :ref:`bar <baz>` > does work for me, > foo=:ref:`bar <baz>` > doesn't. > > As it seems, :ref: is only recognized as a macro > when preceeded by a blank.
It's a docutils specification. ref: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules > How can I prevent this blank from reaching the output? It can be escaped with backslash as: foo=\ :ref:`bar <baz>` ref: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#escaping-mechanism > - Joachim -- Takayuki SHIMIZUKAWA http://about.me/shimizukawa -- 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.
