AddToHead (types::String content)
AddToBody (types::String content)
AddToBodyTop (types::String content)
Nyttig f.eks. ved lenking til Javascript-filer i maler som kjører flere ganger på samme side.
ConditionalAddToHead (types::String content) ConditionalAddToBody (types::String content)
Legge inn søk/erstatt-par som utføres før siden sendes fra server:
AddReplace (types::String from, types::String to) ConditionalAddReplace (types::String from, types::String to)
ConditionalAddReplace legges inn bare dersom fra-verdien ikke allerede er lagt til i søk/erstatt-lista som skal utføres.
Eksempler:
a blir til c :
AddReplace('a','b');
AddReplace('a','c');
a blir til b :
ConditionalAddReplace('a','b');
ConditionalAddReplace('a','c');