Media container is rendered at reduced size

If I add a statement like {{CS21}} to the text field of a tiddler where this refers to a tiddler of type application/pdf and whose _canonical_uri field is set to Images/CS21.pdf, the pdf image is rendered at the size of the tiddler area with scroll bars as necessary.

If I manually add some statements before the {{CS21}} statement, the pdf remains rendered at full size.

If, however, I use a action_createtiddler widget to add the text and link to the text field of a newly created tiddler, the pdf is rendered at very small size. I read in the text that images inserted via transclusion can not have their width and height set.

Is there a workaround apart from using the <img tag?
and, why does the first case leave the pdf rendered correctly?

bobj

Not the asterisks in your output? Try a blank line before your transclusion.

TiddlyWiki does its best to determine if it is to display content inline or block, also it always helps to show the code.

@TW_Tones , this example is from my previous query and the rendering of the bulleted list should be ignored in this case. The issue is the reduced pdf rendering.

bobj

Still…

* Object type: <$view field="object_type" />
* Date start: <$view field="date_start" />
* Date end: <$view field="date_end" />
{{Motovun Jack.pdf}}
  • It is about what came before.
  • If you want a block output then remove it from the bullets line, or it will be treated as inline

I have found out that the problem occurred when I used </p><p> strings instead of charcound[10] to insert a new line. Replacing the

strings by newline rendered the pdf’s at correct size

bobj