mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 22:39:49 +02: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
@@ -108,7 +108,7 @@ Some layers function as a layer to hold other BSP layers. These layers
|
||||
are knows as "`container
|
||||
layers <&YOCTO_DOCS_REF_URL;#term-container-layer>`__". An example of
|
||||
this type of layer is OpenEmbedded's
|
||||
```meta-openembedded`` <https://github.com/openembedded/meta-openembedded>`__
|
||||
```meta-openembedded`https://github.com/openembedded/meta-openembedded
|
||||
layer. The ``meta-openembedded`` layer contains many ``meta-*`` layers.
|
||||
In cases like this, you need to include the names of the actual layers
|
||||
you want to work with, such as: BBLAYERS ?= " \\
|
||||
@@ -164,7 +164,7 @@ section.
|
||||
4. *Optionally Clone the ``meta-intel`` BSP Layer:* If your hardware is
|
||||
based on current Intel CPUs and devices, you can leverage this BSP
|
||||
layer. For details on the ``meta-intel`` BSP layer, see the layer's
|
||||
```README`` <http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/README>`__
|
||||
```README`http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/README
|
||||
file.
|
||||
|
||||
1. *Navigate to Your Source Directory:* Typically, you set up the
|
||||
@@ -849,7 +849,7 @@ Yocto Project:
|
||||
in ``poky/meta`` directory of the :term:`Source Directory`
|
||||
or in the
|
||||
OpenEmbedded-Core Layer (``openembedded-core``) at
|
||||
` <http://git.openembedded.org/openembedded-core/tree/meta>`__.
|
||||
http://git.openembedded.org/openembedded-core/tree/meta.
|
||||
|
||||
You should place recipes (``*.bb`` files) and recipe modifications
|
||||
(``*.bbappend`` files) into ``recipes-*`` subdirectories by
|
||||
|
||||
Reference in New Issue
Block a user