mildronize / mildronize.github.io-old

My current site
MIT License
4 stars 1 forks source link

List all Tag Pages & searchable #26

Open mildronize opened 3 years ago

mildronize commented 3 years ago

Todo

Example: TypeScript
lodash.kebabCase -> type-script
slugify -> typescript
// Filename: gatsby-node.js

    // Generate a list of tags
    if (edge.node.frontmatter.tags) {
      edge.node.frontmatter.tags.forEach((tag) => {
        tagSet.add(tag);
      });
    }

Future