Update MD054/link-image-style to add url_inline parameter (fixes #753).

This commit is contained in:
David Anson 2023-11-12 22:42:02 -08:00
parent 84333a5f08
commit b709a2f624
26 changed files with 347 additions and 39 deletions

View file

@ -1020,6 +1020,10 @@ export interface Configuration {
* Allow shortcut reference links and images
*/
shortcut?: boolean;
/**
* Allow URLs as inline links
*/
url_inline?: boolean;
};
/**
* MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.31.1/doc/md054.md
@ -1047,6 +1051,10 @@ export interface Configuration {
* Allow shortcut reference links and images
*/
shortcut?: boolean;
/**
* Allow URLs as inline links
*/
url_inline?: boolean;
};
/**
* headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043