From ddd22fc7652f468f57c5a9dca380743eea53be5d Mon Sep 17 00:00:00 2001 From: ingo Date: Wed, 6 Jan 2016 13:39:54 +0100 Subject: Linking to a target with underscores did not work For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore. Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node is not sufficient. --- core/testdata/links/linkToConstantWithUnderscores.kt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 core/testdata/links/linkToConstantWithUnderscores.kt (limited to 'core/testdata/links') diff --git a/core/testdata/links/linkToConstantWithUnderscores.kt b/core/testdata/links/linkToConstantWithUnderscores.kt new file mode 100644 index 00000000..57011bfa --- /dev/null +++ b/core/testdata/links/linkToConstantWithUnderscores.kt @@ -0,0 +1,8 @@ +/** + * This is link to [MY_CONSTANT_VALUE] + */ +class Foo { + companion object { + val MY_CONSTANT_VALUE = 0 + } +} \ No newline at end of file -- cgit