Hi,
Is there any way to insert meta tags (with values derives from normal mydbr commands) between the <head> ...</head> of the HTML? I'd like to add open graph meta tags for when a report page is shared and I want specific titles, description and image to be picked up. At a minimum I'd like to use something like:
<meta property="og:title" content="My generated report name based on the parameters">
<meta property="og:description" content="A description of my generated report name based on the parameters">
<meta property="og:image" content="http://mydomain.com/thumbnail.jpg">
<meta property="og:url" content="http://mydomain.com/index.htm">
<meta name="twitter:card" content="summary_large_image">
I looked through the documentation but couldn't find an option. The last line is a custom Twitter meta tag in the example above is a slightly different format than the others, the the first four seem to be the open graph standard.