-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
Potential incorrect Markdown link syntax #106
Comments
I verified locally that correcting the syntax does result in a successful build. |
Hey @ajatprabha, thanks for looking into this. The Lacking the ability to do that, a CLI flag seems like a possible option. Removing the |
Docusaurus uses MDX which according to docs is a superset of standard Markdown syntax supporting JSX as well. Not sure how much effort it will be to add a new flavour for this. |
Adding new format types isn't too bad (most code has a shared core and tests are generated from snapshots anyway). It looks like the specific problem with MDX here is not actually the base markdown syntax (CommonMark is the base spec they reference and it supports Are there any other features of the I've considered adding a CommonMark format in the past and have only held off because nobody has asked for it. I'd be alright with throwing an MDX format in with a couple tweaks while I'm at it if that can make the integration more seamless. |
I'm working on something where I need to use the Markdown generated from
gomarkoc
, and then use the result in a Docusaurus documentation project.However, creating a build fails, because the
Link
is probably wrong, AFAIK, I have seen the syntax to be[text](link)
and not[text](<link>)
.gomarkdoc/format/formatcore/base.go
Line 101 in e62c5ab
GitHub Docs Ref: https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#links
Is there any particular reason for doing this? If not, can we fix this?
Failing use-case: Link
Error:
The text was updated successfully, but these errors were encountered: