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

martijn houtman’s picture

Same here.

MantasK’s picture

I used a little bit ugly workaround with "Customfield: PHP code":

$node = node_build_content(node_load($data->nid), false, true);
node_invoke_nodeapi($node, 'alter', false, true);
echo node_teaser($node->body, null, 170);