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/ref-manual/ref-kickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'documentation/ref-manual/ref-kickstart.rst') diff --git a/documentation/ref-manual/ref-kickstart.rst b/documentation/ref-manual/ref-kickstart.rst index 5f8c834f33..271e6e8509 100644 --- a/documentation/ref-manual/ref-kickstart.rst +++ b/documentation/ref-manual/ref-kickstart.rst @@ -155,7 +155,7 @@ the ``part`` and ``partition`` commands: - *``--part-type``:* This option is a Wic-specific option that specifies the partition type globally unique identifier (GUID) for GPT partitions. You can find the list of partition type GUIDs at - ` `__. + http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs. - *``--use-uuid``:* This option is a Wic-specific option that causes Wic to generate a random GUID for the partition. The generated -- cgit v1.2.3-54-g00ecf