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/adt-manual/adt-intro.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/adt-manual/adt-intro.rst')
-rw-r--r-- | documentation/adt-manual/adt-intro.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/adt-manual/adt-intro.rst b/documentation/adt-manual/adt-intro.rst index d6228ad864..5372f4f54f 100644 --- a/documentation/adt-manual/adt-intro.rst +++ b/documentation/adt-manual/adt-intro.rst | |||
@@ -107,18 +107,18 @@ tools are common development tools for the Linux platform. | |||
107 | 107 | ||
108 | - *PowerTOP:* Helps you determine what software is using the most | 108 | - *PowerTOP:* Helps you determine what software is using the most |
109 | power. You can find out more about PowerTOP at | 109 | power. You can find out more about PowerTOP at |
110 | ` <https://01.org/powertop/>`__. | 110 | https://01.org/powertop/. |
111 | 111 | ||
112 | - *OProfile:* A system-wide profiler for Linux systems that is capable | 112 | - *OProfile:* A system-wide profiler for Linux systems that is capable |
113 | of profiling all running code at low overhead. You can find out more | 113 | of profiling all running code at low overhead. You can find out more |
114 | about OProfile at ` <http://oprofile.sourceforge.net/about/>`__. For | 114 | about OProfile at http://oprofile.sourceforge.net/about/. For |
115 | examples on how to setup and use this tool, see the | 115 | examples on how to setup and use this tool, see the |
116 | "`OProfile <&YOCTO_DOCS_PROF_URL;#profile-manual-oprofile>`__" | 116 | "`OProfile <&YOCTO_DOCS_PROF_URL;#profile-manual-oprofile>`__" |
117 | section in the Yocto Project Profiling and Tracing Manual. | 117 | section in the Yocto Project Profiling and Tracing Manual. |
118 | 118 | ||
119 | - *Perf:* Performance counters for Linux used to keep track of certain | 119 | - *Perf:* Performance counters for Linux used to keep track of certain |
120 | types of hardware and software events. For more information on these | 120 | types of hardware and software events. For more information on these |
121 | types of counters see ` <https://perf.wiki.kernel.org/>`__. For | 121 | types of counters see https://perf.wiki.kernel.org/. For |
122 | examples on how to setup and use this tool, see the | 122 | examples on how to setup and use this tool, see the |
123 | "`perf <&YOCTO_DOCS_PROF_URL;#profile-manual-perf>`__" section in the | 123 | "`perf <&YOCTO_DOCS_PROF_URL;#profile-manual-perf>`__" section in the |
124 | Yocto Project Profiling and Tracing Manual. | 124 | Yocto Project Profiling and Tracing Manual. |
@@ -127,12 +127,12 @@ tools are common development tools for the Linux platform. | |||
127 | information gathering about a running Linux system. This information | 127 | information gathering about a running Linux system. This information |
128 | helps you diagnose performance or functional problems. SystemTap is | 128 | helps you diagnose performance or functional problems. SystemTap is |
129 | not available as a user-space tool through the Eclipse IDE Yocto | 129 | not available as a user-space tool through the Eclipse IDE Yocto |
130 | Plug-in. See ` <http://sourceware.org/systemtap>`__ for more | 130 | Plug-in. See http://sourceware.org/systemtap for more |
131 | information on SystemTap. For examples on how to setup and use this | 131 | information on SystemTap. For examples on how to setup and use this |
132 | tool, see the | 132 | tool, see the |
133 | "`SystemTap <&YOCTO_DOCS_PROF_URL;#profile-manual-systemtap>`__" | 133 | "`SystemTap <&YOCTO_DOCS_PROF_URL;#profile-manual-systemtap>`__" |
134 | section in the Yocto Project Profiling and Tracing Manual. | 134 | section in the Yocto Project Profiling and Tracing Manual. |
135 | 135 | ||
136 | - *Lttng-ust:* A User-space Tracer designed to provide detailed | 136 | - *Lttng-ust:* A User-space Tracer designed to provide detailed |
137 | information on user-space activity. See ` <http://lttng.org/ust>`__ | 137 | information on user-space activity. See http://lttng.org/ust |
138 | for more information on Lttng-ust. | 138 | for more information on Lttng-ust. |