Daewoong Moon

Results 5 comments of Daewoong Moon

Yeah it seems a good idea. I also agree that YAML is easier to maintain. I will start to work on this (...soon or later 😛)

That's what exactly the Link component from `gatsby-plugin-intl` does. You can check the component code. https://github.com/wiziple/gatsby-plugin-intl/blob/master/src/link.js#L6

Not at this moment, but planning on it with YAML support.

haha haven't even started yet. PR welcomed for everyone XD

You can override filterTreeNode something like this. ``` export const treeSelectFilterTreeNode = (input, treeNode) => { const compare1 = treeNode.props.title.toLowerCase(); const compare2 = input.toLowerCase(); return compare1.indexOf(compare2) >= 0; }; ```