diff options
author | Alex Waters <awaters@nextfaze.com> | 2017-04-28 14:56:44 +0930 |
---|---|---|
committer | Simon Ogorodnik <sem-oro@yandex.ru> | 2017-05-02 15:48:38 +0300 |
commit | acbe2f8c47a81c8e6046214f600ffdef24890fa6 (patch) | |
tree | 114626d3489c1eb74c78f7e36a3d95b3ef2ab62b /core/testdata/format/linksInHeaders.kt | |
parent | 5d611906da72c6ceff3722d307cf663461c908e7 (diff) | |
download | dokka-acbe2f8c47a81c8e6046214f600ffdef24890fa6.tar.gz dokka-acbe2f8c47a81c8e6046214f600ffdef24890fa6.tar.bz2 dokka-acbe2f8c47a81c8e6046214f600ffdef24890fa6.zip |
Fix missing whitespace around links and tokens in Markdown formatted text
Diffstat (limited to 'core/testdata/format/linksInHeaders.kt')
-rw-r--r-- | core/testdata/format/linksInHeaders.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/testdata/format/linksInHeaders.kt b/core/testdata/format/linksInHeaders.kt new file mode 100644 index 00000000..18efd34b --- /dev/null +++ b/core/testdata/format/linksInHeaders.kt @@ -0,0 +1,24 @@ +/** + * Some class with really useless documentation. + * + * # Beer o'clock - time to go to the [Bar] + * + * ## But __is [it](isitbeeroclock.com)__ really? + * + * ### [Bar.hello] to the [Bar.world]! + * + * #### _Kotlin is amazing, [Bar.none]_ + * + * ##### We need to go [Bar.deeper] + * + * ###### End of the [Bar.line] - we need to go back! + */ +class Bar { + fun foo() {} + fun hello() {} + fun world() {} + fun kotlin() {} + fun none() {} + fun deeper() {} + fun line() {} +} |