Fix CONTRIBUTING.MDX formatting snafu introduced in PR 2989 #3073
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
From what I understand, the auto-formatting/prettifier plugin used by Cursorless really didn't like how CONTRIBUTING.MDX needed to be formatted to have the separation between vscode and vscodium specific commands show properly, and as a result broke a bunch of the code blocks, transforming them from
echo hello yes this is dog
to
bash echo hello yes this is dog
though ofc the commands were actual commands and not an echo example. I forget if any other formatting was broken, it has been a while since I actually finished the work on this and I just forgot to make a PR for it, sorry (been busy with getting ready for the new semester, health nonsense, and non-CS hobbies). This PR fixes the aforementioned issue and excludes CONTRIBUTING.MDX from being processed by the auto-formatting plugin, allowing it to contain all of the weird extended markdown jank the plugin seems to really not like. If there's a more elegant way to do this (changing the rules the plugin follows?) please lmk and commit it if you have the time, this is very much not my usual wheelhouse.