-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Rewrite html plugin #23
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
a8cbde8
init
azu 9c837d5
install kernel
azu 06bebe2
refactor: work hype
azu 011f872
fix: convert to TypeScript
azu 9fc121d
fix: mapping
azu 86de0f0
fix: rename Unknown to Html
azu c3eab32
test: test dump
azu 106d50d
fix: do not use Html
azu 9b0bb62
fix
azu 32a588a
test: add fragment test
azu b213bd6
test: output json
azu 8c4a089
test: up time
azu b0731bb
remove comman
azu fb20022
test: add example
azu 4221428
CI: add example test
azu 7ae3ea0
Update node
azu 03b7def
chore: remove unused code
azu 5d70251
test: remove allowJs
azu de93e1e
feat: support h1-h6 tag
azu 990982a
feat: ol and ul
azu 83d1b69
update
azu 995d8d6
CI: test
azu 00fa00f
CI: add .github/release.yml
azu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"timeout": "5000", | ||
"require": [ | ||
"@babel/register" | ||
] | ||
"$schema": "https://json.schemastore.org/mocharc", | ||
"loader": "ts-node/esm", | ||
"spec": [ | ||
"test/**/*.{js,ts}" | ||
], | ||
"timeout": 10000 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- 'Type: Meta' | ||
- 'Type: Question' | ||
- 'Type: Release' | ||
|
||
categories: | ||
- title: Security Fixes | ||
labels: ['Type: Security'] | ||
- title: Breaking Changes | ||
labels: ['Type: Breaking Change'] | ||
- title: Features | ||
labels: ['Type: Feature'] | ||
- title: Bug Fixes | ||
labels: ['Type: Bug'] | ||
- title: Documentation | ||
labels: ['Type: Documentation'] | ||
- title: Refactoring | ||
labels: ['Type: Refactoring'] | ||
- title: Testing | ||
labels: ['Type: Testing'] | ||
- title: Maintenance | ||
labels: ['Type: Maintenance'] | ||
- title: CI | ||
labels: ['Type: CI'] | ||
- title: Dependency Updates | ||
labels: ['Type: Dependencies', "dependencies"] | ||
- title: Other Changes | ||
labels: ['*'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"plugins": [ | ||
"html" | ||
], | ||
"filters": {}, | ||
"rules": { | ||
"preset-ja-technical-writing": { | ||
"ja-no-mixed-period": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"private": true, | ||
"name": "example", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "textlint test/ -f pretty-error || exit 0" | ||
}, | ||
"workspaces": [ | ||
"../" | ||
], | ||
"author": "azu", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"textlint": "^13.0.5", | ||
"textlint-rule-preset-ja-technical-writing": "^7.0.0", | ||
"textlint-plugin-html": "^0.3.0" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
example test