Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

</strong> tag doesn't work, entire feed is bold #15

Open
dtiburon opened this issue Jan 28, 2013 · 3 comments
Open

</strong> tag doesn't work, entire feed is bold #15

dtiburon opened this issue Jan 28, 2013 · 3 comments
Milestone

Comments

@dtiburon
Copy link
Collaborator

This may be related to [this issue https://github.com//issues/10] or may not be.

I noticed today that a post from wordpress.com had used <strong> tags but the </strong> tag is not honored so the text continues to be bolded, not only through the end of that entry, but into all the feeds displayed below it!
Screen Shot 2013-01-28 at 2 22 06 PM

I checked the HTML code in that feed and the following feed to confirm that it didn't coincidentally have an un-closed <strong> tag at the beginning of the following entry.

The entry where this starts appears like this on Planeteria:
Screen Shot 2013-01-28 at 2 21 41 PM

But it looks like this in her own blog:
Screen Shot 2013-01-28 at 2 21 24 PM

The HTML code from her blog is:

<p><strong>2nd reading, wherein Paul makes the famous &#8220;there are many parts, but one body&#8221; analogy</strong></p>
<p><strong></strong>Perhaps this story is new to you;

Notice that there is an empty pair of strong tags, but they are definitely closed (a WYSIWYG artifact). However, all the text that appears afterward is still bold on Planeteria. The HTML of the Planeteria.org page looks like this:

<p><strong>2nd reading, wherein Paul makes the famous &#8220;there are many parts, but one body&#8221; analogy</strong></p>
<p><strong/>Perhaps this story is new to you;

Here, the empty pair of strong tags have been changed to <strong/> for some reason. The slash is on the wrong side, so understandably the browser thinks it's an open strong tag.

@jvasile
Copy link
Owner

jvasile commented Mar 27, 2013

Thank you for the report. This appears to be a duplicate of issue 10. Closing as dupe.

@jvasile jvasile closed this as completed Mar 27, 2013
@jvasile
Copy link
Owner

jvasile commented Mar 30, 2013

Fixed by commit 9a9f67a!

@dtiburon
Copy link
Collaborator Author

I'm afraid to report that I'm still seeing this happen on Planeteria. The strong tag in this entry did not close properly. The source code for the entry came in like this:

<p><strong></p>
<p> Collector: collects breakpad minidump crashes (over HTTP POST);</p>
<p> Monitor: watch for incoming crashes, feed to processor;</p>
<p> Processor: turn breakpad minidump crashes into stack traces and other info;</p>
<p> Middleware: provide HTTP REST interface for JSON reports and real-time crash data;</p>
<p> Web UI: django-based application for visualizing and reporting.</p>
<p></strong></p>

But when displayed on Planeteria the source code did this:

<p><strong/></p>
<p> Collector: collects breakpad minidump crashes (over HTTP POST);</p>
<p> Monitor: watch for incoming crashes, feed to processor;</p>
<p> Processor: turn breakpad minidump crashes into stack traces and other info;</p>
<p> Middleware: provide HTTP REST interface for JSON reports and real-time crash data;</p>
<p> Web UI: django-based application for visualizing and reporting.</p>
<p/>

which resulted in the rest of her entry and every entry after that displayed in bold.

@dtiburon dtiburon reopened this Jun 21, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants