I've installed a fresh copy of Drupal and 7.x-1.0-rc3+42-dev because I'm trying to get to the bottom of an issue with HTML spitting out as just raw HTML rather than being rendered as such.
The scenario goes as follows:
First, create a new Journal Article, and in the Abstract field, include some HTML. An example would be:
<p>Hello! This <b>is an abstract</b></p>
Now, when looking at the Biblio node output, (in Tabular Styling) this looks fine. The text is bolded, and it's all surrounded by p tags.
Next, I create a new view page ( export: https://gist.github.com/a2e919b64b74fb46a93f ) that just contains the abstract of any published biblio.
This abstract field will output as raw HTML.
I expected the HTML from the field to be rendered.
Advice?
Comments
Comment #1
rjerome commentedI've created a new field handler for "text_format" elements (which is what the abstract field is). This new handler will output the text in whatever format it was saved it.
You will have to flush your caches after installing the new -dev version, so that views will see the new handler.
http://drupalcode.org/project/biblio.git/commit/32a462e
Comment #2
mattyohe commentedThank you for this, and your continued support of this module.