diff --git a/testdata/Markdown Documentation - Basics.html b/testdata/Markdown Documentation - Basics.html index ea3a61c..7aafd55 100644 --- a/testdata/Markdown Documentation - Basics.html +++ b/testdata/Markdown Documentation - Basics.html @@ -244,6 +244,18 @@ numbers and spaces, but are not case sensitive:
<a href="http://www.nytimes.com/">The New York Times</a>.</p> +It is also common to find other protocols such as ftp used for links:
+ +Input:
+ +For example one may test download speeds [here](ftp://speedtest.tele2.net/)
+
+
+Output:
+ +<p>For example one may test download speeds <a href="ftp://speedtest.tele2.net/">here</a>.</p>
+
+
Image syntax is very much like link syntax.
diff --git a/testdata/Markdown Documentation - Basics.text b/testdata/Markdown Documentation - Basics.text index 486055c..9ac8a56 100644 --- a/testdata/Markdown Documentation - Basics.text +++ b/testdata/Markdown Documentation - Basics.text @@ -239,6 +239,15 @@ Output:I start my morning with a cup of coffee and The New York Times.
+It is also common to find other protocols such as ftp used for links: + +Input: + + For example one may test download speeds [here](ftp://speedtest.tele2.net/) + +Output: + +For example one may test download speeds here.
### Images ###