0
votes
Language condition for tag, e.g.
For multilingual websites, it would be extremely helpful to be able to use an tag to output different content depending on the language of the current page.
I think something similar to the following examples might work well:
<If lang=”en”>
<h1>Hello</h1>
</If>
<If lang=”fr”>
<h1>Bonjour</h1>
</If>
<If lang=”de”>
<h1>Hallo</h1>
</If>