I have been trying to research this issue for about a week now but not having much luck as some of the similar postings do not make too much sense to me. Either way, I appreciate any help and guidance on this!
I have a custom module that utilizes the CKeditor and submits HTML tags to the appropriate column in the database table. Example tags: <p></p><ul></ul><li></li>
I am using the views module to display results but instead of the HTML tags rendering, I am seeing:
<p>This is a test:</p> <ul> <li>test 1</li> <li>test 2</li> <li>test 3</li>
</ul>
When I inspect the browser I actually see:
<p>This is a test:</p>
<ul>
<li>test 1</li>
<li>test 2</li>
<li>test 3</li>
</ul>
What I want to see is:
This is a test:
- test 1
- test 2
- test 3
Go to Source of this post
Author Of this post: Keith
Title Of post: Drupal 7 Not Rendering HTML tags
Author Link: {authorlink}