diff options
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn | 3 | ||||
-rw-r--r-- | doc/bugs/markdown_bug:_email_escaping_and_plus_addresses.mdwn | 29 |
2 files changed, 32 insertions, 0 deletions
diff --git a/doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn b/doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn index d7d101700..4ce4ac5ee 100644 --- a/doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn +++ b/doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn @@ -17,3 +17,6 @@ Is it a bug or security feature? --[[Paweł|ptecza]] >> (`myisam__95__vs__95__ndb` instead of `myisam_vs_ndb`). --[[Paweł|ptecza]] > [[done]], uses `linkpage` now. + +>> It's seems that now Ikiwiki doesn't escape the filenames with underscore(s). +>> Thank you very much for the fast fix! --[[Paweł|ptecza]] diff --git a/doc/bugs/markdown_bug:_email_escaping_and_plus_addresses.mdwn b/doc/bugs/markdown_bug:_email_escaping_and_plus_addresses.mdwn new file mode 100644 index 000000000..875de48c8 --- /dev/null +++ b/doc/bugs/markdown_bug:_email_escaping_and_plus_addresses.mdwn @@ -0,0 +1,29 @@ +compare: + + * <jon+markdownbug@example.org> + * <jon.markdownbug@example.org> + +* <jon+markdownbug@example.org> +* <jon.markdownbug@example.org> + +It seems putting a '+' in there throws it. Maybe it's a markdown bug, or maybe the obfuscation markdown applies to email-links is being caught by the HTML sanitizer. + + -- [[JonDowland]] + +> It's a markdown bug. For some reason, markdown doesn't recognize the email with a '+' as an email: +> +> $ echo '<a+b@c.org>' | markdown +> <p><a+b@c.org></p> +> +> htmlscrubber then (rightly) removes this unknown tag. +> +> But I've noticed some other Text::Markdown bugs that, even with htmlscrubber, produce +> [ill-formed (X)HTML](http://validator.w3.org/check?uri=http%3A%2F%2Fikiwiki.info%2Fbugs%2Fmarkdown_bug%3A_email_escaping_and_plus_addresses%2F). +> (View the markdown source of this page.) +> +> --Gabriel + +<tt> + +- +> |