Skip to content

Instantly share code, notes, and snippets.

@henshaw
Last active January 14, 2024 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henshaw/eb22b470e4d91649cc82233435313084 to your computer and use it in GitHub Desktop.
Save henshaw/eb22b470e4d91649cc82233435313084 to your computer and use it in GitHub Desktop.
BreadcrumbList Schema example with emoji
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"item":
{
"@id": "https://coywolf.com",
"name": "🐺 Coywolf"
}
},{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://coywolf.reviews",
"name": "⭐ Reviews"
}
},{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://coywolf.reviews/topic/products/",
"name": "💡 Product"
}
},{
"@type": "ListItem",
"position": 4,
"item":
{
"@id": "https://coywolf.reviews/products/remarkable-2-review-best-paper-like-tablet-for-sketching-and-note-taking/",
"name": "ReMarkable 2 is the best paper-like tablet for sketching and notes"
}
}
]
}
@henshaw
Copy link
Author

henshaw commented Jul 22, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment