mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
283ed72d48
commit
28afbf81ec
@@ -29,7 +29,7 @@ extensive information about the build process.
|
||||
- Browse layers listed in the various `layer
|
||||
sources <#layer-source>`__ that are available in your project
|
||||
(e.g. the OpenEmbedded Layer Index at
|
||||
` <http://layers.openembedded.org/layerindex/>`__).
|
||||
http://layers.openembedded.org/layerindex/).
|
||||
|
||||
- Browse images, recipes, and machines provided by those layers.
|
||||
|
||||
|
||||
@@ -24,9 +24,9 @@ type of layer source called a "layer index."
|
||||
A layer index is a web application that contains information about a set
|
||||
of custom layers. A good example of an existing layer index is the
|
||||
OpenEmbedded Layer Index. A public instance of this layer index exists
|
||||
at ` <http://layers.openembedded.org>`__. You can find the code for this
|
||||
at http://layers.openembedded.org. You can find the code for this
|
||||
layer index's web application at
|
||||
` <http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/>`__.
|
||||
http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/.
|
||||
|
||||
When you tie a layer source into Toaster, it can query the layer source
|
||||
through a
|
||||
@@ -87,9 +87,9 @@ describes two methods by which you can configure and use your layer
|
||||
index.
|
||||
|
||||
In the previous section, the code for the OpenEmbedded Metadata Index
|
||||
(i.e. ` <http://layers.openembedded.org>`__) was referenced. You can use
|
||||
(i.e. http://layers.openembedded.org) was referenced. You can use
|
||||
this code, which is at
|
||||
` <http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/>`__, as a
|
||||
http://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/, as a
|
||||
base to create your own layer index.
|
||||
|
||||
Use the Administration Interface
|
||||
|
||||
Reference in New Issue
Block a user