Dimitri POSTOLOV
Dimitri POSTOLOV
Your work looks incredible 👏, but I would like to stay with the default way particular users still could override it in favour of Holocron with `editLink.component` option https://github.com/shuding/nextra/blob/66798f8e7f92cca80f2d62d19f9db5667bcc62ef/packages/nextra-theme-docs/src/constants.tsx#L203-L212
Feel free to contribute and send a PR
Please provide reproduction repo
for `Link` question it can be done via https://nextra.site/docs/docs-theme/theme-configuration#mdx-components option for `index` - not sure what is a proper way to do it, maybe to assign it to `globalThis` variable...
Please provide a reproduction
you can do it by ```diff -### Install +{Install} ``` more info on why it works https://nextra.site/docs/guide/advanced/table#why-this-happens feel free to contribute to `steps` docs
Just use eslint-disable comment for your particular case
your code is already invalid if length = 0 `true > 0` if length > 0 `false > 0`
I will work on it!
also, it can verify `if`/`if-else` statements ```js if (foo) { return true } return true ``` ```js if (foo) { return true } else { return true } ```