mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Comment reference urls
This commit is contained in:
parent
aed6004f81
commit
2570ec3c46
1 changed files with 4 additions and 0 deletions
|
|
@ -149,12 +149,16 @@ export default {
|
||||||
structuredData () {
|
structuredData () {
|
||||||
return {
|
return {
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
|
// https://developers.google.com/search/docs/data-types/faqpage
|
||||||
|
// https://schema.org/FAQPage
|
||||||
"@type": "FAQPage",
|
"@type": "FAQPage",
|
||||||
"mainEntity": this.categoryAppList.map( app => {
|
"mainEntity": this.categoryAppList.map( app => {
|
||||||
return {
|
return {
|
||||||
|
// https://schema.org/Question
|
||||||
"@type": "Question",
|
"@type": "Question",
|
||||||
"name": `Does ${app.name} work on Apple Silicon and Apple M1 Macs?`,
|
"name": `Does ${app.name} work on Apple Silicon and Apple M1 Macs?`,
|
||||||
"acceptedAnswer": {
|
"acceptedAnswer": {
|
||||||
|
// https://schema.org/Answer
|
||||||
"@type": "Answer",
|
"@type": "Answer",
|
||||||
"text": app.text
|
"text": app.text
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue