Titus
Titus
> I would like the ampersands in my templating syntax to remain untouched. This is not something that can be done with ASTs. ASTs work by loosing information. They are...
> I just need to know the html that is there, and operate on it. You already have this. You can use unified **only to parse a document into a...
Closing. As it stands I am not yet convinced this should go here as-is. Maybe somewhere else? Or maybe it can be clarified?
Why would you not want documents to be checked?
@Noah-Silvera Could you clarify how you generate that markdown content? How are you using this plugin, and remark in general?
This plugin is specifically for Markdown references, e.g., from docs in a GitHub project, to other docs in that same GitHub project. It doesn’t check whether your links work on...
If you would write: ```markdown Such as the [`auth.sign-in`](api-commands-operations-events#command-auth.sign-in) command... ``` …in [`docs/web/configuration-commands-operations.mdx`](https://github.com/geocortex/dev-center/blob/master/docs/web/configuration-commands-operations.mdx), and this file was rendered on GitHub, then when someone clicks on that link, it will result...
Can you use links to the website? ```markdown - [`auth.sign-in`](https://developers.geocortex.com/docs/web/api-commands-operations-events/#command-auth.sign-in) - [`auth.sign-out`](https://developers.geocortex.com/docs/web/api-commands-operations-events/#command-auth.sign-out) - `edit.add-feature` - `edit.delete-features` ```
Would comments work? ```markdown - [`auth.sign-in`](broken) - [`auth.sign-out`](broken) - `edit.add-feature` - `edit.delete-features` ```
interesting! This project is very much for stuff hosted on github/gitlab/bitbucket. So, repositories, that link to other markdown files in that repository. I think we even support such URLs, but...