-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: support generating sidebar items with tags #10672
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
|
Support generating sidebar items based on specified tags:
This will retrieve all docs that have the tags
cart
and all the docs that have the tagstorefront
.We can also retrieve an intersection of tags with the
+
operator:This only retrieves the documents that have both
cart
andstorefront
tagsWe can also use a combination of
,
and+
. For example,product,cart+storefront
retrieves:product
tagcart
andstorefront
tagsCloses DX-1218