tags:

views:

210

answers:

1

In mediawiki, whenever you embed a template into an article, it is always proceeded by a line break (as far as I know). Is there some way to prevent this so that I may place templates next to one another without the second one being on a new line?

+2  A: 

Use the <includeonly> tag if you didn't already, and make sure not to put two returns in your template before the </includeonly>

So

<includeonly>This is a template. </includeonly>

makes {{Template}}{{Template}} output as

This is a template. This is a template


But,

<includeonly>This is a template. 

</includeonly>

makes {{Template}}{{Template}} output as

This is a template. 

This is a template
Adrian Archer
Thank you very much. This is a much simpler solution than I was expecting.
Koukaakiva