Okuto Oyama

Results 11 comments of Okuto Oyama

I'm interested in translating the following pages. Is that okay? `docs/making-your-site-accessible/`

基準とする指針としては薄いかもですが、 ソースコード品質として以下eslint-pluginのbaseルールは入れておいてもいいかなと思います。 https://www.npmjs.com/package/eslint-plugin-vue-a11y altチェックとかラベルが当たってるか、CIでチェックして通るのを前提とするみたいにしてもいいかなと思いました。

日本の有名とこだとサイバーエージェントさんのガイドライン - https://openameba.github.io/a11y-guidelines/ - https://openfresh.github.io/a11y-guidelines/ 三井住友銀行のは失敗パターンなども提示しているので分かりやすいです https://www.smbc.co.jp/accessibility/guidelines/

My name is @yamanoku, and I translated this into Japanese. The Japanese is left-justified, as it is easier to read the text starting from the left side rather than centering...

```bash error: HTMLの仕様において、要素「div」の内容は妥当ではありません (permitted-contents) 1: 2: •• 3: •••• ``` When I tried this with the [permitted-contents rule](https://markuplint.dev/rules/permitted-contents) set to `true`, the above pattern resulted in an error. ```html ```...

Thanks @YusukeHirao ! > It is issue https://github.com/markuplint/markuplint/issues/388 that I plan to resolve in the next version. I hope this issue will be resolved and incorporated in the next version.

## Whether there are particular elements else the element. As far as I am cognizant, elements other than `` include the following. - [``](https://vuejs.org/api/built-in-special-elements.html#component) - [``](https://vuejs.org/api/built-in-special-elements.html#slot) - [``](https://vuejs.org/api/built-in-components.html#transitiongroup) - [``](https://vuejs.org/api/built-in-components.html#keepalive)...

## What kind of element or document fragment does the Vue compiler convert the transition element to? `` element is not converted to a specific DOM, but is simply a...

## Whether it can just evaluate its content model as transparent content on the permitted-content rule. From [this comment](https://github.com/markuplint/markuplint/issues/482#issuecomment-1133585064), since it is not converted to a specific DOM element from...

実際の表記箇所は以下のようにマークアップされている ```html {{ sText }} ``` `components/index/CardsReference/PositiveNumberByDevelopedDate/Card.vue` props である `sText` は以下のように書かれているので ```js sText: `${formattedLastDay} ${this.$t('日別値')}(${this.$t( '現在判明している人数であり、後日修正される場合がある' )})`, ``` `formattedLastDay` を `` で分けられるように `sText` を渡したあとに分離するか props で渡す時に `formattedLastDay` を別で渡すようにするかなどの対応が必要そう