Transclusion - Images

i am using transclusion a lot. When I use transclusion for several images for example :
{{Image 1 }} {{Image 2 }} {{Image 3 }} the images are displayed vertically instead of horizontally as
{{Image 1 }}
{{Image 2 }}
{{Image 3 }}

what do i have to add so that the images are displayed horizontally on one line

Thanks for your help

The official Markdown syntax for images might be more suitable in this case as transcluded files are always separated by line feeds.

Depending on the generated HTML, CSS might come to the rescue. I suppose that the img element is a direct child of a p:

p :has(> img) {
  display: inline-block;
}

might do the trick.