Skip to content

Commit 22a3562

Browse files
authored
feat: add list markup support (#18)
1 parent 465d0d5 commit 22a3562

File tree

27 files changed

+4322
-2042
lines changed

27 files changed

+4322
-2042
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Legend for syntax support:
5959
| Label | | 🚫 | 🚫 |
6060
| Reference | | 🚫 | 🚫 |
6161
| Heading | Header || 🚫 |
62-
| Bullet list | List / ListItem | 🚫 | 🚫 |
63-
| Numbered list | List / ListItem | 🚫 | 🚫 |
62+
| Bullet list | List / ListItem | | 🚫 |
63+
| Numbered list | List / ListItem | | 🚫 |
6464
| Term list | | 🚫 | 🚫 |
6565
| Math | | 🚫 | 🚫 |
6666
| Line break | Break || 🚫 |

bun.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"@types/node": "^20.12.2",
1616
"bun-types": "latest",
1717
"esbuild": "^0.20.2",
18+
"textlint-rule-period-in-list-item": "^1.0.1",
1819
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
1920
"textlint-scripts": "^14.0.4",
2021
"textlint-tester": "^14.0.4",
@@ -1085,6 +1086,8 @@
10851086

10861087
"textlint-rule-no-zero-width-spaces": ["textlint-rule-no-zero-width-spaces@1.0.1", "", {}, "sha512-AkxpzBILGB4YsXddzHx2xqpXmqMv5Yd+PQm4anUV+ADSJuwLP1Jd6yHf/LOtu9j3ps8K3XM9vQrXRK73z0bU3A=="],
10871088

1089+
"textlint-rule-period-in-list-item": ["textlint-rule-period-in-list-item@1.0.1", "", { "dependencies": { "check-ends-with-period": "^3.0.1" } }, "sha512-dNPa4WzePcgsz8A+CxFGQgKNZCEvjjwMCu3DFcpYB4eKuhcSISEiS/mvEO42oGAALJluYdYVZxN3yMD6XzkLBA=="],
1090+
10881091
"textlint-rule-preset-ja-technical-writing": ["textlint-rule-preset-ja-technical-writing@12.0.2", "", { "dependencies": { "@textlint-rule/textlint-rule-no-invalid-control-character": "^3.0.0", "@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4", "@textlint/module-interop": "^14.4.0", "textlint-rule-ja-no-abusage": "^3.0.0", "textlint-rule-ja-no-mixed-period": "^3.0.1", "textlint-rule-ja-no-redundant-expression": "^4.0.1", "textlint-rule-ja-no-successive-word": "^2.0.1", "textlint-rule-ja-no-weak-phrase": "^2.0.0", "textlint-rule-ja-unnatural-alphabet": "2.0.1", "textlint-rule-max-comma": "^4.0.0", "textlint-rule-max-kanji-continuous-len": "^1.1.1", "textlint-rule-max-ten": "^5.0.0", "textlint-rule-no-double-negative-ja": "^2.0.1", "textlint-rule-no-doubled-conjunction": "^3.0.0", "textlint-rule-no-doubled-conjunctive-particle-ga": "^3.0.0", "textlint-rule-no-doubled-joshi": "^5.1.0", "textlint-rule-no-dropping-the-ra": "^3.0.0", "textlint-rule-no-exclamation-question-mark": "^1.1.0", "textlint-rule-no-hankaku-kana": "^2.0.1", "textlint-rule-no-mix-dearu-desumasu": "^6.0.3", "textlint-rule-no-nfd": "^2.0.2", "textlint-rule-no-zero-width-spaces": "^1.0.1", "textlint-rule-preset-jtf-style": "^3.0.1", "textlint-rule-sentence-length": "^5.2.0" } }, "sha512-BBVY6oA5V799k5wRfP+gCpDHsp6vWjWX2UT+/KLlAFFsNdmRB8Z6qyOnqiOjfzmLGIRgoMcPI1dXj5upOqnD6Q=="],
10891092

10901093
"textlint-rule-preset-jtf-style": ["textlint-rule-preset-jtf-style@3.0.2", "", { "dependencies": { "analyze-desumasu-dearu": "^2.1.2", "japanese-numerals-to-number": "^1.0.2", "match-index": "^1.0.3", "moji": "^0.5.1", "regexp.prototype.flags": "^1.5.3", "regx": "^1.0.4", "textlint-rule-helper": "^2.3.1", "textlint-rule-prh": "^6.0.0" } }, "sha512-rpB1OCIK4KZqZOnM+vVxDCBkgzDH3XINCRiHQ+gV8SRydtfppPWx9WAoxCvq8lm7YuRdGiFU6XartIix2Fc2kA=="],

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"@types/node": "^20.12.2",
3838
"bun-types": "latest",
3939
"esbuild": "^0.20.2",
40+
"textlint-rule-period-in-list-item": "^1.0.1",
4041
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
4142
"textlint-scripts": "^14.0.4",
4243
"textlint-tester": "^14.0.4",

0 commit comments

Comments
 (0)