Comment reference urls

This commit is contained in:
Sam Carlton 2021-03-26 15:28:18 -05:00
parent aed6004f81
commit 2570ec3c46

View file

@ -149,12 +149,16 @@ export default {
structuredData () {
return {
"@context": "https://schema.org",
// https://developers.google.com/search/docs/data-types/faqpage
// https://schema.org/FAQPage
"@type": "FAQPage",
"mainEntity": this.categoryAppList.map( app => {
return {
// https://schema.org/Question
"@type": "Question",
"name": `Does ${app.name} work on Apple Silicon and Apple M1 Macs?`,
"acceptedAnswer": {
// https://schema.org/Answer
"@type": "Answer",
"text": app.text
}