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/ref-manual/ref-kickstart.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/ref-manual/ref-kickstart.rst')
-rw-r--r-- | documentation/ref-manual/ref-kickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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: | |||
155 | - *``--part-type``:* This option is a Wic-specific option that | 155 | - *``--part-type``:* This option is a Wic-specific option that |
156 | specifies the partition type globally unique identifier (GUID) for | 156 | specifies the partition type globally unique identifier (GUID) for |
157 | GPT partitions. You can find the list of partition type GUIDs at | 157 | GPT partitions. You can find the list of partition type GUIDs at |
158 | ` <http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs>`__. | 158 | http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs. |
159 | 159 | ||
160 | - *``--use-uuid``:* This option is a Wic-specific option that causes | 160 | - *``--use-uuid``:* This option is a Wic-specific option that causes |
161 | Wic to generate a random GUID for the partition. The generated | 161 | Wic to generate a random GUID for the partition. The generated |