mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
MD033/no-inline-html: Add table_allowed_elements parameter.
This commit is contained in:
parent
c6e2ee1488
commit
1ac0b22804
16 changed files with 432 additions and 8 deletions
8
lib/configuration-strict.d.ts
vendored
8
lib/configuration-strict.d.ts
vendored
|
|
@ -605,6 +605,10 @@ export interface ConfigurationStrict {
|
|||
* Allowed elements
|
||||
*/
|
||||
allowed_elements?: string[];
|
||||
/**
|
||||
* Allowed elements in tables
|
||||
*/
|
||||
table_allowed_elements?: string[];
|
||||
};
|
||||
/**
|
||||
* MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md033.md
|
||||
|
|
@ -616,6 +620,10 @@ export interface ConfigurationStrict {
|
|||
* Allowed elements
|
||||
*/
|
||||
allowed_elements?: string[];
|
||||
/**
|
||||
* Allowed elements in tables
|
||||
*/
|
||||
table_allowed_elements?: string[];
|
||||
};
|
||||
/**
|
||||
* MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md034.md
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue