mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 09:16:02 +03:00
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#868
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?
📋 Pull Request Information
Original PR: https://github.com/DavidAnson/markdownlint/pull/448
Author: @regseb
Created: 10/21/2021
Status: ✅ Merged
Merged: 10/24/2021
Merged by: @DavidAnson
Base:
next← Head:emphasis-style📝 Commits (2)
dacee66Add MD049/emphasis-style (fixes #150).9314cb3Merge branch 'next' into emphasis-style📊 Changes
27 files changed (+418 additions, -35 deletions)
View changed files
📝
README.md(+2 -1)📝
demo/markdownlint-browser.js(+31 -0)📝
doc/Rules.md(+33 -3)➕
lib/md049.js(+28 -0)📝
lib/rules.js(+1 -0)📝
schema/.markdownlint.jsonc(+6 -0)📝
schema/.markdownlint.yaml(+5 -0)📝
schema/build-config-schema.js(+14 -0)📝
schema/markdownlint-config-schema.json(+43 -1)📝
test/break-all-the-rules.md(+4 -0)📝
test/detailed-results-MD031-MD040.json(+2 -1)📝
test/emphasis-not-heading-in-blockquote.md(+2 -2)📝
test/emphasis_instead_of_headings.md(+1 -1)➕
test/emphasis_style_asterisk.json(+6 -0)➕
test/emphasis_style_asterisk.md(+5 -0)➕
test/emphasis_style_underscore.json(+6 -0)➕
test/emphasis_style_underscore.md(+5 -0)📝
test/fix_102_extra_nodes_in_link_text.md(+3 -3)📝
test/links-with-markup.md(+1 -1)📝
test/long_lines.md(+3 -3)...and 7 more files
📄 Description
The rest of the pull request #445 to correct the issue #150.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
MD033- Inline HTML Tags:htmlAliases:no-inline-htmlParameters: -allowed_elements: Allowed elements (string[], default[]) This rule is triggered whenever raw HTML is used in a Markdown document: ```markdown <… #1076MD033- Inline HTML Tags:htmlAliases:no-inline-htmlParameters: -allowed_elements: Allowed elements (string[], default[]) This rule is triggered whenever raw HTML is used in a Markdown document: ```markdown <… #2926