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/toaster-manual/toaster-manual-reference.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/toaster-manual/toaster-manual-reference.rst')
-rw-r--r-- | documentation/toaster-manual/toaster-manual-reference.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/toaster-manual/toaster-manual-reference.rst b/documentation/toaster-manual/toaster-manual-reference.rst index 0494f55d9e..a628c78cc2 100644 --- a/documentation/toaster-manual/toaster-manual-reference.rst +++ b/documentation/toaster-manual/toaster-manual-reference.rst | |||
@@ -24,9 +24,9 @@ type of layer source called a "layer index." | |||
24 | A layer index is a web application that contains information about a set | 24 | A layer index is a web application that contains information about a set |
25 | of custom layers. A good example of an existing layer index is the | 25 | of custom layers. A good example of an existing layer index is the |
26 | OpenEmbedded Layer Index. A public instance of this layer index exists | 26 | OpenEmbedded Layer Index. A public instance of this layer index exists |
27 | at ` <http://layers.openembedded.org>`__. You can find the code for this | 27 | at http://layers.openembedded.org. You can find the code for this |
28 | layer index's web application at | 28 | layer index's web application at |
29 | ` <http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/>`__. | 29 | http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/. |
30 | 30 | ||
31 | When you tie a layer source into Toaster, it can query the layer source | 31 | When you tie a layer source into Toaster, it can query the layer source |
32 | through a | 32 | through a |
@@ -87,9 +87,9 @@ describes two methods by which you can configure and use your layer | |||
87 | index. | 87 | index. |
88 | 88 | ||
89 | In the previous section, the code for the OpenEmbedded Metadata Index | 89 | In the previous section, the code for the OpenEmbedded Metadata Index |
90 | (i.e. ` <http://layers.openembedded.org>`__) was referenced. You can use | 90 | (i.e. http://layers.openembedded.org) was referenced. You can use |
91 | this code, which is at | 91 | this code, which is at |
92 | ` <http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/>`__, as a | 92 | http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/, as a |
93 | base to create your own layer index. | 93 | base to create your own layer index. |
94 | 94 | ||
95 | Use the Administration Interface | 95 | Use the Administration Interface |