Posted by bkraegelin on February 16, 2010 at 8:44am
4 followers
Jump to:
| Project: | Inline |
| Version: | 6.x-1.0 |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
I made a views2 view 'latest blog entries', where I want to show title and teaser.
When I have an inline statement in the teaser, it does not get substituted by the content (here: inline image). Text formatted in MarkDown-Syntax gets substituted to HTML correctly.
Any Suggestions?
Comments
#1
Same here.
#2
I used a little bit ugly workaround with "Customfield: PHP code":
<?php
$node = node_build_content(node_load($data->nid), false, true);
node_invoke_nodeapi($node, 'alter', false, true);
echo node_teaser($node->body, null, 170);
?>