mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
Add $id to configuration schema, switch to version-specific repository links.
This commit is contained in:
parent
24ee072442
commit
316b0989c3
6 changed files with 36 additions and 33 deletions
|
@ -204,8 +204,8 @@
|
|||
}
|
||||
|
||||
// Show library version
|
||||
document.getElementById("version").textContent =
|
||||
"(v" + markdownlint.getVersion() + ")";
|
||||
var version = markdownlint.getVersion();
|
||||
document.getElementById("version").textContent = "(v" + version + ")";
|
||||
|
||||
// Add event listeners
|
||||
document.body.addEventListener("dragover", onDragOver);
|
||||
|
@ -227,7 +227,7 @@
|
|||
"Content gets parsed and displayed in the upper-right box; rule violations (if any) show up in the lower-right box.",
|
||||
"Click a violation for information about it or click its line number to highlighted it in the lower-left box.",
|
||||
"",
|
||||
"> *Note*: [All rules](https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md) are enabled except [MD013/line-length](https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md).",
|
||||
"> *Note*: [All rules](https://github.com/DavidAnson/markdownlint/blob/v" + version + "/doc/Rules.md) are enabled except [MD013/line-length](https://github.com/DavidAnson/markdownlint/blob/v" + version + "/doc/md013.md).",
|
||||
"",
|
||||
"",
|
||||
"#### Resources",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue