diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-16 19:17:13 +0100 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-16 19:17:13 +0100 |
commit | 18bd85cc710718658d6c902c04de5d356cd0aee8 (patch) | |
tree | fcecd542c10b764a8120cd839db47c25f8eba386 /test/data | |
parent | 0f7f49d4828b618d0f5ea0475d15f7498b61f6de (diff) | |
parent | d093fc192beab22086506240fbe7747663cc73fa (diff) | |
download | dokka-18bd85cc710718658d6c902c04de5d356cd0aee8.tar.gz dokka-18bd85cc710718658d6c902c04de5d356cd0aee8.tar.bz2 dokka-18bd85cc710718658d6c902c04de5d356cd0aee8.zip |
Merge pull request #22 from orangy/broken-links
don't generate broken links if a doc comment references an unresolved symbol
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/format/brokenLink.html | 12 | ||||
-rw-r--r-- | test/data/format/brokenLink.kt | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/data/format/brokenLink.html b/test/data/format/brokenLink.html new file mode 100644 index 00000000..d5f8707f --- /dev/null +++ b/test/data/format/brokenLink.html @@ -0,0 +1,12 @@ +<HTML> +<HEAD> +</HEAD> +<BODY> +<a href="out.html">test</a> / <a href="out.html"></a> / <a href="out.html">f</a><br/> +<br/> +<h1>f</h1> +<pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><p>This references <a href="#">noSuchIdentifier</a>.</p> +<br/> +<br/> +</BODY> +</HTML> diff --git a/test/data/format/brokenLink.kt b/test/data/format/brokenLink.kt new file mode 100644 index 00000000..268a986e --- /dev/null +++ b/test/data/format/brokenLink.kt @@ -0,0 +1,4 @@ +/** + * This references [noSuchIdentifier]. + */ +fun f() { } |