aboutsummaryrefslogtreecommitdiff
path: root/plugins/javadoc/src/main/resources/views
diff options
context:
space:
mode:
authorBłażej Kardyś <bkardys@virtuslab.com>2020-07-15 09:00:51 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-07-15 10:58:50 +0200
commite6184e5171d5a16bb4cc1fbd296309a66795eae5 (patch)
tree777387896682ecac571e82ae52a291816ea72c41 /plugins/javadoc/src/main/resources/views
parent0d2bc7387b518c7c25e42c9966241426c86f30f6 (diff)
downloaddokka-e6184e5171d5a16bb4cc1fbd296309a66795eae5.tar.gz
dokka-e6184e5171d5a16bb4cc1fbd296309a66795eae5.tar.bz2
dokka-e6184e5171d5a16bb4cc1fbd296309a66795eae5.zip
Javadoc constructor anchor link fix
Diffstat (limited to 'plugins/javadoc/src/main/resources/views')
-rw-r--r--plugins/javadoc/src/main/resources/views/class.korte8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/javadoc/src/main/resources/views/class.korte b/plugins/javadoc/src/main/resources/views/class.korte
index 7c0ca368..a909bf3c 100644
--- a/plugins/javadoc/src/main/resources/views/class.korte
+++ b/plugins/javadoc/src/main/resources/views/class.korte
@@ -118,7 +118,7 @@
{% for constructor in constructors %}
<tr class="{{ rowColor(loop.index0) }}">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a
- href="#%3Cinit%3E({{ constructor.inlineParameters }})">{{ constructor.name }}</a></span>({{ constructor.inlineParameters|raw }})</code></th>
+ href="#{{ constructor.anchorLink }}">{{ constructor.name }}</a></span>({{ constructor.inlineParameters|raw }})</code></th>
<td class="colLast">{{ constructor.brief|raw }}</td>
</tr>
{% endfor %}
@@ -220,9 +220,7 @@
</a>
<h3>Constructor Detail</h3>
{% for constructor in constructors %}
- <a id="&lt;{{ constructor.name }}&gt;({{ constructor.inlineParameters }})">
- <!-- -->
- </a>
+ <a name="{{ constructor.anchorLink }}"></a>
<ul class="blockList">
<li class="blockList">
<h4>{{ constructor.name }}</h4>
@@ -254,7 +252,7 @@
</a>
<h3>Method Detail</h3>
{% for method in methods.own %}
- <a name="{{ method.anchorLink }}">
+ <a name="{{ method.anchorLink }}"></a>
<ul class="blockListLast">
<li class="blockList">
<h4>{{ method.name }}</h4>