Setting and adding meta tags to head Last updated: 01. Oct 2021

Setting meta tags in tag - using ID and SetAttributes

Master.hash example:

<html>
    <head>
        <title>Dette er en test</title>
       <meta id="keywords" name="keywords" content="" />
    </head>
    <body>
        Text From master
        <div>
            hei hei
        </div>
    </body>
</html>

Page.hash example:

<!--#master file="master.hash"-->
<meta id="keywords" name="keywords" content="Test 123"  xdt:Transform="SetAttributes" />
<html>
    <body></body>
</html>

Adding meta tags in tag - using Insert

Master.hash example:

<html>
    <head>
        <title>Dette er en test</title>
    </head>
    <body>
        Text From master
        <div>
            hei hei
        </div>
    </body>
</html>

Page.hash example:

<!--#master file="master.hash"-->
<html>
    <head>
        <meta name="keywords" content="Test 123"  xdt:Transform="Insert" />
    <head>
    <body></body>
</html>