Show content from DIV in a META-tag
问题 I have a div which is like this: <div id="beskrivelse" class="description html_content" itemprop="description"> {{description}} </div> The content {{description}} is made in the backend. How can I make it so that this content will be shown in my meta here: <meta property="og:description" content=" HERE "/> I get a syntax error if I write: <meta property="og:description" content=" {{description}} "/> Is ther a simple way to do it? Maybe put it in a variable of some sort? There is no way for me