mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 17:26:22 +03:00
[GH-ISSUE #274] make work with .rmd (R Markdown) files #235
Labels
No labels
bug
enhancement
enhancement
enhancement
fixed in next
fixed in next
fixed in next
new rule
new rule
new rule
pull-request
question
refactoring
refactoring
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/markdownlint#235
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SpeedCoder5 on GitHub (Apr 16, 2020).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/274
Works great with .md (Markdown) files. Don't know how to make it work with .rmd (R Markdown) files. If it already does - perhaps it is just an update to the documentation?
@DavidAnson commented on GitHub (Apr 16, 2020):
R Markdown appears to be based on Markdown, so I would assume all of the common structure would be handled similarly. Context: https://ourcodingclub.github.io/tutorials/rmarkdown/
What do you mean when you say it doesn’t work?
@SpeedCoder5 commented on GitHub (Apr 16, 2020):
When I edit a .md file in VSCode with the extension installed it shows rule violations in the "problems" view. If, instead, the extension of the file is .rmd the rule violations do not show up in the "problems" view.
@DavidAnson commented on GitHub (Apr 17, 2020):
It sounds like you want to change the language mode of the current file - or maybe for all “.rmd“ files - to “markdown“. Here is the documentation for how to do that in VS Code: https://code.visualstudio.com/docs/languages/overview
@SpeedCoder5 commented on GitHub (Apr 17, 2020):
Yes. That worked. Thanks. :D