Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdownlint: enable "no-trailing-punctuation" rule #14243

Merged
merged 4 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@
"single-title": {
"front_matter_title": "^\\s*title\\s*[:=]"
},
"no-trailing-punctuation": false,
// XXX Replace with the following when ready:
// "no-trailing-punctuation": {
// "punctuation": ".,;:"
// },
"no-trailing-punctuation": {
"punctuation": ".,;:"
},
// Consecutive Notes/Callouts currently don't conform with this rule
"no-blanks-blockquote": false,
// Force ordered numbering to catch accidental list ending from indenting
Expand Down
2 changes: 1 addition & 1 deletion files/ko/web/api/element/prepend/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ div.prepend("Some text", p);
console.log(div.childNodes); // NodeList [ #text "Some text", <p> ]
```

### prepend 메서드는 범위가 지정되지 않습니다.
### prepend 메서드는 범위가 지정되지 않습니다

`prepend()` 메서드는 `with` 문으로 범위가 지정되지 않습니다.
자세한 내용은 {{jsxref("Symbol.unscopables")}} 참고하시기 바랍니다.
Expand Down
Loading