Merge pull request #571 from bkmgit/v2 add tests for ftp links
Russ Ross russ@russross.com
Tue, 18 Feb 2020 16:46:30 -0700
2 files changed,
21 insertions(+),
0 deletions(-)
M
testdata/Markdown Documentation - Basics.html
→
testdata/Markdown Documentation - Basics.html
@@ -244,6 +244,18 @@ <pre><code><p>I start my morning with a cup of coffee and
<a href="http://www.nytimes.com/">The New York Times</a>.</p> </code></pre> +<p>It is also common to find other protocols such as ftp used for links:</p> + +<p>Input:</p> + +<pre><code>For example one may test download speeds [here](ftp://speedtest.tele2.net/) +</code></pre> + +<p>Output:</p> + +<pre><code><p>For example one may test download speeds <a href="ftp://speedtest.tele2.net/">here</a>.</p> +</code></pre> + <h3>Images</h3> <p>Image syntax is very much like link syntax.</p>
M
testdata/Markdown Documentation - Basics.text
→
testdata/Markdown Documentation - Basics.text
@@ -239,6 +239,15 @@
<p>I start my morning with a cup of coffee and <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> ### Images ###