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
2009-03-26 18:49:38
Thank you very much. This is a much simpler solution than I was expecting.
Koukaakiva
2009-03-27 05:02:34