diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-07-30 13:37:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-17 10:09:34 +0100 |
commit | 28afbf81ecb34add93f5eed2c1a41ec5f278d0a7 (patch) | |
tree | 62804dd25f10e4a3781268549cde2aba8bafcb03 /documentation/overview-manual/overview-manual-development-environment.rst | |
parent | 283ed72d487ed78d4f8e0fcc17f635d6c212b7c6 (diff) | |
download | poky-28afbf81ecb34add93f5eed2c1a41ec5f278d0a7.tar.gz |
sphinx: fix links when the link text should be displayed
When an hyperlink should be display in the output, there is no need to
any specific syntax or marker, the parser finds links and mail
addresses in ordinary text. Somehow the conversion from pandoc
generated wrong output in the form: ` <link>`__. This patch is
generated using the following Python regexp:
line = re.sub("` <(https?://.*)>`__",
"\\1",
line)
(From yocto-docs rev: a35d735a74425dff34c63c086947624467658c40)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/overview-manual/overview-manual-development-environment.rst')
-rw-r--r-- | documentation/overview-manual/overview-manual-development-environment.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/overview-manual/overview-manual-development-environment.rst b/documentation/overview-manual/overview-manual-development-environment.rst index 65ad1d1206..f89e9b9dd4 100644 --- a/documentation/overview-manual/overview-manual-development-environment.rst +++ b/documentation/overview-manual/overview-manual-development-environment.rst | |||
@@ -381,12 +381,12 @@ commands. | |||
381 | .. note:: | 381 | .. note:: |
382 | 382 | ||
383 | - For more information on Git, see | 383 | - For more information on Git, see |
384 | ` <http://git-scm.com/documentation>`__. | 384 | http://git-scm.com/documentation. |
385 | 385 | ||
386 | - If you need to download Git, it is recommended that you add Git to | 386 | - If you need to download Git, it is recommended that you add Git to |
387 | your system through your distribution's "software store" (e.g. for | 387 | your system through your distribution's "software store" (e.g. for |
388 | Ubuntu, use the Ubuntu Software feature). For the Git download | 388 | Ubuntu, use the Ubuntu Software feature). For the Git download |
389 | page, see ` <http://git-scm.com/download>`__. | 389 | page, see http://git-scm.com/download. |
390 | 390 | ||
391 | - For information beyond the introductory nature in this section, | 391 | - For information beyond the introductory nature in this section, |
392 | see the "`Locating Yocto Project Source | 392 | see the "`Locating Yocto Project Source |