diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-03-16 21:07:29 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-03-20 18:20:19 +0300 |
commit | 3693c2f7e75822ad035007f98c8d55006d9eabbd (patch) | |
tree | 4feb66bfed6517e17bf198e47f3b377db23fdef6 /core/testdata | |
parent | 51377df14fcbc326a79fcee0975d29b5ca014a85 (diff) | |
download | dokka-3693c2f7e75822ad035007f98c8d55006d9eabbd.tar.gz dokka-3693c2f7e75822ad035007f98c8d55006d9eabbd.tar.bz2 dokka-3693c2f7e75822ad035007f98c8d55006d9eabbd.zip |
Fix p tag closing in HTML format's
Diffstat (limited to 'core/testdata')
-rw-r--r-- | core/testdata/format/overloadsWithDescription.html | 3 | ||||
-rw-r--r-- | core/testdata/format/overloadsWithDifferentDescriptions.html | 9 | ||||
-rw-r--r-- | core/testdata/format/parameterAnchor.html | 3 |
3 files changed, 6 insertions, 9 deletions
diff --git a/core/testdata/format/overloadsWithDescription.html b/core/testdata/format/overloadsWithDescription.html index 09b92e66..fe98b8fe 100644 --- a/core/testdata/format/overloadsWithDescription.html +++ b/core/testdata/format/overloadsWithDescription.html @@ -14,8 +14,7 @@ <p>Performs an action on <a href="test/f#$f(kotlin.Int)/x">x</a>.</p> <p>This is a long description.</p> <h3>Parameters</h3> - <p><a name="x"></a> -<code>x</code> - the value to perform the action on. +<code>x</code> - the value to perform the action on.</p> </BODY> </HTML> diff --git a/core/testdata/format/overloadsWithDifferentDescriptions.html b/core/testdata/format/overloadsWithDifferentDescriptions.html index 4d621d33..947c72d6 100644 --- a/core/testdata/format/overloadsWithDifferentDescriptions.html +++ b/core/testdata/format/overloadsWithDifferentDescriptions.html @@ -7,22 +7,21 @@ <a href="test/index">test</a> / <a href="test/f">f</a><br/> <br/> <h1>f</h1> - <p><a name="$f(kotlin.Int)"></a> <code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier" id="$f(kotlin.Int)/x">x</span><span class="symbol">:</span> <span class="identifier">Int</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code> <p>Performs an action on x.</p> <p>This is a long description.</p> <h3>Parameters</h3> - <p><a name="x"></a> -<code>x</code> - the int value to perform the action on. +<code>x</code> - the int value to perform the action on.</p> +</p> <p><a name="$f(kotlin.String)"></a> <code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier" id="$f(kotlin.String)/x">x</span><span class="symbol">:</span> <span class="identifier">String</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code> <p>Performs an action on x.</p> <p>This is a long description.</p> <h3>Parameters</h3> - <p><a name="x"></a> -<code>x</code> - the string value to perform the action on. +<code>x</code> - the string value to perform the action on.</p> +</p> </BODY> </HTML> diff --git a/core/testdata/format/parameterAnchor.html b/core/testdata/format/parameterAnchor.html index 15532a6d..ecb89fe6 100644 --- a/core/testdata/format/parameterAnchor.html +++ b/core/testdata/format/parameterAnchor.html @@ -11,8 +11,7 @@ <code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="identifier">processFiles</span><span class="symbol">(</span><span class="identifier" id="$processFiles(kotlin.Function0((processFiles.T)))/processor">processor</span><span class="symbol">:</span> <span class="symbol">(</span><span class="symbol">)</span> <span class="symbol">-></span> <span class="identifier">T</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">List</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span></code> <p>Runs <a href="test/process-files#$processFiles(kotlin.Function0((processFiles.T)))/processor">processor</a> for each file and collects its results into single list</p> <h3>Parameters</h3> - <p><a name="processor"></a> -<code>processor</code> - function to receive context for symbol resolution and file for processing +<code>processor</code> - function to receive context for symbol resolution and file for processing</p> </BODY> </HTML> |