We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Super low priority.
It is not currently possible to escape markdown parsing for docs pages.
The only issue this causes right now is trying to describe the markdown parsing in the dev docs.
It would be nice to be able to escape markdown parsing.
Maybe something like:
{no-parse} [Some doc page](docs:config/doc-page) {end-no-parse}
But, I haven't given it much thought.
Current rules:
[Some doc page](docs:config/doc-page) => [Some doc page](https://github.com/roots/bud/tree/stable/docs/config/doc-page)
[Some repo path](url:packages/@roots/bud/src) => [Some repo path](https://github.com/roots/bud/tree/stable/packages/@roots/bud/src)
`@roots/bud` => [@roots/bud](https://github.com/roots/bud/tree/stable/packages/@roots/bud)
[badge](npm:@roots/bud)
@user/repo
All of this is in https://github.com/roots/bud/tree/stable/dev/docs/gen/remark.ts. Some of it is powered by remark; the more specific stuff is just regex parsing.
remark
The text was updated successfully, but these errors were encountered:
https://github.com/Nevenall/remark-containers
Sorry, something went wrong.
This issue is closed by #148 now that we've moved on to using docusaurus.
No branches or pull requests
Summary
Super low priority.
It is not currently possible to escape markdown parsing for docs pages.
The only issue this causes right now is trying to describe the markdown parsing in the dev docs.
Motivation
It would be nice to be able to escape markdown parsing.
Maybe something like:
But, I haven't given it much thought.
Additional context
Current rules:
[badge](npm:@roots/bud)
becomes a badge@user/repo
becomes a link to whatever github repoAll of this is in https://github.com/roots/bud/tree/stable/dev/docs/gen/remark.ts. Some of it is powered by
remark
; the more specific stuff is just regex parsing.The text was updated successfully, but these errors were encountered: