All RedCloth quick phrase modifiers are now limited to a single line.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@796
e93f8b46-1217-0410-a6f0-
8f06a7374b81
]
QTAGS = [
- ['**', 'b'],
- ['*', 'strong'],
+ ['**', 'b', :limit],
+ ['*', 'strong', :limit],
['??', 'cite', :limit],
['-', 'del', :limit],
- ['__', 'i'],
+ ['__', 'i', :limit],
['_', 'em', :limit],
['%', 'span', :limit],
['+', 'ins', :limit],
- ['^', 'sup'],
- ['~', 'sub']
+ ['^', 'sup', :limit],
+ ['~', 'sub', :limit]
]
QTAGS.collect! do |rc, ht, rtype|
rcq = Regexp::quote rc
def test_auto_links
to_test = {
'http://foo.bar' => '<a class="external" href="http://foo.bar">http://foo.bar</a>',
+ 'http://foo.bar/~user' => '<a class="external" href="http://foo.bar/~user">http://foo.bar/~user</a>',
'http://foo.bar.' => '<a class="external" href="http://foo.bar">http://foo.bar</a>.',
'http://foo.bar/foo.bar#foo.bar.' => '<a class="external" href="http://foo.bar/foo.bar#foo.bar">http://foo.bar/foo.bar#foo.bar</a>.',
'www.foo.bar' => '<a class="external" href="http://www.foo.bar">www.foo.bar</a>',