From 3fe73a9430c1b782c5891fb61dd5565ab7ee9178 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 6 Feb 2015 17:39:41 +0100 Subject: handle parenthesis tokens in markdown --- test/data/format/parenthesis.html | 13 +++++++++++++ test/data/format/parenthesis.kt | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 test/data/format/parenthesis.html create mode 100644 test/data/format/parenthesis.kt (limited to 'test/data') diff --git a/test/data/format/parenthesis.html b/test/data/format/parenthesis.html new file mode 100644 index 00000000..9e739443 --- /dev/null +++ b/test/data/format/parenthesis.html @@ -0,0 +1,13 @@ + + +test / foo + + +test /  / foo
+
+

foo

+
fun foo(): Unit

foo (bar)

+
+
+ + diff --git a/test/data/format/parenthesis.kt b/test/data/format/parenthesis.kt new file mode 100644 index 00000000..b906f64a --- /dev/null +++ b/test/data/format/parenthesis.kt @@ -0,0 +1,4 @@ +/** + * foo (bar) + */ +fun foo() {} -- cgit