mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
Added test for markdown bug with linking [ul]
and [poll]
This commit is contained in:
parent
3d42c2d515
commit
36f53790f4
@ -150,6 +150,10 @@ test("Links", function() {
|
|||||||
cooked("[Link](http://www.example.com) (with an outer \"description\")",
|
cooked("[Link](http://www.example.com) (with an outer \"description\")",
|
||||||
"<p><a href=\"http://www.example.com\">Link</a> (with an outer \"description\")</p>",
|
"<p><a href=\"http://www.example.com\">Link</a> (with an outer \"description\")</p>",
|
||||||
"it doesn't consume closing parens as part of the url");
|
"it doesn't consume closing parens as part of the url");
|
||||||
|
|
||||||
|
cooked("[ul][1]\n\n[1]: http://eviltrout.com",
|
||||||
|
"<p><a href=\"http://eviltrout.com\">ul</a></p>",
|
||||||
|
"it can use `ul` as a link name");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("simple quotes", function() {
|
test("simple quotes", function() {
|
||||||
|
3
vendor/assets/javascripts/better_markdown.js
vendored
3
vendor/assets/javascripts/better_markdown.js
vendored
@ -1186,15 +1186,14 @@
|
|||||||
this,
|
this,
|
||||||
text.substr( m.index ), m, previous_nodes || [] );
|
text.substr( m.index ), m, previous_nodes || [] );
|
||||||
|
|
||||||
|
// If no inline code executed, fallback
|
||||||
if (!res) {
|
if (!res) {
|
||||||
// fallback
|
|
||||||
var fn = this.dialect.inline[m[1][0]];
|
var fn = this.dialect.inline[m[1][0]];
|
||||||
if (fn) {
|
if (fn) {
|
||||||
res = fn.call(
|
res = fn.call(
|
||||||
this,
|
this,
|
||||||
text.substr( m.index ), m, previous_nodes || [] );
|
text.substr( m.index ), m, previous_nodes || [] );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Default for now to make dev easier. just slurp special and output it.
|
// Default for now to make dev easier. just slurp special and output it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user