FIX: Autolines were duplicating some text
This commit is contained in:
parent
a3757016d9
commit
ae93fcebde
|
@ -49,6 +49,7 @@ Discourse.Dialect.on("register", function(event) {
|
|||
|
||||
if (remaining && remaining.match(/\n/)) {
|
||||
next.unshift(MD.mk_block(remaining));
|
||||
remaining = [];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -62,6 +62,10 @@ test("Links", function() {
|
|||
'<p>EvilTrout: <a href="http://eviltrout.com">http://eviltrout.com</a></p>',
|
||||
"autolinks a URL");
|
||||
|
||||
cooked("EvilTrout: http://eviltrout.com hello",
|
||||
'<p>EvilTrout: <a href="http://eviltrout.com">http://eviltrout.com</a> hello</p>',
|
||||
"autolinks with trailing text");
|
||||
|
||||
cooked("here is [an example](http://twitter.com)",
|
||||
'<p>here is <a href="http://twitter.com">an example</a></p>',
|
||||
"supports markdown style links");
|
||||
|
|
Loading…
Reference in New Issue