mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
man: use meaningful titles for <ulink>s
As pointed out in https://github.com/systemd/systemd/issues/29814, we need to use phrases are are meaningful on their own, because the man page formatter creates a list at the bottom. With <ulink>see docs</ulink>, we end up with: NOTES: 1. see docs https://some.url/page 2. see docs https://some.url/page2 which is not very useful :( Also, the text inside the tag should not include punctuation. Python helper: from xml_helper import xml_parse for p in glob.glob('../man/*.xml'): t = xml_parse(p) ulinks = t.iterfind('.//ulink') for ulink in ulinks: if ulink.text is None: continue text = ' '.join(ulink.text.split()) print(f'{p}: {text}')
This commit is contained in:
@@ -712,11 +712,11 @@
|
||||
<varlistentry>
|
||||
<term><varname>ReduceARPProxy=</varname></term>
|
||||
<listitem>
|
||||
<para>Takes a boolean. When true, bridge-connected VXLAN tunnel
|
||||
endpoint answers ARP requests from the local bridge on behalf
|
||||
of remote Distributed Overlay Virtual Ethernet
|
||||
<para>Takes a boolean. When true, bridge-connected VXLAN tunnel endpoint answers ARP requests from
|
||||
the local bridge on behalf of remote
|
||||
<ulink url="https://en.wikipedia.org/wiki/Distributed_Overlay_Virtual_Ethernet">
|
||||
(DOVE)</ulink> clients. Defaults to false.</para>
|
||||
Distributed Overlay Virtual Ethernet (DOVE)</ulink>
|
||||
clients. Defaults to false.</para>
|
||||
|
||||
<xi:include href="version-info.xml" xpointer="v233"/>
|
||||
</listitem>
|
||||
|
||||
Reference in New Issue
Block a user