Typo3 带有错别字的丰富网页摘要

Typo3 Rich Snippets with typoscript

我未能成功在我的 typo3 网站中实施丰富网页摘要。基本上我已经尝试包装 html 标签并包含元代码片段但无济于事,但出现了一系列网站错误。

page.meta.itemprop.name = name
page.meta.itemprop.description = description 
page.meta.itemprop.image = http://www.example.com/img/01.png

html代码如下

<html itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="name">
<meta itemprop="description" content="description">
<meta itemprop="image" content="http://www.example.com/image.png">

应该使用什么错别字?

这对我有用。

config.htmlTag_stdWrap {
    setContentToCurrent = 1
    cObject = COA
    cObject {
        1 = TEXT
        1.value = itemscope 
        1.noTrimWrap = | | |
        2 = TEXT
        2.value = itemtype="http://schema.org/Organization"
        2.noTrimWrap = | | |
  3 = TEXT
        3.value = lang="en"
        wrap = <html | >
    }
}
page {
  headerData {
    4 = TEXT
    4.value (
<meta itemprop="name" content="Your site Name">
<meta itemprop="description" content="Your site description">
<meta itemprop="image" content="http://www.example.com/img/01.png">
    )
  }
}