The summary-line escaping is not working correctly. Creating a topic with a
summary of:
this is <h2> o'clock
ends up with this in the email:
<p><a class="" href="...">this is <h2> o'clock</h2></a></p>
It should be this instead:
<p><a class="" href="...">this is <h2> o'clock</a></p>
---
** [tickets:#5693] Last paragraph in Allura notification mails about forum
posts is <h2> in HTML**
**Status:** open
**Labels:** 42cc
**Created:** Fri Jan 25, 2013 10:01 PM UTC by Michalis Kamburelis
**Last Updated:** Mon Jul 01, 2013 05:02 PM UTC
**Owner:** nobody
When sending notification mails about forum posts, Allura appends at the end
text like
~~~~
---
[thread title](thread link)
~~~~
This means that the paragraph above will be accidentally processed by Markdown
as a header (< h2 >).
For example, consider this discussion thread
https://sourceforge.net/p/castle-engine/discussion/general/thread/e17a79e1/ .
The last paragraph of 2nd post says "I also fixed the deprecated usage of
CreateCamera that you can see mentioned in FPC messages."
Now when Allura sends me a notification mail about this forum post, it looks
like this in text version:
~~~~
I also fixed the deprecated usage of CreateCamera that you can see mentioned in
FPC messages.
---
[Error compiling SVN example with "make
examples"](https://sourceforge.net/p/castle-engine/discussion/general/thread/e17a79e1/?limit=25#c927)
---
Sent from sourceforge.net because you indicated interest in
<https://sourceforge.net/p/castle-engine/discussion/general/>
To unsubscribe from further messages, please visit
<https://sourceforge.net/auth/prefs/>
~~~~
And like this in HTML version:
~~~~
<h2 id="...">I also fixed the deprecated usage of CreateCamera that you can see
mentioned in FPC messages.</h2>
<p><a class=""
href="https://sourceforge.net/p/castle-engine/discussion/general/thread/e17a79e1/?limit=25#c927">Error
compiling SVN example with "make examples"</a></p>
<hr />
<p>Sent from sourceforge.net because you indicated interest in <a
href="https://sourceforge.net/p/castle-engine/discussion/general/">https://sourceforge.net/p/castle-engine/discussion/general/</a></p>
<p>To unsubscribe from further messages, please visit <a
href="https://sourceforge.net/auth/prefs/">https://sourceforge.net/auth/prefs/</a></p></div>
~~~~
The HTML version of the email was obviously prepared by processing text version
with Markdown. And the "---" (appended automatically by Allura) caused the
paragraph "I also fixed the deprecated usage" to be surrounded by < h2 >, since
this is how you make headers using Markdown.
A trivial solution would probably be to just add a newline before the "---"
that is appended by Allura.
---
Sent from sourceforge.net because [email protected] is subscribed
to https://sourceforge.net/p/allura/tickets/
To unsubscribe from further messages, a project admin can change settings at
https://sourceforge.net/p/allura/admin/tickets/options. Or, if this is a
mailing list, you can unsubscribe from the mailing list.