public
Description: RedCloth is a Ruby library for converting Textile into HTML.
Homepage: http://code.whytheluckystiff.net/redcloth/
Clone URL: git://github.com/jgarber/redcloth.git
Click here to lend your support to: redcloth and make a donation at www.pledgie.com !
- Links were consuming closing HTML tags.  (See latest test in 
tests/links.yml.)
why (author)
Tue May 25 07:47:46 -0700 2004
commit  c129dd3fa9abdffb094f45975e653353a6ae91bd
tree    c0d8c084084a3dcebabc6f945f776f20f78ca990
parent  0f593129bf1895bf79e8947fb98f787d8d832183
...
1
2
3
 
4
 
5
6
7
...
1
2
 
3
4
5
6
7
8
0
@@ -1,7 +1,8 @@
0
 --- %YAML:1.0
0
 - version: 2.0.9
0
- date: 2004-05-22
0
+ date: 2004-05-25
0
   changes:
0
+ - Links were consuming closing HTML tags. (See latest test in tests/links.yml.)
0
     - Improved RDoc. Ri documentation is auto-installed now!
0
 
0
 - version: 2.0.8
...
555
556
557
558
 
559
560
561
...
555
556
557
 
558
559
560
561
0
@@ -555,7 +555,7 @@ class RedCloth < String
0
             (\S+?) # $url
0
             (\/)? # $slash
0
             ([^\w\/;]*?) # $post
0
- (?=\s|$)
0
+ (?=<|\s|$)
0
         /x
0
 
0
     def links( text )
...
147
148
149
 
 
 
...
147
148
149
150
151
152
0
@@ -147,3 +147,6 @@ out: <p><a href="../lab/exercises/exercises.html">Lab Exercises</a>.</p>
0
 ---
0
 in: 'Go to "discuss":http://www.dreammoods.com/cgibin/cutecast/cutecast.pl?forum=1&thread=26627 to discuss.'
0
 out: <p>Go to <a href="http://www.dreammoods.com/cgibin/cutecast/cutecast.pl?forum=1&#38;thread=26627">discuss</a> to discuss.</p>
0
+---
0
+in: '* "rubylang":http://www.ruby-lang.org/en/'
0
+out: "<ul>\n\t<li><a href=\"http://www.ruby-lang.org/en/\">rubylang</a></li>\n\t</ul>"

Comments

    No one has commented yet.