Skip to content

How can I set a default pageClass? #672

Answered by psi-4ward
psi-4ward asked this question in Q&A
Discussion options

You must be logged in to vote

Mysterious ... asking the question helps a lot to solve it 😆

// defaultPageClassPlugin.ts
export default {
  name: 'myPlugin',
  extendsPageData: (page) => {
    const frontmatter = page.frontmatter || {};
    if(!frontmatter.pageClass) {
      frontmatter.pageClass = 'default-class';
    }
  },
};

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by psi-4ward
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant