azu
azu
I think the best way to make a textlint-plugin-mdx. Actually, MDX and Markdown are not completely compatible. - https://github.com/micromark/mdx-state-machine#72-deviations-from-markdown textlint-plugin-markdown treat `{/* .... */}` as HTML fragments.  https://textlint.github.io/astexplorer/#/snippet/woXCqHBhcnNlcklEwrh0ZXh0bGludDptxINrZG93bi10by1hc3TCqMSFdHTEkGdzwoHEisSMxI7EkMSSxJRyxJbEmMSaxJzEnsSgw4DCqHbEhnNpb27EqMSqxI3Ej8SRxJPElcSXxJnEm8SdxJ90wqYxNC4wLjPCqGZpbGVuYW1lwrBzb3VyY2UudW5kZcWUbmVkwqRjb8Wmwr88ZGl2PgogIHsvKiA8IS0tIMW_PiAqL30KPC_FssW0} textlint-filter-rule-comments...
I think it is possible to improve the regexp here. https://github.com/textlint/textlint-filter-rule-comments/blob/755c4402cc4995cd7ca37764c138840811d53515/src/parse-comment.js#L3 ~~However, it is necessary to verify a little whether there is false-negative.~~ (I don't think many users will write...
Probabely, https://github.com/3w36zj6/textlint-filter-rule-comments/commit/45c4e5b37a36bb59f84e8fd73f8d790268cda698 reuse `g` ann it is something wrong. Maybe, we can create a RegeExp dynamically like this. ```js const regExp = new RegExp([ String.raw``, String.raw``, String.raw`{/\*\s*${enablingComment}*(?:.|\s)*?\*/}`, String.raw`{/\*\s*${disablingComment}*(?:.|\s)*?\*/}` ].join("|"), "g");...
Thanks to suggest! Is `window.foo` exposed into website(page context)? (Does Website can read `window.foo`? I want to prevent to read it from page context.
[Welcome to Manifest V3 - Chrome Developers](https://developer.chrome.com/docs/extensions/mv3/intro/)
I have the same issue. - OS X Yosemite v10.10.5 - Installed Node v4.0.0 with [nodebrew](https://github.com/hokaccha/nodebrew) - npm 2.14.2 Reproduce the issue on my project: ``` sh git clone https://github.com/azu/JavaScript-Plugin-Architecture...
@pmkary Thanks for PR! markdown-to-ast is a wrapper (and has a bit chaged for [textlint](https://github.com/textlint/textlint)) of [remark](https://github.com/wooorm/remark). It is beter to submit this PR to [remark-parse](https://github.com/wooorm/remark/tree/master/packages/remark-parse "remark-parse") I think. FYI:...
[String.prototype.matchAll()](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String/matchAll)はNode.js 12+ [RegExp Match Indices](https://github.com/tc39/proposal-regexp-match-indices)はNode.js 14+なので、サポートが切れるはず
``` // https://azu.github.io/morpheme-match/?text=リリース中にproductionビルドだとアプリが動作しないバグが見つかる [ { "surface_form": "リリース", "pos": "名詞", "pos_detail_1": "サ変接続", "pos_detail_2": "*", "pos_detail_3": "*", "conjugated_type": "*", "conjugated_form": "*", "basic_form": "リリース", "reading": "リリース", "pronunciation": "リリース" }, { "surface_form": "中", "pos":...
> しばらくの間、仕様変更の追従などのアップデートは止まっていましたが、作者が復帰したためメンテナンスが再開されています。