From: Guenter M. <mi...@us...> - 2018-10-13 09:08:31
|
On 2018-10-11, Gregory Elkinbard wrote: > Hi folks, > I have URLs which are longer then 79 characters, how do I break them up > in docutils compliant manner. I tried “\cr” but this results in an > error. You can insert linebreaks in the link target:: test_ .. _test: http://exam ple.org results in the pseudoxml output :: <document source="/tmp/url.rst"> <paragraph> <reference name="test" refuri="http://example.org"> test <target ids="test" names="test" refuri="http://example.org"> with the line break and leading whitespace removed from the URL. Günter |