You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blog Posts usually have tags and we've included support for tags and keywords in the official blog theme.
Basic example
In the default MDX content format we use in the official themes, the implementation would come out to defining tags like this:
---
tags: [gatsby, gatsby-themes]
---
Some blog post
Where the proxy type MdxBlogPost would also implement Tag:
interface Tag @nodeInterface {
title: String!
descriptions: String!
}
Motivation
People like to organize stuff into different topics. Should this be an extension to core? how would we achieve that? Should this be natively implemented by gatsby-theme-blog-core and gatsby-theme-notes-core? Why?
The text was updated successfully, but these errors were encountered:
Summary
Blog Posts usually have tags and we've included support for tags and keywords in the official blog theme.
Basic example
In the default MDX content format we use in the official themes, the implementation would come out to defining tags like this:
Where the proxy type
MdxBlogPost
would also implementTag
:Motivation
People like to organize stuff into different topics. Should this be an extension to core? how would we achieve that? Should this be natively implemented by gatsby-theme-blog-core and gatsby-theme-notes-core? Why?
The text was updated successfully, but these errors were encountered: