2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 10:46:03 +00:00

contrib/commandref_join.pl: accept id for document tag (Forum #119166)

git-svn-id: https://svn.fhem.de/fhem/trunk@23843 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-02-27 19:42:42 +00:00
parent 108b10b052
commit 5f97868680
4 changed files with 1 additions and 3 deletions

View File

@ -654,7 +654,6 @@ MQTT2_CLIENT_getStr($$)
=begin html
<a id="MQTT2_CLIENT"></a>
<a name="MQTT2_CLIENT"></a>
<h3>MQTT2_CLIENT</h3>
<ul>
MQTT2_CLIENT is a cleanroom implementation of an MQTT client (which connects

View File

@ -614,7 +614,6 @@ MQTT2_SERVER_ReadDebug($$)
=begin html
<a id="MQTT2_SERVER"></a>
<a name="MQTT2_SERVER"></a>
<h3>MQTT2_SERVER</h3>
<ul>
MQTT2_SERVER is a builtin/cleanroom implementation of an MQTT server using no

View File

@ -886,7 +886,6 @@ zigbee2mqtt_devStateIcon255($;$$)
=begin html
<a id="MQTT2_DEVICE"></a>
<a name="MQTT2_DEVICE"></a>
<h3>MQTT2_DEVICE</h3>
<ul>
MQTT2_DEVICE is used to represent single devices connected to the

View File

@ -187,6 +187,7 @@ generateModuleCommandref($$;$$)
$docCount++;
next if($noWarnings);
$hasLink = ($l =~ m/<a name="$mod"/) if(!$hasLink);
$hasLink = ($l =~ m/<a id="$mod"/) if(!$hasLink);
foreach $tag (TAGS) {
if($l =~ m/<$tag ([^>]+)>/i) {
my $attr = $1;