From 89a36e0eed4a31856cca0cedb9b67ce79cee5100 Mon Sep 17 00:00:00 2001 From: Ingo Kegel Date: Mon, 4 Jan 2016 13:36:54 +0100 Subject: Embedded underscores in words like word_with_underscores or single embedded stars like embedded*star were removed in the output. --- core/testdata/format/uninterpretedEmphasisCharacters.html | 15 +++++++++++++++ core/testdata/format/uninterpretedEmphasisCharacters.kt | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 core/testdata/format/uninterpretedEmphasisCharacters.html create mode 100644 core/testdata/format/uninterpretedEmphasisCharacters.kt (limited to 'core/testdata') diff --git a/core/testdata/format/uninterpretedEmphasisCharacters.html b/core/testdata/format/uninterpretedEmphasisCharacters.html new file mode 100644 index 00000000..9afd88d9 --- /dev/null +++ b/core/testdata/format/uninterpretedEmphasisCharacters.html @@ -0,0 +1,15 @@ + + +test / foo + + +test / foo
+
+

foo

+fun foo(): Unit
+

This is emphasized text but text_with_underscores has to preserve the underscores. +Single stars embedded in a word like Embedded*Star have to be preserved as well.

+
+
+ + diff --git a/core/testdata/format/uninterpretedEmphasisCharacters.kt b/core/testdata/format/uninterpretedEmphasisCharacters.kt new file mode 100644 index 00000000..711bb567 --- /dev/null +++ b/core/testdata/format/uninterpretedEmphasisCharacters.kt @@ -0,0 +1,5 @@ +/** + * This is _emphasized text_ but text_with_underscores has to preserve the underscores. + * Single stars embedded in a word like Embedded*Star have to be preserved as well. + */ +fun foo() {} \ No newline at end of file -- cgit