From 28afbf81ecb34add93f5eed2c1a41ec5f278d0a7 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Thu, 30 Jul 2020 13:37:11 +0200 Subject: 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: ` `__. 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 Signed-off-by: Richard Purdie --- documentation/bsp-guide/bsp.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'documentation/bsp-guide') diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst index 9a12c942bc..663d9478a4 100644 --- a/documentation/bsp-guide/bsp.rst +++ b/documentation/bsp-guide/bsp.rst @@ -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`` `__ +```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`` `__ + ```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. You should place recipes (``*.bb`` files) and recipe modifications (``*.bbappend`` files) into ``recipes-*`` subdirectories by -- cgit v1.2.3-54-g00ecf