Skip to content

Commit

Permalink
fix(README): Escape symbols to fix README (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
shirayu authored and azu committed Jan 2, 2019
1 parent 5185de5 commit c7d9277
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

## 表現の一覧

- "すること[助詞]()可能"は冗長な表現です。"すること[助詞]()可能"を省き簡潔な表現にすると文章が明瞭になります。
- "すること\[助詞]()可能"は冗長な表現です。"すること\[助詞]()可能"を省き簡潔な表現にすると文章が明瞭になります。
- 参考: <http://qiita.com/takahi-i/items/a93dc2ff42af6b93f6e0>
- "すること[助詞]できる"は冗長な表現です。"すること[助詞]"を省き簡潔な表現にすると文章が明瞭になります。
- "すること\[助詞]できる"は冗長な表現です。"すること\[助詞]"を省き簡潔な表現にすると文章が明瞭になります。
- 参考: <http://qiita.com/takahi-i/items/a93dc2ff42af6b93f6e0>
- "であると言えます"は冗長な表現です。"である" または "と言えます"を省き簡潔な表現にすると文章が明瞭になります。
- 参考: <http://www.sekaihaasobiba.com/entry/2014/10/24/204024>
Expand Down
4 changes: 2 additions & 2 deletions src/dictionary.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = [
}, {
"pos": "助詞",
"_capture": "$3",
"_readme": "[助詞]",
"_readme": "\\[助詞]",
}, {
"surface_form": punctuations,
"_skippable": true,
Expand Down Expand Up @@ -77,7 +77,7 @@ module.exports = [
}
return "";
},
"_readme": "[助詞]",
"_readme": "\\[助詞]",
},
{
"surface_form": punctuations,
Expand Down

0 comments on commit c7d9277

Please sign in to comment.