[Date Index][Thread Index]
[Date Prev][Date Next][Thread Prev][Thread Next]

Using isolatin with templates



I have a template and want to use the container isolatin.
 
My template looks like this
 
...
#use wml::fmt::isolatin
...
<<BODY>>
...
..BODY>>
<isolatin>
 
As you can see the container is never closed since adding a </isolatin> at the end will be included before the page itself. Currently is do simething like this
 
...
#use wml::fmtt::isolatin
...
<isolatin>
<<BODY>>
</isolatin>
...
..BODY>>
 
Now the body section is isolatin-ed, but not the (navigational) rest.
 
Any ideas?
 
...darko