我如何在ld + json中向常见的微数据插入表情符号笑容?

问题描述 投票:0回答:1

我有faq格式的ld+json微数据:

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What should my {{ profession.name|lower }} cover letter contain?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The main purpose of a cover letter is to introduce yourself, mention the job you’re applying for, show that your skills and experience match the needed skills and experience for the job."
      }
    }
  ]
}

如何将表情符号笑容📄插入name字段以及如何对其进行测试?

seo emoji microdata
1个回答
0
投票

只需将其设置为名称:

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What should my {{ profession.name|lower }} cover letter contain? 📄",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The main purpose of a cover letter is to introduce yourself, mention the job you’re applying for, show that your skills and experience match the needed skills and experience for the job."
      }
    }
  ]
}
© www.soinside.com 2019 - 2024. All rights reserved.