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
I was having a poke through the gatsby-transformer-markdown-references package, and I notice there seems to be some code for an aliases frontmatter object.
Would it be possible for gatsby-digital-garden to make use of this aliases object to allow you to define alternative aliases in a page...
---
title: Hello World
aliases: [ 'hello world', 'alternative alias' ]
---
Lorem ipsum
..and then reference one of the alternative aliases in another page?
---
title: Another page
---
Check out [[alternative alias]].
The text was updated successfully, but these errors were encountered:
Yeah I have some code for that but the references are generated at a time where the frontmatter isn't loaded yet. So I need to find a solution for that
Really cool project!
I was having a poke through the
gatsby-transformer-markdown-references
package, and I notice there seems to be some code for an aliases frontmatter object.Would it be possible for gatsby-digital-garden to make use of this aliases object to allow you to define alternative aliases in a page...
..and then reference one of the alternative aliases in another page?
The text was updated successfully, but these errors were encountered: