mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
866 B
866 B
Spaces Inside Link Text
foo {MD039}
foo {MD039}
foo {MD039}
"foo" {MD039}
foo {MD039}
foo {MD039}
The following shouldn't break anything:

function CodeButNotCode(input) { return input.replace(/- /g, "one"); // {MD039} }
function MoreCodeButNotCode(input) { input = input.replace(/- /g, "two"); // {MD039} input = input.toLowerCase(); input = input.replace(/- /g, "three"); // {MD039} return input; }