all repos — grayfriday @ a1ae674f6fdc9265925c01731dc0fe6532fff546

blackfriday fork with a few changes

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
commit

a1ae674f6fdc9265925c01731dc0fe6532fff546

parent

3e56bb68c8876389c631e9e318ce3c092a0906db

2 files changed, 21 insertions(+), 0 deletions(-)

jump to
M testdata/Markdown Documentation - Basics.htmltestdata/Markdown Documentation - Basics.html

@@ -244,6 +244,18 @@ <pre><code>&lt;p&gt;I start my morning with a cup of coffee and

&lt;a href=&quot;http://www.nytimes.com/&quot;&gt;The New York Times&lt;/a&gt;.&lt;/p&gt; </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>&lt;p&gt;For example one may test download speeds &lt;a href=&quot;ftp://speedtest.tele2.net/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt; +</code></pre> + <h3>Images</h3> <p>Image syntax is very much like link syntax.</p>
M testdata/Markdown Documentation - Basics.texttestdata/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 ###