diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index abe8b762f..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -ko_fi: jaywcjlove -buy_me_a_coffee: jaywcjlove -custom: ["https://www.paypal.me/kennyiseeyou", "https://jaywcjlove.github.io/#/sponsor"] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index fc033c809..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,172 +0,0 @@ -name: CI -on: - push: - branches: - - main - -env: - BUILDX_VERSION: latest - BUILDKIT_IMAGE: wcjiang/html-tutorial - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - - - run: npm install - - run: npm run build - - - name: Generate Contributors Images - uses: jaywcjlove/github-action-contributors@main - with: - filter-author: (renovate\[bot\]|renovate-bot|dependabot\[bot\]) - output: dist/CONTRIBUTORS.svg - avatarSize: 42 - - - name: Create Tag - id: create_tag - uses: jaywcjlove/create-tag-action@main - with: - package-path: ./package.json - - - name: get tag version - id: tag_version - uses: jaywcjlove/changelog-generator@main - - - name: Deploy Website - uses: peaceiris/actions-gh-pages@v4 - with: - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }} - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist - - - name: Generate Changelog - id: changelog - uses: jaywcjlove/changelog-generator@main - with: - token: ${{ secrets.GITHUB_TOKEN }} - filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot) - filter: (^[\s]+?[R|r]elease)|(^[R|r]elease) - - - name: Create Release - uses: ncipollo/release-action@v1 - if: steps.create_tag.outputs.successful - with: - allowUpdates: true - token: ${{ secrets.GITHUB_TOKEN }} - name: ${{ steps.create_tag.outputs.version }} - tag: ${{ steps.create_tag.outputs.version }} - body: | - [![Buy me a coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee)](https://jaywcjlove.github.io/#/sponsor) [![GitHub Repo Stars](https://img.shields.io/github/stars/jaywcjlove/html-tutorial)]() [![Docker Image Version (latest by date)](https://img.shields.io/docker/v/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) [![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) [![Docker Pulls](https://img.shields.io/docker/pulls/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) - - Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/html-tutorial/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html - Comparing Changes: ${{ steps.changelog.outputs.compareurl }} - - ${{ steps.changelog.outputs.changelog }} - - ## Docker - - 通过 Docker 快速简单的部署文档网站。 - - ```bash - docker pull wcjiang/html-tutorial - ``` - - ```bash - docker run --name html-tutorial --rm -d -p 9665:80 wcjiang/html-tutorial:latest - # Or - docker run --name html-tutorial -itd -p 9665:80 wcjiang/html-tutorial:latest - ``` - - 在浏览器中访问以下 URL - - ```bash - http://localhost:9665/ - ``` - - # Create Docker Image - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USER }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push image:latest - uses: docker/build-push-action@v6 - with: - push: true - context: . - platforms: linux/amd64,linux/arm64 - tags: ${{ secrets.DOCKER_USER }}/html-tutorial:latest - - - name: Build and push image:tags - uses: docker/build-push-action@v6 - if: steps.create_tag.outputs.successful - with: - push: true - context: . - platforms: linux/amd64,linux/arm64 - tags: ${{ secrets.DOCKER_USER }}/html-tutorial:${{steps.changelog.outputs.version}} - - # - name: Build docs image - # if: steps.create_tag.outputs.successful - # run: docker image build -t html-tutorial . - - # - name: Tags & Push image - # if: steps.create_tag.outputs.successful - # run: | - # echo "outputs.tag - ${{ steps.changelog.outputs.version }}" - # docker tag html-tutorial ${{ secrets.DOCKER_USER }}/html-tutorial:${{steps.changelog.outputs.version}} - # docker tag html-tutorial ${{ secrets.DOCKER_USER }}/html-tutorial:latest - # docker push ${{ secrets.DOCKER_USER }}/html-tutorial:${{steps.changelog.outputs.version}} - # docker push ${{ secrets.DOCKER_USER }}/html-tutorial:latest - - # Create Docker Image in Github - - # - name: Login to the GitHub Container Registry - # uses: docker/login-action@v2 - # with: - # registry: ghcr.io - # username: ${{ github.actor }} - # password: ${{ secrets.GITHUB_TOKEN }} - - # - name: Build and push image:latest - # uses: docker/build-push-action@v3 - # with: - # push: true - # context: . - # platforms: linux/amd64,linux/arm64 - # tags: ghcr.io/jaywcjlove/html-tutorial:latest - - # - name: Build and push image:tags - # uses: docker/build-push-action@v3 - # if: steps.create_tag.outputs.successful - # with: - # push: true - # context: . - # platforms: linux/amd64,linux/arm64 - # tags: ghcr.io/jaywcjlove/html-tutorial:${{steps.changelog.outputs.version}} - - # - name: Login to GitHub registry - # run: echo ${{ github.token }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin - - # - name: Build docker image - # run: docker build -t ghcr.io/jaywcjlove/html-tutorial:latest . - - # - name: Publish to GitHub registry - # run: docker push ghcr.io/jaywcjlove/html-tutorial:latest - - # - name: Tag docker image (beta) and publish to GitHub registry - # if: steps.create_tag.outputs.successful - # run: | - # echo "version: v${{ steps.changelog.outputs.version }}" - # docker tag ghcr.io/jaywcjlove/html-tutorial:latest ghcr.io/jaywcjlove/html-tutorial:${{steps.changelog.outputs.version}} - # docker push ghcr.io/jaywcjlove/html-tutorial:${{steps.changelog.outputs.version}} \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9453f0291..000000000 --- a/.gitignore +++ /dev/null @@ -1,25 +0,0 @@ -dist -node_modules - -npm-debug.log* -lerna-debug.log -yarn-error.log -package-lock.json - -.DS_Store -.cache -.vscode -.idea - -*.bak -*.tem -*.temp -#.swp -*.*~ -~*.* - -# IDEA -*.iml -*.ipr -*.iws -.idea/ \ No newline at end of file diff --git a/.idoc/.filesStat.json b/.idoc/.filesStat.json deleted file mode 100644 index 5c51d4167..000000000 --- a/.idoc/.filesStat.json +++ /dev/null @@ -1,4640 +0,0 @@ -{ - "docs/events/onabort.md": { - "atime": "2022-05-10T06:09:32.967Z", - "mtime": "2022-05-10T06:09:30.284Z", - "ctime": "2022-05-10T06:09:30.284Z", - "birthtime": "2022-05-10T06:09:30.284Z" - }, - "docs/events/onbeforeprint.md": { - "atime": "2022-05-10T06:20:38.011Z", - "mtime": "2022-05-10T06:20:36.392Z", - "ctime": "2022-05-10T06:20:36.392Z", - "birthtime": "2022-04-24T07:13:45.901Z" - }, - "docs/events/onbeforeunload.md": { - "atime": "2022-05-10T05:53:57.777Z", - "mtime": "2022-05-10T05:53:55.664Z", - "ctime": "2022-05-10T05:53:55.664Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onblur.md": { - "atime": "2022-05-10T07:08:23.983Z", - "mtime": "2022-05-10T07:08:10.566Z", - "ctime": "2022-05-10T07:08:10.566Z", - "birthtime": "2022-04-24T07:14:27.050Z" - }, - "docs/events/oncontextmenu.md": { - "atime": "2022-05-10T13:31:57.612Z", - "mtime": "2022-05-10T13:31:52.948Z", - "ctime": "2022-05-10T13:31:52.948Z", - "birthtime": "2022-04-24T07:14:27.050Z" - }, - "docs/events/onchange.md": { - "atime": "2022-05-10T13:16:48.636Z", - "mtime": "2022-05-10T13:16:47.221Z", - "ctime": "2022-05-10T13:16:47.221Z", - "birthtime": "2022-04-24T07:14:27.050Z" - }, - "docs/events/onclick.md": { - "atime": "2022-05-10T15:02:47.142Z", - "mtime": "2022-05-10T15:01:43.385Z", - "ctime": "2022-05-10T15:01:43.385Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onafterprint.md": { - "atime": "2022-05-10T06:11:24.395Z", - "mtime": "2022-05-10T06:11:22.318Z", - "ctime": "2022-05-10T06:11:22.318Z", - "birthtime": "2022-04-24T07:13:45.901Z" - }, - "docs/events/oncut.md": { - "atime": "2022-05-10T17:17:16.607Z", - "mtime": "2022-05-10T17:11:25.389Z", - "ctime": "2022-05-10T17:11:25.389Z", - "birthtime": "2022-04-24T07:15:27.723Z" - }, - "docs/events/oncopy.md": { - "atime": "2022-05-10T17:01:50.093Z", - "mtime": "2022-05-10T17:01:20.351Z", - "ctime": "2022-05-10T17:01:20.351Z", - "birthtime": "2022-04-24T07:15:27.723Z" - }, - "docs/events/ondblclick.md": { - "atime": "2022-05-10T15:21:51.373Z", - "mtime": "2022-05-10T15:21:46.583Z", - "ctime": "2022-05-10T15:21:46.583Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/ondragend.md": { - "atime": "2022-05-12T17:54:23.360Z", - "mtime": "2022-05-12T17:54:21.910Z", - "ctime": "2022-05-12T17:54:21.910Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondragenter.md": { - "atime": "2022-05-12T17:49:36.479Z", - "mtime": "2022-05-12T17:49:34.079Z", - "ctime": "2022-05-12T17:49:34.079Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondragleave.md": { - "atime": "2022-05-12T17:58:07.029Z", - "mtime": "2022-05-12T17:56:11.569Z", - "ctime": "2022-05-12T17:56:11.569Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondrag.md": { - "atime": "2022-05-12T17:50:49.883Z", - "mtime": "2022-05-12T17:50:47.961Z", - "ctime": "2022-05-12T17:50:47.961Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondragover.md": { - "atime": "2022-05-12T18:09:54.138Z", - "mtime": "2022-05-12T18:09:41.589Z", - "ctime": "2022-05-12T18:09:41.589Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondrop.md": { - "atime": "2022-05-12T18:16:24.738Z", - "mtime": "2022-05-12T18:15:40.683Z", - "ctime": "2022-05-12T18:15:40.683Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/ondragstart.md": { - "atime": "2022-05-12T18:01:54.060Z", - "mtime": "2022-05-12T18:01:36.845Z", - "ctime": "2022-05-12T18:01:36.845Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/onhashchange.md": { - "atime": "2022-05-10T07:29:01.459Z", - "mtime": "2022-05-10T07:28:00.703Z", - "ctime": "2022-05-10T07:28:00.703Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onfocus.md": { - "atime": "2022-05-10T13:40:57.539Z", - "mtime": "2022-05-10T13:40:11.627Z", - "ctime": "2022-05-10T13:40:11.627Z", - "birthtime": "2022-04-24T07:14:27.050Z" - }, - "docs/events/oninput.md": { - "atime": "2022-05-10T16:10:19.465Z", - "mtime": "2022-05-10T16:10:17.501Z", - "ctime": "2022-05-10T16:10:17.501Z", - "birthtime": "2022-04-24T07:14:27.050Z" - }, - "docs/events/oninvalid.md": { - "atime": "2022-05-10T14:01:11.237Z", - "mtime": "2022-05-10T14:01:09.444Z", - "ctime": "2022-05-10T14:01:09.444Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onkeydown.md": { - "atime": "2022-05-10T16:11:09.679Z", - "mtime": "2022-05-10T16:11:07.377Z", - "ctime": "2022-05-10T16:11:07.377Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onkeypress.md": { - "atime": "2022-05-10T14:36:17.048Z", - "mtime": "2022-05-10T14:35:14.176Z", - "ctime": "2022-05-10T14:35:14.176Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onkeyup.md": { - "atime": "2022-05-10T17:02:28.998Z", - "mtime": "2022-05-10T17:02:27.783Z", - "ctime": "2022-05-10T17:02:27.783Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onload.md": { - "atime": "2022-05-10T08:07:38.208Z", - "mtime": "2022-05-10T07:43:38.408Z", - "ctime": "2022-05-10T07:43:38.408Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onmousedown.md": { - "atime": "2022-05-10T16:13:44.686Z", - "mtime": "2022-05-10T16:13:43.334Z", - "ctime": "2022-05-10T16:13:43.334Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onerror.md": { - "atime": "2022-05-10T07:09:30.822Z", - "mtime": "2022-05-10T07:08:49.549Z", - "ctime": "2022-05-10T07:08:49.549Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onmousemove.md": { - "atime": "2022-05-10T16:23:10.130Z", - "mtime": "2022-05-10T16:13:35.044Z", - "ctime": "2022-05-10T16:13:35.044Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onmouseout.md": { - "atime": "2022-05-10T16:19:31.554Z", - "mtime": "2022-05-10T16:17:51.604Z", - "ctime": "2022-05-10T16:17:51.604Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onmouseover.md": { - "atime": "2022-05-10T16:24:36.349Z", - "mtime": "2022-05-10T16:23:52.507Z", - "ctime": "2022-05-10T16:23:52.507Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onmouseup.md": { - "atime": "2022-05-10T16:28:37.056Z", - "mtime": "2022-05-10T16:28:34.008Z", - "ctime": "2022-05-10T16:28:34.008Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/events/onoffline.md": { - "atime": "2022-05-10T08:01:17.020Z", - "mtime": "2022-05-10T08:01:14.813Z", - "ctime": "2022-05-10T08:01:14.813Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/ononline.md": { - "atime": "2022-05-10T08:06:57.373Z", - "mtime": "2022-05-10T08:06:55.832Z", - "ctime": "2022-05-10T08:06:55.832Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onpageshow.md": { - "atime": "2022-05-10T08:09:32.093Z", - "mtime": "2022-05-10T08:08:21.557Z", - "ctime": "2022-05-10T08:08:21.557Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onpaste.md": { - "atime": "2022-05-10T17:20:20.162Z", - "mtime": "2022-05-10T17:19:38.708Z", - "ctime": "2022-05-10T17:19:38.708Z", - "birthtime": "2022-04-24T07:15:27.723Z" - }, - "docs/events/onreset.md": { - "atime": "2022-05-10T14:05:57.664Z", - "mtime": "2022-05-10T14:04:36.925Z", - "ctime": "2022-05-10T14:04:36.925Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onresize.md": { - "atime": "2022-05-10T08:17:32.077Z", - "mtime": "2022-05-10T08:16:32.970Z", - "ctime": "2022-05-10T08:16:32.970Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onscroll.md": { - "atime": "2022-05-12T18:28:54.210Z", - "mtime": "2022-05-12T18:27:40.330Z", - "ctime": "2022-05-12T18:27:40.330Z", - "birthtime": "2022-04-24T07:15:27.722Z" - }, - "docs/events/onsearch.md": { - "atime": "2022-05-10T14:23:57.628Z", - "mtime": "2022-05-10T14:23:11.359Z", - "ctime": "2022-05-10T14:23:11.359Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onseeked.md": { - "atime": "2022-05-03T22:38:14.226Z", - "mtime": "2022-05-03T22:38:12.938Z", - "ctime": "2022-05-03T22:38:12.938Z", - "birthtime": "2022-05-03T22:37:40.047Z" - }, - "docs/events/onselect.md": { - "atime": "2022-05-10T14:11:56.617Z", - "mtime": "2022-05-10T14:11:17.871Z", - "ctime": "2022-05-10T14:11:17.871Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onsubmit.md": { - "atime": "2022-05-10T14:17:27.576Z", - "mtime": "2022-05-10T14:16:11.313Z", - "ctime": "2022-05-10T14:16:11.313Z", - "birthtime": "2022-04-24T07:14:27.051Z" - }, - "docs/events/onsuspend.md": { - "atime": "2022-05-03T22:36:47.647Z", - "mtime": "2022-05-03T22:36:46.403Z", - "ctime": "2022-05-03T22:36:46.403Z", - "birthtime": "2022-05-03T22:36:06.287Z" - }, - "docs/events/ontoggle.md": { - "atime": "2022-05-10T16:52:17.122Z", - "mtime": "2022-05-10T16:52:15.811Z", - "ctime": "2022-05-10T16:52:15.811Z", - "birthtime": "2022-04-24T07:15:27.723Z" - }, - "docs/events/onstalled.md": { - "atime": "2022-05-03T22:36:37.961Z", - "mtime": "2022-05-03T22:36:35.803Z", - "ctime": "2022-05-03T22:36:35.803Z", - "birthtime": "2022-05-03T22:34:55.003Z" - }, - "docs/events/onunload.md": { - "atime": "2022-05-10T08:24:01.313Z", - "mtime": "2022-05-10T08:23:27.337Z", - "ctime": "2022-05-10T08:23:27.337Z", - "birthtime": "2022-04-24T07:13:45.902Z" - }, - "docs/events/onwheel.md": { - "atime": "2022-05-10T16:36:06.313Z", - "mtime": "2022-05-10T16:35:14.068Z", - "ctime": "2022-05-10T16:35:14.068Z", - "birthtime": "2022-04-24T07:14:54.989Z" - }, - "docs/tutorial/accessibility.md": { - "atime": "2022-04-29T15:27:17.454Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/README.md": { - "atime": "2022-04-29T10:29:16.278Z", - "mtime": "2022-04-29T10:29:14.941Z", - "ctime": "2022-04-29T10:29:14.941Z", - "birthtime": "2022-04-29T10:28:47.561Z" - }, - "docs/tutorial/attributes.md": { - "atime": "2022-05-14T17:53:49.982Z", - "mtime": "2022-05-14T17:53:49.939Z", - "ctime": "2022-05-14T17:53:49.939Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/basic.md": { - "atime": "2022-05-14T17:53:54.132Z", - "mtime": "2022-05-14T17:53:54.052Z", - "ctime": "2022-05-14T17:53:54.052Z", - "birthtime": "2022-04-29T10:35:28.933Z" - }, - "docs/tutorial/audio.md": { - "atime": "2022-04-29T15:27:17.444Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T11:09:45.789Z" - }, - "docs/tutorial/blocks.md": { - "atime": "2022-04-29T15:27:17.559Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/charset.md": { - "atime": "2022-04-29T15:27:17.616Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/canvas.md": { - "atime": "2022-05-14T17:53:58.296Z", - "mtime": "2022-05-14T17:53:58.273Z", - "ctime": "2022-05-14T17:53:58.273Z", - "birthtime": "2022-04-29T11:09:13.437Z" - }, - "docs/tutorial/computercode_elements.md": { - "atime": "2022-04-29T15:27:17.262Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/colors.md": { - "atime": "2022-04-29T15:27:17.487Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/comments.md": { - "atime": "2022-04-29T15:27:17.476Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/classes.md": { - "atime": "2022-04-29T15:27:17.548Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/css.md": { - "atime": "2022-04-29T15:27:17.590Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/draganddrop.md": { - "atime": "2022-04-29T15:27:17.439Z", - "mtime": "2022-04-29T15:26:51.869Z", - "ctime": "2022-04-29T15:26:51.869Z", - "birthtime": "2022-04-29T11:10:03.100Z" - }, - "docs/tutorial/editors.md": { - "atime": "2022-04-29T15:17:05.070Z", - "mtime": "2022-04-29T15:17:03.711Z", - "ctime": "2022-04-29T15:17:03.711Z", - "birthtime": "2022-04-29T10:35:28.933Z" - }, - "docs/tutorial/emojis.md": { - "atime": "2022-04-29T15:27:17.195Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/exam.md": { - "atime": "2022-04-29T15:27:17.389Z", - "mtime": "2022-04-29T15:26:50.376Z", - "ctime": "2022-04-29T15:26:50.376Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/entities.md": { - "atime": "2022-04-29T15:27:17.445Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/examples.md": { - "atime": "2022-04-29T15:27:14.819Z", - "mtime": "2022-04-29T15:26:47.811Z", - "ctime": "2022-04-29T15:26:47.811Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/favicon.md": { - "atime": "2022-04-29T15:27:17.207Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/exercises.md": { - "atime": "2022-04-29T15:27:17.576Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/filepaths.md": { - "atime": "2022-04-29T15:27:17.469Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/form_attributes.md": { - "atime": "2022-04-29T15:27:17.419Z", - "mtime": "2022-04-29T15:26:51.869Z", - "ctime": "2022-04-29T15:26:51.869Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/form_attributes_form.md": { - "atime": "2022-04-29T15:27:17.312Z", - "mtime": "2022-04-29T15:26:49.775Z", - "ctime": "2022-04-29T15:26:49.775Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/elements.md": { - "atime": "2022-05-14T17:54:15.634Z", - "mtime": "2022-05-14T17:54:15.599Z", - "ctime": "2022-05-14T17:54:15.599Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/form_elements.md": { - "atime": "2022-04-29T15:27:17.549Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/form_input_types.md": { - "atime": "2022-04-29T15:27:17.173Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/formatting.md": { - "atime": "2022-04-29T15:27:15.679Z", - "mtime": "2022-04-29T15:26:48.174Z", - "ctime": "2022-04-29T15:26:48.174Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/forms.md": { - "atime": "2022-04-29T15:27:15.656Z", - "mtime": "2022-04-29T15:26:48.136Z", - "ctime": "2022-04-29T15:26:48.136Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/geolocation.md": { - "atime": "2022-04-29T15:27:15.704Z", - "mtime": "2022-04-29T15:26:48.174Z", - "ctime": "2022-04-29T15:26:48.174Z", - "birthtime": "2022-04-29T11:10:03.100Z" - }, - "docs/tutorial/head.md": { - "atime": "2022-04-29T15:27:17.584Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/headings.md": { - "atime": "2022-05-14T17:54:20.565Z", - "mtime": "2022-05-14T17:54:20.527Z", - "ctime": "2022-05-14T17:54:20.527Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/id.md": { - "atime": "2022-04-29T15:27:17.414Z", - "mtime": "2022-04-29T15:26:51.862Z", - "ctime": "2022-04-29T15:26:51.862Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/iframe.md": { - "atime": "2022-04-29T15:27:17.259Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/images.md": { - "atime": "2022-04-29T15:27:17.591Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/intro.md": { - "atime": "2022-05-14T17:54:53.206Z", - "mtime": "2022-05-14T17:54:53.185Z", - "ctime": "2022-05-14T17:54:53.185Z", - "birthtime": "2022-04-29T10:35:28.933Z" - }, - "docs/tutorial/layout.md": { - "atime": "2022-04-30T04:25:27.806Z", - "mtime": "2022-04-30T04:24:45.489Z", - "ctime": "2022-04-30T04:24:45.489Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/lists.md": { - "atime": "2022-04-29T15:27:14.571Z", - "mtime": "2022-04-29T15:26:47.811Z", - "ctime": "2022-04-29T15:26:47.811Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/links.md": { - "atime": "2022-04-29T15:27:17.402Z", - "mtime": "2022-04-29T15:26:49.813Z", - "ctime": "2022-04-29T15:26:49.813Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/media.md": { - "atime": "2022-04-29T15:27:17.377Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/object.md": { - "atime": "2022-04-29T15:27:17.406Z", - "mtime": "2022-04-29T15:26:51.848Z", - "ctime": "2022-04-29T15:26:51.848Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/paragraphs.md": { - "atime": "2022-04-29T15:27:17.221Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/quiz.md": { - "atime": "2022-04-29T15:27:17.334Z", - "mtime": "2022-04-29T15:26:49.813Z", - "ctime": "2022-04-29T15:26:49.813Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/quotation_elements.md": { - "atime": "2022-04-29T15:27:15.693Z", - "mtime": "2022-04-29T15:26:48.174Z", - "ctime": "2022-04-29T15:26:48.174Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/responsive.md": { - "atime": "2022-05-14T17:55:28.888Z", - "mtime": "2022-05-14T17:55:29.082Z", - "ctime": "2022-05-14T17:55:29.082Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/scripts.md": { - "atime": "2022-04-29T15:27:17.495Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/semantic_elements.md": { - "atime": "2022-04-29T15:27:17.396Z", - "mtime": "2022-04-29T15:26:50.376Z", - "ctime": "2022-04-29T15:26:50.376Z", - "birthtime": "2022-04-29T10:39:56.213Z" - }, - "docs/tutorial/serversentevents.md": { - "atime": "2022-04-29T15:27:17.238Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T11:10:03.101Z" - }, - "docs/tutorial/styles.md": { - "atime": "2022-04-29T15:27:17.650Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/summary.md": { - "atime": "2022-04-29T15:27:17.601Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.936Z" - }, - "docs/tutorial/svg.md": { - "atime": "2022-04-30T07:31:53.106Z", - "mtime": "2022-04-30T07:31:50.778Z", - "ctime": "2022-04-30T07:31:50.778Z", - "birthtime": "2022-04-29T11:09:13.437Z" - }, - "docs/tutorial/symbols.md": { - "atime": "2022-04-29T15:27:17.514Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/syntax.md": { - "atime": "2022-04-29T15:27:17.560Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:39:56.213Z" - }, - "docs/tutorial/tables.md": { - "atime": "2022-04-29T15:27:17.538Z", - "mtime": "2022-04-29T15:26:51.870Z", - "ctime": "2022-04-29T15:26:51.870Z", - "birthtime": "2022-04-29T10:35:28.934Z" - }, - "docs/tutorial/urlencode.md": { - "atime": "2022-04-29T15:27:15.755Z", - "mtime": "2022-04-29T15:26:48.194Z", - "ctime": "2022-04-29T15:26:48.194Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/video.md": { - "atime": "2022-04-29T15:27:17.686Z", - "mtime": "2022-04-29T15:26:51.897Z", - "ctime": "2022-04-29T15:26:51.897Z", - "birthtime": "2022-04-29T11:09:45.789Z" - }, - "docs/tutorial/webstorage.md": { - "atime": "2022-04-29T15:27:17.443Z", - "mtime": "2022-04-29T15:26:51.869Z", - "ctime": "2022-04-29T15:26:51.869Z", - "birthtime": "2022-04-29T11:10:03.100Z" - }, - "docs/tutorial/webworkers.md": { - "atime": "2022-04-29T15:27:17.169Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-29T11:10:03.101Z" - }, - "docs/tutorial/forms_attributes.md": { - "atime": "2022-04-29T15:27:17.382Z", - "mtime": "2022-04-29T15:26:50.376Z", - "ctime": "2022-04-29T15:26:50.376Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/xhtml.md": { - "atime": "2022-04-29T15:27:17.379Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tutorial/youtube.md": { - "atime": "2022-04-29T15:27:17.425Z", - "mtime": "2022-04-29T15:26:51.862Z", - "ctime": "2022-04-29T15:26:51.862Z", - "birthtime": "2022-04-29T10:35:28.935Z" - }, - "docs/tags/a.md": { - "atime": "2022-05-05T14:54:02.542Z", - "mtime": "2022-05-05T14:54:01.219Z", - "ctime": "2022-05-05T14:54:01.219Z", - "birthtime": "2022-04-24T07:43:17.332Z" - }, - "docs/tags/a_download.md": { - "atime": "2022-05-05T15:08:08.384Z", - "mtime": "2022-05-05T15:08:07.072Z", - "ctime": "2022-05-05T15:08:07.072Z", - "birthtime": "2022-04-24T13:27:00.172Z" - }, - "docs/tags/a_href.md": { - "atime": "2022-05-14T17:44:46.008Z", - "mtime": "2022-05-14T17:44:45.975Z", - "ctime": "2022-05-14T17:44:45.975Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/a_hreflang.md": { - "atime": "2022-05-07T15:44:30.046Z", - "mtime": "2022-05-07T15:44:28.372Z", - "ctime": "2022-05-07T15:44:28.372Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/README.md": { - "atime": "2022-05-14T17:52:04.902Z", - "mtime": "2022-05-14T17:52:05.351Z", - "ctime": "2022-05-14T17:52:05.351Z", - "birthtime": "2022-04-24T07:33:10.568Z" - }, - "docs/tags/a_media.md": { - "atime": "2022-05-05T14:57:45.246Z", - "mtime": "2022-05-05T14:57:43.275Z", - "ctime": "2022-05-05T14:57:43.275Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/a_referrepolicy.md": { - "atime": "2022-05-05T14:59:33.940Z", - "mtime": "2022-05-05T14:59:15.389Z", - "ctime": "2022-05-05T14:59:15.389Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/a_ping.md": { - "atime": "2022-05-05T14:54:33.966Z", - "mtime": "2022-05-05T14:54:24.031Z", - "ctime": "2022-05-05T14:54:24.031Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/a_type.md": { - "atime": "2022-05-05T15:13:04.061Z", - "mtime": "2022-05-05T15:12:40.954Z", - "ctime": "2022-05-05T15:12:40.954Z", - "birthtime": "2022-04-24T13:27:00.174Z" - }, - "docs/tags/a_target.md": { - "atime": "2022-05-05T15:11:57.386Z", - "mtime": "2022-05-05T15:11:55.346Z", - "ctime": "2022-05-05T15:11:55.346Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/abbr.md": { - "atime": "2022-05-14T17:44:55.727Z", - "mtime": "2022-05-14T17:44:55.697Z", - "ctime": "2022-05-14T17:44:55.697Z", - "birthtime": "2022-04-24T07:43:17.332Z" - }, - "docs/tags/a_rel.md": { - "atime": "2022-05-07T15:44:05.732Z", - "mtime": "2022-05-07T15:44:05.368Z", - "ctime": "2022-05-07T15:44:05.368Z", - "birthtime": "2022-04-24T13:27:00.173Z" - }, - "docs/tags/acronym.md": { - "atime": "2022-05-04T15:48:45.596Z", - "mtime": "2022-05-04T15:48:43.300Z", - "ctime": "2022-05-04T15:48:43.300Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/address.md": { - "atime": "2022-05-14T17:45:00.902Z", - "mtime": "2022-05-14T17:45:00.870Z", - "ctime": "2022-05-14T17:45:00.870Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/applet.md": { - "atime": "2022-05-03T16:22:16.449Z", - "mtime": "2022-05-03T16:22:14.293Z", - "ctime": "2022-05-03T16:22:14.293Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/area_coords.md": { - "atime": "2022-05-07T15:43:27.987Z", - "mtime": "2022-05-07T15:43:26.355Z", - "ctime": "2022-05-07T15:43:26.355Z", - "birthtime": "2022-04-24T13:24:41.739Z" - }, - "docs/tags/area_download.md": { - "atime": "2022-05-07T15:43:22.264Z", - "mtime": "2022-05-07T15:43:20.954Z", - "ctime": "2022-05-07T15:43:20.954Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_alt.md": { - "atime": "2022-05-07T15:43:36.437Z", - "mtime": "2022-05-07T15:43:35.070Z", - "ctime": "2022-05-07T15:43:35.070Z", - "birthtime": "2022-04-24T13:24:41.739Z" - }, - "docs/tags/area_href.md": { - "atime": "2022-05-07T15:43:14.215Z", - "mtime": "2022-05-07T15:43:12.825Z", - "ctime": "2022-05-07T15:43:12.825Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area.md": { - "atime": "2022-05-08T05:05:37.561Z", - "mtime": "2022-05-08T05:05:35.887Z", - "ctime": "2022-05-08T05:05:35.887Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/area_hreflang.md": { - "atime": "2022-05-07T15:54:12.764Z", - "mtime": "2022-05-07T15:54:10.756Z", - "ctime": "2022-05-07T15:54:10.756Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_media.md": { - "atime": "2022-05-07T15:45:03.280Z", - "mtime": "2022-05-07T15:45:01.901Z", - "ctime": "2022-05-07T15:45:01.901Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_referrepolicy.md": { - "atime": "2022-05-07T15:51:44.620Z", - "mtime": "2022-05-07T15:50:42.306Z", - "ctime": "2022-05-07T15:50:42.306Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_type.md": { - "atime": "2022-05-07T16:14:39.251Z", - "mtime": "2022-05-07T16:14:37.642Z", - "ctime": "2022-05-07T16:14:37.642Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_target.md": { - "atime": "2022-05-07T16:14:46.915Z", - "mtime": "2022-05-07T16:14:45.659Z", - "ctime": "2022-05-07T16:14:45.659Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/area_shape.md": { - "atime": "2022-05-07T16:14:56.825Z", - "mtime": "2022-05-07T16:14:55.556Z", - "ctime": "2022-05-07T16:14:55.556Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/article.md": { - "atime": "2022-05-08T05:05:27.255Z", - "mtime": "2022-05-08T05:05:25.798Z", - "ctime": "2022-05-08T05:05:25.798Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/aside.md": { - "atime": "2022-05-08T05:05:21.050Z", - "mtime": "2022-05-08T05:05:19.798Z", - "ctime": "2022-05-08T05:05:19.798Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/audio.md": { - "atime": "2022-05-10T02:04:07.872Z", - "mtime": "2022-05-10T02:03:51.231Z", - "ctime": "2022-05-10T02:03:51.231Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/audio_autoplay.md": { - "atime": "2022-05-10T02:04:14.972Z", - "mtime": "2022-05-10T02:04:13.531Z", - "ctime": "2022-05-10T02:04:13.531Z", - "birthtime": "2022-04-24T13:35:03.508Z" - }, - "docs/tags/audio_controls.md": { - "atime": "2022-05-10T02:06:21.041Z", - "mtime": "2022-05-10T02:06:19.643Z", - "ctime": "2022-05-10T02:06:19.643Z", - "birthtime": "2022-04-24T13:35:03.508Z" - }, - "docs/tags/audio_loop.md": { - "atime": "2022-05-10T02:04:39.951Z", - "mtime": "2022-05-10T02:04:38.339Z", - "ctime": "2022-05-10T02:04:38.339Z", - "birthtime": "2022-04-24T13:35:03.508Z" - }, - "docs/tags/area_rel.md": { - "atime": "2022-05-07T15:56:13.956Z", - "mtime": "2022-05-07T15:55:17.004Z", - "ctime": "2022-05-07T15:55:17.004Z", - "birthtime": "2022-04-24T13:24:41.740Z" - }, - "docs/tags/audio_muted.md": { - "atime": "2022-05-10T02:04:44.263Z", - "mtime": "2022-05-10T02:04:42.997Z", - "ctime": "2022-05-10T02:04:42.997Z", - "birthtime": "2022-04-24T13:35:03.509Z" - }, - "docs/tags/audio_preload.md": { - "atime": "2022-05-10T02:04:48.471Z", - "mtime": "2022-05-10T02:04:47.285Z", - "ctime": "2022-05-10T02:04:47.285Z", - "birthtime": "2022-04-24T13:35:03.509Z" - }, - "docs/tags/audio_src.md": { - "atime": "2022-05-10T02:05:15.113Z", - "mtime": "2022-05-10T02:05:13.721Z", - "ctime": "2022-05-10T02:05:13.721Z", - "birthtime": "2022-04-24T13:35:03.509Z" - }, - "docs/tags/b.md": { - "atime": "2022-05-14T17:45:32.052Z", - "mtime": "2022-05-14T17:45:32.027Z", - "ctime": "2022-05-14T17:45:32.027Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/base.md": { - "atime": "2022-05-14T17:45:45.896Z", - "mtime": "2022-05-14T17:45:45.864Z", - "ctime": "2022-05-14T17:45:45.864Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/base_href.md": { - "atime": "2022-05-08T03:49:07.902Z", - "mtime": "2022-05-08T03:46:45.837Z", - "ctime": "2022-05-08T03:46:45.837Z", - "birthtime": "2022-04-24T13:38:25.606Z" - }, - "docs/tags/base_target.md": { - "atime": "2022-05-07T16:20:14.533Z", - "mtime": "2022-05-07T16:19:20.788Z", - "ctime": "2022-05-07T16:19:20.788Z", - "birthtime": "2022-04-24T13:38:25.606Z" - }, - "docs/tags/basefont.md": { - "atime": "2022-05-08T03:16:44.670Z", - "mtime": "2022-05-08T03:16:43.045Z", - "ctime": "2022-05-08T03:16:43.045Z", - "birthtime": "2022-04-24T07:43:17.333Z" - }, - "docs/tags/bdi.md": { - "atime": "2022-05-14T17:45:50.545Z", - "mtime": "2022-05-14T17:45:50.462Z", - "ctime": "2022-05-14T17:45:50.462Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/bdo.md": { - "atime": "2022-05-08T05:04:25.093Z", - "mtime": "2022-05-08T05:04:23.719Z", - "ctime": "2022-05-08T05:04:23.719Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/bdo_dir.md": { - "atime": "2022-05-08T05:04:31.335Z", - "mtime": "2022-05-08T05:04:29.652Z", - "ctime": "2022-05-08T05:04:29.652Z", - "birthtime": "2022-04-24T13:43:50.332Z" - }, - "docs/tags/big.md": { - "atime": "2022-04-30T12:04:45.296Z", - "mtime": "2022-04-30T12:04:44.180Z", - "ctime": "2022-04-30T12:04:44.180Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/blockquote.md": { - "atime": "2022-05-08T05:04:51.291Z", - "mtime": "2022-05-08T05:04:05.470Z", - "ctime": "2022-05-08T05:04:05.470Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/blockquote_cite.md": { - "atime": "2022-05-08T03:23:28.731Z", - "mtime": "2022-05-08T03:22:30.262Z", - "ctime": "2022-05-08T03:22:30.262Z", - "birthtime": "2022-04-24T13:44:45.790Z" - }, - "docs/tags/br.md": { - "atime": "2022-05-08T05:06:13.325Z", - "mtime": "2022-05-08T05:06:11.925Z", - "ctime": "2022-05-08T05:06:11.925Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/button.md": { - "atime": "2022-05-14T17:45:58.124Z", - "mtime": "2022-05-14T17:45:58.031Z", - "ctime": "2022-05-14T17:45:58.031Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/body.md": { - "atime": "2022-05-08T05:03:44.053Z", - "mtime": "2022-05-08T05:03:42.603Z", - "ctime": "2022-05-08T05:03:42.603Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/button_autofocus.md": { - "atime": "2022-05-08T03:26:41.772Z", - "mtime": "2022-05-08T03:26:04.201Z", - "ctime": "2022-05-08T03:26:04.201Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_form.md": { - "atime": "2022-05-08T03:56:07.711Z", - "mtime": "2022-05-08T03:56:06.069Z", - "ctime": "2022-05-08T03:56:06.069Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_formaction.md": { - "atime": "2022-05-08T03:55:16.598Z", - "mtime": "2022-05-08T03:54:14.128Z", - "ctime": "2022-05-08T03:54:14.128Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_disabled.md": { - "atime": "2022-05-08T03:44:33.491Z", - "mtime": "2022-05-08T03:44:32.062Z", - "ctime": "2022-05-08T03:44:32.062Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_formmethod.md": { - "atime": "2022-05-08T04:06:46.660Z", - "mtime": "2022-05-08T04:05:38.259Z", - "ctime": "2022-05-08T04:05:38.259Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_formnovalidate.md": { - "atime": "2022-05-08T04:13:51.922Z", - "mtime": "2022-05-08T04:13:50.769Z", - "ctime": "2022-05-08T04:13:50.769Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/button_formtarget.md": { - "atime": "2022-05-08T04:16:51.165Z", - "mtime": "2022-05-08T04:16:49.106Z", - "ctime": "2022-05-08T04:16:49.106Z", - "birthtime": "2022-04-24T13:52:53.378Z" - }, - "docs/tags/button_name.md": { - "atime": "2022-05-08T04:20:16.704Z", - "mtime": "2022-05-08T04:19:56.071Z", - "ctime": "2022-05-08T04:19:56.071Z", - "birthtime": "2022-04-24T13:52:53.378Z" - }, - "docs/tags/button_type.md": { - "atime": "2022-05-08T04:24:46.015Z", - "mtime": "2022-05-08T04:24:00.616Z", - "ctime": "2022-05-08T04:24:00.616Z", - "birthtime": "2022-04-24T13:52:53.378Z" - }, - "docs/tags/canvas.md": { - "atime": "2022-05-08T05:03:11.709Z", - "mtime": "2022-05-08T05:03:10.083Z", - "ctime": "2022-05-08T05:03:10.083Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/button_value.md": { - "atime": "2022-05-08T04:27:16.643Z", - "mtime": "2022-05-08T04:26:55.308Z", - "ctime": "2022-05-08T04:26:55.308Z", - "birthtime": "2022-04-24T13:52:53.378Z" - }, - "docs/tags/canvas_addcolorstop.md": { - "atime": "2022-05-08T14:33:46.652Z", - "mtime": "2022-05-08T14:32:36.339Z", - "ctime": "2022-05-08T14:32:36.339Z", - "birthtime": "2022-04-24T14:03:18.740Z" - }, - "docs/tags/canvas_arc.md": { - "atime": "2022-05-08T16:50:45.899Z", - "mtime": "2022-05-08T16:50:20.168Z", - "ctime": "2022-05-08T16:50:20.168Z", - "birthtime": "2022-04-24T14:14:21.784Z" - }, - "docs/tags/canvas_arcto.md": { - "atime": "2022-05-08T16:57:45.942Z", - "mtime": "2022-05-08T16:56:53.593Z", - "ctime": "2022-05-08T16:56:53.593Z", - "birthtime": "2022-04-24T14:14:21.784Z" - }, - "docs/tags/button_formenctype.md": { - "atime": "2022-05-08T04:01:45.950Z", - "mtime": "2022-05-08T04:00:53.052Z", - "ctime": "2022-05-08T04:00:53.052Z", - "birthtime": "2022-04-24T13:52:53.377Z" - }, - "docs/tags/canvas_beginpath.md": { - "atime": "2022-05-08T15:48:46.725Z", - "mtime": "2022-05-08T15:47:35.060Z", - "ctime": "2022-05-08T15:47:35.060Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_beziercurveto.md": { - "atime": "2022-05-08T16:53:33.957Z", - "mtime": "2022-05-08T16:53:32.705Z", - "ctime": "2022-05-08T16:53:32.705Z", - "birthtime": "2022-04-24T14:14:21.784Z" - }, - "docs/tags/canvas_clearrect.md": { - "atime": "2022-05-08T15:34:16.024Z", - "mtime": "2022-05-08T15:32:50.596Z", - "ctime": "2022-05-08T15:32:50.596Z", - "birthtime": "2022-04-24T14:08:52.120Z" - }, - "docs/tags/canvas_clip.md": { - "atime": "2022-05-08T16:14:47.345Z", - "mtime": "2022-05-08T16:14:45.625Z", - "ctime": "2022-05-08T16:14:45.625Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_closepath.md": { - "atime": "2022-05-08T15:59:16.046Z", - "mtime": "2022-05-08T15:59:04.432Z", - "ctime": "2022-05-08T15:59:04.432Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_createimagedata.md": { - "atime": "2022-05-09T02:32:12.205Z", - "mtime": "2022-05-09T02:32:10.573Z", - "ctime": "2022-05-09T02:32:10.573Z", - "birthtime": "2022-04-24T14:28:22.815Z" - }, - "docs/tags/canvas_createlineargradient.md": { - "atime": "2022-05-08T14:22:30.127Z", - "mtime": "2022-05-08T14:22:28.904Z", - "ctime": "2022-05-08T14:22:28.904Z", - "birthtime": "2022-04-24T14:03:18.740Z" - }, - "docs/tags/canvas_createpattern.md": { - "atime": "2022-05-08T16:03:08.356Z", - "mtime": "2022-05-08T16:02:51.779Z", - "ctime": "2022-05-08T16:02:51.779Z", - "birthtime": "2022-04-24T14:03:18.740Z" - }, - "docs/tags/canvas_drawimage.md": { - "atime": "2022-05-08T19:08:12.228Z", - "mtime": "2022-05-08T19:07:50.915Z", - "ctime": "2022-05-08T19:07:50.915Z", - "birthtime": "2022-04-24T14:24:08.727Z" - }, - "docs/tags/canvas_createradialgradient.md": { - "atime": "2022-05-08T14:40:40.784Z", - "mtime": "2022-05-08T14:24:04.454Z", - "ctime": "2022-05-08T14:24:04.454Z", - "birthtime": "2022-04-24T14:03:18.740Z" - }, - "docs/tags/canvas_fillstyle.md": { - "atime": "2022-05-08T11:38:37.671Z", - "mtime": "2022-05-08T11:38:37.024Z", - "ctime": "2022-05-08T11:38:37.024Z", - "birthtime": "2022-05-08T11:23:22.296Z" - }, - "docs/tags/canvas_fillrect.md": { - "atime": "2022-05-09T02:06:09.038Z", - "mtime": "2022-05-09T02:06:08.233Z", - "ctime": "2022-05-09T02:06:08.233Z", - "birthtime": "2022-04-24T14:08:52.120Z" - }, - "docs/tags/canvas_filltext.md": { - "atime": "2022-05-08T18:11:45.943Z", - "mtime": "2022-05-08T18:10:53.109Z", - "ctime": "2022-05-08T18:10:53.109Z", - "birthtime": "2022-04-24T14:22:36.774Z" - }, - "docs/tags/canvas_fill.md": { - "atime": "2022-05-08T15:37:46.053Z", - "mtime": "2022-05-08T15:36:57.616Z", - "ctime": "2022-05-08T15:36:57.616Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_font.md": { - "atime": "2022-05-14T17:46:09.931Z", - "mtime": "2022-05-14T17:46:09.899Z", - "ctime": "2022-05-14T17:46:09.899Z", - "birthtime": "2022-04-24T14:20:25.168Z" - }, - "docs/tags/canvas_globalalpha.md": { - "atime": "2022-05-09T03:56:18.716Z", - "mtime": "2022-05-09T03:55:45.474Z", - "ctime": "2022-05-09T03:55:45.474Z", - "birthtime": "2022-04-24T14:30:17.691Z" - }, - "docs/tags/canvas_getimagedata.md": { - "atime": "2022-05-09T03:02:37.185Z", - "mtime": "2022-05-09T03:01:27.500Z", - "ctime": "2022-05-09T03:01:27.500Z", - "birthtime": "2022-04-24T14:28:22.815Z" - }, - "docs/tags/canvas_imagedata_data.md": { - "atime": "2022-05-09T02:22:41.036Z", - "mtime": "2022-05-09T02:22:40.242Z", - "ctime": "2022-05-09T02:22:40.242Z", - "birthtime": "2022-04-24T14:26:47.679Z" - }, - "docs/tags/canvas_imagedata_height.md": { - "atime": "2022-05-09T02:11:37.158Z", - "mtime": "2022-05-09T02:10:39.990Z", - "ctime": "2022-05-09T02:10:39.990Z", - "birthtime": "2022-04-24T14:26:47.678Z" - }, - "docs/tags/canvas_height.md": { - "atime": "2022-05-08T07:29:08.827Z", - "mtime": "2022-05-08T07:29:08.464Z", - "ctime": "2022-05-08T07:29:08.464Z", - "birthtime": "2022-04-25T13:24:05.667Z" - }, - "docs/tags/canvas_globalcompositeoperation.md": { - "atime": "2022-05-09T04:13:24.701Z", - "mtime": "2022-05-09T04:13:24.294Z", - "ctime": "2022-05-09T04:13:24.294Z", - "birthtime": "2022-04-24T14:30:17.691Z" - }, - "docs/tags/canvas_imagedata_width.md": { - "atime": "2022-05-09T02:07:57.722Z", - "mtime": "2022-05-09T02:07:56.866Z", - "ctime": "2022-05-09T02:07:56.866Z", - "birthtime": "2022-04-24T14:26:47.678Z" - }, - "docs/tags/canvas_linecap.md": { - "atime": "2022-05-08T14:42:16.007Z", - "mtime": "2022-05-08T14:41:22.239Z", - "ctime": "2022-05-08T14:41:22.239Z", - "birthtime": "2022-04-24T14:08:25.686Z" - }, - "docs/tags/canvas_ispointinpath.md": { - "atime": "2022-05-08T17:01:56.752Z", - "mtime": "2022-05-08T17:01:55.941Z", - "ctime": "2022-05-08T17:01:55.941Z", - "birthtime": "2022-04-24T14:14:21.784Z" - }, - "docs/tags/canvas_linejoin.md": { - "atime": "2022-05-08T14:48:16.587Z", - "mtime": "2022-05-08T14:48:08.387Z", - "ctime": "2022-05-08T14:48:08.387Z", - "birthtime": "2022-04-24T14:08:25.686Z" - }, - "docs/tags/canvas_linewidth.md": { - "atime": "2022-05-08T14:52:15.936Z", - "mtime": "2022-05-08T14:51:14.713Z", - "ctime": "2022-05-08T14:51:14.713Z", - "birthtime": "2022-04-24T14:08:25.686Z" - }, - "docs/tags/canvas_lineto.md": { - "atime": "2022-05-08T16:07:32.426Z", - "mtime": "2022-05-08T16:07:31.620Z", - "ctime": "2022-05-08T16:07:31.620Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_measuretext.md": { - "atime": "2022-05-08T18:21:15.867Z", - "mtime": "2022-05-08T18:20:10.263Z", - "ctime": "2022-05-08T18:20:10.263Z", - "birthtime": "2022-04-24T14:22:36.775Z" - }, - "docs/tags/canvas_moveto.md": { - "atime": "2022-05-08T15:53:46.678Z", - "mtime": "2022-05-08T15:53:03.511Z", - "ctime": "2022-05-08T15:53:03.511Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_putimagedata.md": { - "atime": "2022-05-09T03:57:24.662Z", - "mtime": "2022-05-09T03:57:22.968Z", - "ctime": "2022-05-09T03:57:22.968Z", - "birthtime": "2022-04-24T14:28:22.815Z" - }, - "docs/tags/canvas_quadraticcurveto.md": { - "atime": "2022-05-08T17:29:21.335Z", - "mtime": "2022-05-08T17:20:53.812Z", - "ctime": "2022-05-08T17:20:53.812Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_rect.md": { - "atime": "2022-05-08T15:15:16.633Z", - "mtime": "2022-05-08T15:14:55.386Z", - "ctime": "2022-05-08T15:14:55.386Z", - "birthtime": "2022-04-24T14:08:52.120Z" - }, - "docs/tags/canvas_rotate.md": { - "atime": "2022-05-08T18:19:59.916Z", - "mtime": "2022-05-08T18:10:57.950Z", - "ctime": "2022-05-08T18:10:57.950Z", - "birthtime": "2022-04-24T14:17:06.884Z" - }, - "docs/tags/canvas_scale.md": { - "atime": "2022-05-08T17:10:16.607Z", - "mtime": "2022-05-08T17:08:57.944Z", - "ctime": "2022-05-08T17:08:57.944Z", - "birthtime": "2022-04-24T14:17:06.883Z" - }, - "docs/tags/canvas_miterlimit.md": { - "atime": "2022-05-08T14:59:16.150Z", - "mtime": "2022-05-08T14:58:40.249Z", - "ctime": "2022-05-08T14:58:40.249Z", - "birthtime": "2022-04-24T14:08:25.686Z" - }, - "docs/tags/canvas_settransform.md": { - "atime": "2022-05-08T17:34:45.949Z", - "mtime": "2022-05-08T17:33:47.127Z", - "ctime": "2022-05-08T17:33:47.127Z", - "birthtime": "2022-04-24T14:17:06.884Z" - }, - "docs/tags/canvas_shadowblur.md": { - "atime": "2022-05-08T11:59:15.885Z", - "mtime": "2022-05-08T11:58:28.596Z", - "ctime": "2022-05-08T11:58:28.596Z", - "birthtime": "2022-05-08T11:55:14.952Z" - }, - "docs/tags/canvas_shadowcolor.md": { - "atime": "2022-05-08T11:57:39.305Z", - "mtime": "2022-05-08T11:57:37.753Z", - "ctime": "2022-05-08T11:57:37.753Z", - "birthtime": "2022-05-08T11:47:28.155Z" - }, - "docs/tags/canvas_shadowoffsetx.md": { - "atime": "2022-05-08T12:03:15.878Z", - "mtime": "2022-05-08T12:03:06.603Z", - "ctime": "2022-05-08T12:03:06.603Z", - "birthtime": "2022-05-08T11:59:03.910Z" - }, - "docs/tags/canvas_shadowoffsety.md": { - "atime": "2022-05-08T12:11:16.572Z", - "mtime": "2022-05-08T12:10:05.631Z", - "ctime": "2022-05-08T12:10:05.631Z", - "birthtime": "2022-05-08T12:05:39.126Z" - }, - "docs/tags/canvas_stroke.md": { - "atime": "2022-05-08T15:42:46.034Z", - "mtime": "2022-05-08T15:41:45.008Z", - "ctime": "2022-05-08T15:41:45.008Z", - "birthtime": "2022-04-24T14:14:21.783Z" - }, - "docs/tags/canvas_strokestyle.md": { - "atime": "2022-05-08T11:45:45.862Z", - "mtime": "2022-05-08T11:45:38.571Z", - "ctime": "2022-05-08T11:45:38.571Z", - "birthtime": "2022-05-08T11:34:46.853Z" - }, - "docs/tags/canvas_stroketext.md": { - "atime": "2022-05-08T18:17:45.939Z", - "mtime": "2022-05-08T18:16:26.717Z", - "ctime": "2022-05-08T18:16:26.717Z", - "birthtime": "2022-04-24T14:22:36.775Z" - }, - "docs/tags/canvas_textalign.md": { - "atime": "2022-05-08T17:55:16.639Z", - "mtime": "2022-05-08T17:55:00.359Z", - "ctime": "2022-05-08T17:55:00.359Z", - "birthtime": "2022-04-24T14:20:25.168Z" - }, - "docs/tags/canvas_textbaseline.md": { - "atime": "2022-05-08T18:01:45.887Z", - "mtime": "2022-05-08T18:01:41.464Z", - "ctime": "2022-05-08T18:01:41.464Z", - "birthtime": "2022-04-24T14:20:25.168Z" - }, - "docs/tags/canvas_transform.md": { - "atime": "2022-05-08T17:23:46.542Z", - "mtime": "2022-05-08T17:23:33.141Z", - "ctime": "2022-05-08T17:23:33.141Z", - "birthtime": "2022-04-24T14:17:06.884Z" - }, - "docs/tags/canvas_translate.md": { - "atime": "2022-05-08T17:30:15.871Z", - "mtime": "2022-05-08T17:29:26.795Z", - "ctime": "2022-05-08T17:29:26.795Z", - "birthtime": "2022-04-24T14:17:06.884Z" - }, - "docs/tags/canvas_width.md": { - "atime": "2022-05-08T07:29:09.044Z", - "mtime": "2022-05-08T07:29:08.465Z", - "ctime": "2022-05-08T07:29:08.465Z", - "birthtime": "2022-04-25T13:24:05.667Z" - }, - "docs/tags/caption.md": { - "atime": "2022-05-14T17:46:23.476Z", - "mtime": "2022-05-14T17:46:24.027Z", - "ctime": "2022-05-14T17:46:24.027Z", - "birthtime": "2022-04-24T07:43:17.334Z" - }, - "docs/tags/center.md": { - "atime": "2022-04-30T12:04:45.416Z", - "mtime": "2022-04-30T12:04:44.113Z", - "ctime": "2022-04-30T12:04:44.113Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/cite.md": { - "atime": "2022-05-08T05:02:50.986Z", - "mtime": "2022-05-08T05:02:49.323Z", - "ctime": "2022-05-08T05:02:49.323Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/col.md": { - "atime": "2022-05-14T17:46:30.948Z", - "mtime": "2022-05-14T17:46:31.265Z", - "ctime": "2022-05-14T17:46:31.265Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/code.md": { - "atime": "2022-05-08T05:02:42.250Z", - "mtime": "2022-05-08T05:02:40.862Z", - "ctime": "2022-05-08T05:02:40.862Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/col_span.md": { - "atime": "2022-05-08T05:06:37.787Z", - "mtime": "2022-05-08T05:06:37.103Z", - "ctime": "2022-05-08T05:06:37.103Z", - "birthtime": "2022-05-08T04:58:09.017Z" - }, - "docs/tags/colgroup.md": { - "atime": "2022-05-14T17:46:46.487Z", - "mtime": "2022-05-14T17:46:46.446Z", - "ctime": "2022-05-14T17:46:46.446Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/canvas_strokerect.md": { - "atime": "2022-05-08T15:29:46.095Z", - "mtime": "2022-05-08T15:28:40.950Z", - "ctime": "2022-05-08T15:28:40.950Z", - "birthtime": "2022-04-24T14:08:52.120Z" - }, - "docs/tags/colgroup_span.md": { - "atime": "2022-05-08T05:07:42.753Z", - "mtime": "2022-05-08T05:07:40.981Z", - "ctime": "2022-05-08T05:07:40.981Z", - "birthtime": "2022-04-25T13:24:36.304Z" - }, - "docs/tags/comment.md": { - "atime": "2022-05-14T17:46:55.081Z", - "mtime": "2022-05-14T17:46:55.082Z", - "ctime": "2022-05-14T17:46:55.082Z", - "birthtime": "2022-04-24T04:58:28.773Z" - }, - "docs/tags/data.md": { - "atime": "2022-05-08T05:08:32.931Z", - "mtime": "2022-05-08T05:08:31.537Z", - "ctime": "2022-05-08T05:08:31.537Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/datalist.md": { - "atime": "2022-05-08T05:08:24.845Z", - "mtime": "2022-05-08T05:08:23.190Z", - "ctime": "2022-05-08T05:08:23.190Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/dd.md": { - "atime": "2022-05-14T17:46:59.990Z", - "mtime": "2022-05-14T17:47:00.440Z", - "ctime": "2022-05-14T17:47:00.440Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/del_cite.md": { - "atime": "2022-05-08T05:14:21.366Z", - "mtime": "2022-05-08T05:13:42.214Z", - "ctime": "2022-05-08T05:13:42.214Z", - "birthtime": "2022-04-25T13:25:05.670Z" - }, - "docs/tags/del.md": { - "atime": "2022-05-14T17:47:05.940Z", - "mtime": "2022-05-14T17:47:06.335Z", - "ctime": "2022-05-14T17:47:06.335Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/details_open.md": { - "atime": "2022-05-14T17:47:14.808Z", - "mtime": "2022-05-14T17:47:14.697Z", - "ctime": "2022-05-14T17:47:14.697Z", - "birthtime": "2022-04-25T13:25:29.949Z" - }, - "docs/tags/details.md": { - "atime": "2022-05-14T17:47:23.294Z", - "mtime": "2022-05-14T17:47:23.200Z", - "ctime": "2022-05-14T17:47:23.200Z", - "birthtime": "2022-04-24T07:43:17.335Z" - }, - "docs/tags/dialog.md": { - "atime": "2022-05-08T05:27:12.488Z", - "mtime": "2022-05-08T05:27:10.857Z", - "ctime": "2022-05-08T05:27:10.857Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/dfn.md": { - "atime": "2022-05-14T17:47:59.959Z", - "mtime": "2022-05-14T17:47:59.878Z", - "ctime": "2022-05-14T17:47:59.878Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/dialog_open.md": { - "atime": "2022-05-08T05:26:21.311Z", - "mtime": "2022-05-08T05:26:06.921Z", - "ctime": "2022-05-08T05:26:06.921Z", - "birthtime": "2022-04-25T13:25:38.349Z" - }, - "docs/tags/dir.md": { - "atime": "2022-04-30T12:04:45.462Z", - "mtime": "2022-04-30T12:04:44.107Z", - "ctime": "2022-04-30T12:04:44.107Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/div.md": { - "atime": "2022-05-08T05:27:20.297Z", - "mtime": "2022-05-08T05:27:18.643Z", - "ctime": "2022-05-08T05:27:18.643Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/dl.md": { - "atime": "2022-05-14T17:48:11.306Z", - "mtime": "2022-05-14T17:48:11.240Z", - "ctime": "2022-05-14T17:48:11.240Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/doctype.md": { - "atime": "2022-05-14T17:48:48.462Z", - "mtime": "2022-05-14T17:48:48.430Z", - "ctime": "2022-05-14T17:48:48.430Z", - "birthtime": "2022-04-24T05:03:13.646Z" - }, - "docs/tags/dt.md": { - "atime": "2022-05-14T17:48:15.731Z", - "mtime": "2022-05-14T17:48:15.699Z", - "ctime": "2022-05-14T17:48:15.699Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/em.md": { - "atime": "2022-05-14T17:48:21.131Z", - "mtime": "2022-05-14T17:48:21.097Z", - "ctime": "2022-05-14T17:48:21.097Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/embed.md": { - "atime": "2022-05-08T05:42:54.471Z", - "mtime": "2022-05-08T05:42:52.417Z", - "ctime": "2022-05-08T05:42:52.417Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/embed_height.md": { - "atime": "2022-05-08T05:36:41.306Z", - "mtime": "2022-05-08T05:33:46.782Z", - "ctime": "2022-05-08T05:33:46.782Z", - "birthtime": "2022-04-25T13:26:04.176Z" - }, - "docs/tags/embed_src.md": { - "atime": "2022-05-08T05:37:51.262Z", - "mtime": "2022-05-08T05:37:08.584Z", - "ctime": "2022-05-08T05:37:08.584Z", - "birthtime": "2022-04-25T13:26:04.177Z" - }, - "docs/tags/embed_type.md": { - "atime": "2022-05-08T05:41:21.330Z", - "mtime": "2022-05-08T05:40:24.589Z", - "ctime": "2022-05-08T05:40:24.589Z", - "birthtime": "2022-04-25T13:26:04.177Z" - }, - "docs/tags/embed_width.md": { - "atime": "2022-05-08T05:43:21.971Z", - "mtime": "2022-05-08T05:42:46.418Z", - "ctime": "2022-05-08T05:42:46.418Z", - "birthtime": "2022-04-25T13:26:04.177Z" - }, - "docs/tags/fieldset.md": { - "atime": "2022-05-14T17:48:27.578Z", - "mtime": "2022-05-14T17:48:27.617Z", - "ctime": "2022-05-14T17:48:27.617Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/fieldset_disabled.md": { - "atime": "2022-05-08T06:27:01.515Z", - "mtime": "2022-05-08T06:23:36.277Z", - "ctime": "2022-05-08T06:23:36.277Z", - "birthtime": "2022-04-25T13:26:51.743Z" - }, - "docs/tags/fieldset_form.md": { - "atime": "2022-05-08T06:28:26.875Z", - "mtime": "2022-05-08T06:27:46.569Z", - "ctime": "2022-05-08T06:27:46.569Z", - "birthtime": "2022-04-25T13:26:51.744Z" - }, - "docs/tags/fieldset_name.md": { - "atime": "2022-05-08T06:31:26.803Z", - "mtime": "2022-05-08T06:30:43.605Z", - "ctime": "2022-05-08T06:30:43.605Z", - "birthtime": "2022-04-25T13:26:51.744Z" - }, - "docs/tags/del_datetime.md": { - "atime": "2022-05-08T05:19:44.252Z", - "mtime": "2022-05-08T05:17:32.603Z", - "ctime": "2022-05-08T05:17:32.603Z", - "birthtime": "2022-04-25T13:25:05.670Z" - }, - "docs/tags/figcaption.md": { - "atime": "2022-05-14T17:48:32.123Z", - "mtime": "2022-05-14T17:48:32.168Z", - "ctime": "2022-05-14T17:48:32.168Z", - "birthtime": "2022-04-24T07:43:17.336Z" - }, - "docs/tags/figure.md": { - "atime": "2022-05-14T17:48:36.191Z", - "mtime": "2022-05-14T17:48:36.161Z", - "ctime": "2022-05-14T17:48:36.161Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/font.md": { - "atime": "2022-04-30T12:04:44.919Z", - "mtime": "2022-04-30T12:04:44.107Z", - "ctime": "2022-04-30T12:04:44.107Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/footer.md": { - "atime": "2022-05-14T17:48:40.247Z", - "mtime": "2022-05-14T17:48:40.205Z", - "ctime": "2022-05-14T17:48:40.205Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/form.md": { - "atime": "2022-05-08T09:01:13.482Z", - "mtime": "2022-05-08T09:01:12.178Z", - "ctime": "2022-05-08T09:01:12.178Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/form_accept_charset.md": { - "atime": "2022-05-08T07:16:48.413Z", - "mtime": "2022-05-08T07:16:46.854Z", - "ctime": "2022-05-08T07:16:46.854Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_action.md": { - "atime": "2022-05-08T07:33:35.699Z", - "mtime": "2022-05-08T07:33:35.253Z", - "ctime": "2022-05-08T07:33:35.253Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_autocomplete.md": { - "atime": "2022-05-08T07:33:54.250Z", - "mtime": "2022-05-08T07:33:53.008Z", - "ctime": "2022-05-08T07:33:53.008Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_enctype.md": { - "atime": "2022-05-08T07:33:45.926Z", - "mtime": "2022-05-08T07:33:43.837Z", - "ctime": "2022-05-08T07:33:43.837Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_method.md": { - "atime": "2022-05-08T07:38:15.892Z", - "mtime": "2022-05-08T07:37:54.938Z", - "ctime": "2022-05-08T07:37:54.938Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_name.md": { - "atime": "2022-05-08T09:43:51.702Z", - "mtime": "2022-05-08T09:43:49.939Z", - "ctime": "2022-05-08T09:43:49.939Z", - "birthtime": "2022-04-25T13:27:26.345Z" - }, - "docs/tags/form_novalidate.md": { - "atime": "2022-05-08T07:44:45.742Z", - "mtime": "2022-05-08T07:43:53.706Z", - "ctime": "2022-05-08T07:43:53.706Z", - "birthtime": "2022-04-25T13:27:26.346Z" - }, - "docs/tags/form_target.md": { - "atime": "2022-05-08T07:51:15.838Z", - "mtime": "2022-05-08T07:50:21.938Z", - "ctime": "2022-05-08T07:50:21.938Z", - "birthtime": "2022-04-25T13:27:26.346Z" - }, - "docs/tags/frame.md": { - "atime": "2022-04-30T12:04:45.255Z", - "mtime": "2022-04-30T12:04:44.107Z", - "ctime": "2022-04-30T12:04:44.107Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/frameset.md": { - "atime": "2022-04-30T12:04:45.253Z", - "mtime": "2022-04-30T12:04:44.107Z", - "ctime": "2022-04-30T12:04:44.107Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/form_rel.md": { - "atime": "2022-05-08T07:48:16.371Z", - "mtime": "2022-05-08T07:47:15.811Z", - "ctime": "2022-05-08T07:47:15.811Z", - "birthtime": "2022-04-25T13:27:26.346Z" - }, - "docs/tags/head.md": { - "atime": "2022-05-14T17:49:08.145Z", - "mtime": "2022-05-14T17:49:10.919Z", - "ctime": "2022-05-14T17:49:10.919Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/header.md": { - "atime": "2022-05-08T09:01:40.485Z", - "mtime": "2022-05-08T09:01:38.830Z", - "ctime": "2022-05-08T09:01:38.830Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/hn.md": { - "atime": "2022-05-08T09:01:48.737Z", - "mtime": "2022-05-08T09:01:47.080Z", - "ctime": "2022-05-08T09:01:47.080Z", - "birthtime": "2022-04-24T07:43:17.337Z" - }, - "docs/tags/hr.md": { - "atime": "2022-05-08T09:02:06.731Z", - "mtime": "2022-05-08T09:02:04.618Z", - "ctime": "2022-05-08T09:02:04.618Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/html.md": { - "atime": "2022-05-14T17:49:35.875Z", - "mtime": "2022-05-14T17:49:35.854Z", - "ctime": "2022-05-14T17:49:35.854Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/html_xmlns.md": { - "atime": "2022-05-08T09:09:11.346Z", - "mtime": "2022-05-14T17:49:25.172Z", - "ctime": "2022-05-14T17:49:25.172Z", - "birthtime": "2022-04-25T13:28:39.949Z" - }, - "docs/tags/i.md": { - "atime": "2022-05-14T17:49:42.596Z", - "mtime": "2022-05-14T17:49:42.598Z", - "ctime": "2022-05-14T17:49:42.598Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/iframe.md": { - "atime": "2022-05-14T17:49:52.072Z", - "mtime": "2022-05-14T17:49:52.093Z", - "ctime": "2022-05-14T17:49:52.093Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/iframe_height.md": { - "atime": "2022-05-08T09:18:34.947Z", - "mtime": "2022-05-08T09:18:34.593Z", - "ctime": "2022-05-08T09:18:34.593Z", - "birthtime": "2022-04-25T13:30:07.222Z" - }, - "docs/tags/iframe_name.md": { - "atime": "2022-05-08T10:28:24.844Z", - "mtime": "2022-05-08T10:18:17.961Z", - "ctime": "2022-05-08T10:18:17.961Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/iframe_referrerpolicy.md": { - "atime": "2022-05-08T09:47:34.364Z", - "mtime": "2022-05-08T09:47:32.920Z", - "ctime": "2022-05-08T09:47:32.920Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/iframe_sandbox.md": { - "atime": "2022-05-08T09:55:11.041Z", - "mtime": "2022-05-08T09:54:58.168Z", - "ctime": "2022-05-08T09:54:58.168Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/iframe_src.md": { - "atime": "2022-05-08T10:05:20.447Z", - "mtime": "2022-05-08T09:58:25.589Z", - "ctime": "2022-05-08T09:58:25.589Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/iframe_srcdoc.md": { - "atime": "2022-05-08T10:02:41.756Z", - "mtime": "2022-05-08T10:02:21.399Z", - "ctime": "2022-05-08T10:02:21.399Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/img.md": { - "atime": "2022-05-14T17:50:10.738Z", - "mtime": "2022-05-14T17:50:10.717Z", - "ctime": "2022-05-14T17:50:10.717Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/iframe_width.md": { - "atime": "2022-05-08T10:06:41.691Z", - "mtime": "2022-05-08T10:05:50.446Z", - "ctime": "2022-05-08T10:05:50.446Z", - "birthtime": "2022-04-25T13:30:07.223Z" - }, - "docs/tags/img_alt.md": { - "atime": "2022-05-08T11:14:21.893Z", - "mtime": "2022-05-08T11:14:20.229Z", - "ctime": "2022-05-08T11:14:20.229Z", - "birthtime": "2022-04-25T13:32:24.065Z" - }, - "docs/tags/img_height.md": { - "atime": "2022-05-08T11:13:54.145Z", - "mtime": "2022-05-08T11:13:52.755Z", - "ctime": "2022-05-08T11:13:52.755Z", - "birthtime": "2022-04-25T13:32:24.065Z" - }, - "docs/tags/img_loading.md": { - "atime": "2022-05-08T11:13:58.466Z", - "mtime": "2022-05-08T11:13:57.091Z", - "ctime": "2022-05-08T11:13:57.091Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_ismap.md": { - "atime": "2022-05-08T10:35:55.754Z", - "mtime": "2022-05-08T10:35:54.386Z", - "ctime": "2022-05-08T10:35:54.386Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_longdesc.md": { - "atime": "2022-05-08T11:14:37.633Z", - "mtime": "2022-05-08T11:14:35.564Z", - "ctime": "2022-05-08T11:14:35.564Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_usemap.md": { - "atime": "2022-05-08T11:14:51.044Z", - "mtime": "2022-05-08T11:14:49.681Z", - "ctime": "2022-05-08T11:14:49.681Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_src.md": { - "atime": "2022-05-14T17:49:58.534Z", - "mtime": "2022-05-14T17:49:58.488Z", - "ctime": "2022-05-14T17:49:58.488Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_width.md": { - "atime": "2022-05-13T10:50:28.305Z", - "mtime": "2022-05-13T10:50:27.027Z", - "ctime": "2022-05-13T10:50:27.027Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/img_referrepolicy.md": { - "atime": "2022-05-08T11:14:04.093Z", - "mtime": "2022-05-08T11:14:03.239Z", - "ctime": "2022-05-08T11:14:03.239Z", - "birthtime": "2022-04-25T13:32:24.066Z" - }, - "docs/tags/input_accept.md": { - "atime": "2022-05-13T13:40:01.952Z", - "mtime": "2022-05-13T13:40:00.700Z", - "ctime": "2022-05-13T13:40:00.700Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input.md": { - "atime": "2022-05-15T13:13:19.263Z", - "mtime": "2022-05-15T13:13:19.707Z", - "ctime": "2022-05-15T13:13:19.707Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/input_alt.md": { - "atime": "2022-05-13T13:39:54.334Z", - "mtime": "2022-05-13T13:39:52.966Z", - "ctime": "2022-05-13T13:39:52.966Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_checked.md": { - "atime": "2022-05-13T13:39:41.315Z", - "mtime": "2022-05-13T13:39:39.989Z", - "ctime": "2022-05-13T13:39:39.989Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_autofocus.md": { - "atime": "2022-05-13T13:39:45.780Z", - "mtime": "2022-05-13T13:39:44.485Z", - "ctime": "2022-05-13T13:39:44.485Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_disabled.md": { - "atime": "2022-05-13T13:40:45.307Z", - "mtime": "2022-05-13T13:40:44.950Z", - "ctime": "2022-05-13T13:40:44.950Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_form.md": { - "atime": "2022-05-13T14:35:33.932Z", - "mtime": "2022-05-13T14:35:32.681Z", - "ctime": "2022-05-13T14:35:32.681Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_dirname.md": { - "atime": "2022-05-13T13:39:36.691Z", - "mtime": "2022-05-13T13:39:35.374Z", - "ctime": "2022-05-13T13:39:35.374Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_formaction.md": { - "atime": "2022-05-13T14:39:52.021Z", - "mtime": "2022-05-13T14:39:50.696Z", - "ctime": "2022-05-13T14:39:50.696Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_formenctype.md": { - "atime": "2022-05-13T14:44:09.328Z", - "mtime": "2022-05-13T14:39:52.386Z", - "ctime": "2022-05-13T14:39:52.386Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_formmethod.md": { - "atime": "2022-05-13T14:50:23.479Z", - "mtime": "2022-05-13T14:45:43.652Z", - "ctime": "2022-05-13T14:45:43.652Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_autocomplete.md": { - "atime": "2022-05-13T13:39:50.164Z", - "mtime": "2022-05-13T13:39:48.788Z", - "ctime": "2022-05-13T13:39:48.788Z", - "birthtime": "2022-04-25T13:33:10.304Z" - }, - "docs/tags/input_formnovalidate.md": { - "atime": "2022-05-13T14:56:57.233Z", - "mtime": "2022-05-13T14:56:56.829Z", - "ctime": "2022-05-13T14:56:56.829Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_formtarget.md": { - "atime": "2022-05-13T14:58:43.740Z", - "mtime": "2022-05-13T14:58:06.473Z", - "ctime": "2022-05-13T14:58:06.473Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_height.md": { - "atime": "2022-05-13T15:06:33.599Z", - "mtime": "2022-05-13T15:06:32.343Z", - "ctime": "2022-05-13T15:06:32.343Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_list.md": { - "atime": "2022-05-13T15:12:10.491Z", - "mtime": "2022-05-13T15:12:09.043Z", - "ctime": "2022-05-13T15:12:09.043Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_max.md": { - "atime": "2022-05-13T15:18:43.655Z", - "mtime": "2022-05-13T15:18:37.260Z", - "ctime": "2022-05-13T15:18:37.260Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_maxlength.md": { - "atime": "2022-05-14T04:53:34.723Z", - "mtime": "2022-05-14T04:53:36.070Z", - "ctime": "2022-05-14T04:53:36.070Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_min.md": { - "atime": "2022-05-14T05:02:16.983Z", - "mtime": "2022-05-14T05:02:16.951Z", - "ctime": "2022-05-14T05:02:16.951Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_minlength.md": { - "atime": "2022-05-14T05:09:49.405Z", - "mtime": "2022-05-14T05:09:57.032Z", - "ctime": "2022-05-14T05:09:57.032Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_multiple.md": { - "atime": "2022-05-14T05:19:11.925Z", - "mtime": "2022-05-14T05:19:12.087Z", - "ctime": "2022-05-14T05:19:12.087Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_name.md": { - "atime": "2022-05-14T05:19:03.304Z", - "mtime": "2022-05-14T05:19:03.271Z", - "ctime": "2022-05-14T05:19:03.271Z", - "birthtime": "2022-04-25T13:33:10.305Z" - }, - "docs/tags/input_pattern.md": { - "atime": "2022-05-14T05:33:26.943Z", - "mtime": "2022-05-14T05:33:26.882Z", - "ctime": "2022-05-14T05:33:26.882Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_placeholder.md": { - "atime": "2022-05-14T05:59:53.344Z", - "mtime": "2022-05-14T05:59:53.307Z", - "ctime": "2022-05-14T05:59:53.307Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_readonly.md": { - "atime": "2022-05-14T05:42:46.667Z", - "mtime": "2022-05-14T05:42:48.190Z", - "ctime": "2022-05-14T05:42:48.190Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_required.md": { - "atime": "2022-05-14T05:46:25.808Z", - "mtime": "2022-05-14T05:46:32.703Z", - "ctime": "2022-05-14T05:46:32.703Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_size.md": { - "atime": "2022-05-14T05:52:23.157Z", - "mtime": "2022-05-14T05:52:23.121Z", - "ctime": "2022-05-14T05:52:23.121Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_src.md": { - "atime": "2022-05-14T05:56:51.095Z", - "mtime": "2022-05-14T05:56:51.055Z", - "ctime": "2022-05-14T05:56:51.055Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_step.md": { - "atime": "2022-05-14T06:01:39.994Z", - "mtime": "2022-05-14T06:01:39.950Z", - "ctime": "2022-05-14T06:01:39.950Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_type.md": { - "atime": "2022-05-14T06:18:52.928Z", - "mtime": "2022-05-14T06:18:53.329Z", - "ctime": "2022-05-14T06:18:53.329Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_type_button.md": { - "atime": "2022-04-30T09:57:25.832Z", - "mtime": "2022-04-30T09:57:24.466Z", - "ctime": "2022-04-30T09:57:24.466Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_checkbox.md": { - "atime": "2022-04-30T09:57:23.059Z", - "mtime": "2022-04-30T09:57:21.111Z", - "ctime": "2022-04-30T09:57:21.111Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_color.md": { - "atime": "2022-04-30T09:57:18.621Z", - "mtime": "2022-04-30T09:57:16.921Z", - "ctime": "2022-04-30T09:57:16.921Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_date.md": { - "atime": "2022-04-30T09:57:14.363Z", - "mtime": "2022-04-30T09:57:12.905Z", - "ctime": "2022-04-30T09:57:12.905Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_datetime-local.md": { - "atime": "2022-04-30T09:57:10.464Z", - "mtime": "2022-04-30T09:57:08.842Z", - "ctime": "2022-04-30T09:57:08.842Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_email.md": { - "atime": "2022-04-30T09:57:04.942Z", - "mtime": "2022-04-30T09:57:03.566Z", - "ctime": "2022-04-30T09:57:03.566Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_file.md": { - "atime": "2022-04-30T09:57:01.963Z", - "mtime": "2022-04-30T09:57:00.233Z", - "ctime": "2022-04-30T09:57:00.233Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_hidden.md": { - "atime": "2022-04-30T09:51:39.488Z", - "mtime": "2022-04-30T09:50:51.064Z", - "ctime": "2022-04-30T09:50:51.064Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_image.md": { - "atime": "2022-04-30T09:53:09.482Z", - "mtime": "2022-04-30T09:52:53.207Z", - "ctime": "2022-04-30T09:52:53.207Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_month.md": { - "atime": "2022-05-03T17:50:41.588Z", - "mtime": "2022-05-03T17:50:40.201Z", - "ctime": "2022-05-03T17:50:40.201Z", - "birthtime": "2022-04-30T09:25:28.482Z" - }, - "docs/tags/input_type_number.md": { - "atime": "2022-05-03T17:50:40.954Z", - "mtime": "2022-05-03T17:50:40.201Z", - "ctime": "2022-05-03T17:50:40.201Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_password.md": { - "atime": "2022-04-30T09:59:39.476Z", - "mtime": "2022-04-30T09:59:05.015Z", - "ctime": "2022-04-30T09:59:05.015Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_range.md": { - "atime": "2022-04-30T10:02:39.486Z", - "mtime": "2022-04-30T10:01:54.772Z", - "ctime": "2022-04-30T10:01:54.772Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_reset.md": { - "atime": "2022-04-30T10:03:39.435Z", - "mtime": "2022-04-30T10:03:26.284Z", - "ctime": "2022-04-30T10:03:26.284Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_radio.md": { - "atime": "2022-04-30T10:00:39.470Z", - "mtime": "2022-04-30T10:00:26.880Z", - "ctime": "2022-04-30T10:00:26.880Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_submit.md": { - "atime": "2022-04-30T10:09:09.580Z", - "mtime": "2022-04-30T10:08:41.541Z", - "ctime": "2022-04-30T10:08:41.541Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_text.md": { - "atime": "2022-04-30T10:11:55.969Z", - "mtime": "2022-04-30T10:11:54.657Z", - "ctime": "2022-04-30T10:11:54.657Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_search.md": { - "atime": "2022-04-30T10:06:09.588Z", - "mtime": "2022-04-30T10:05:09.883Z", - "ctime": "2022-04-30T10:05:09.883Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_tel.md": { - "atime": "2022-04-30T10:09:09.558Z", - "mtime": "2022-04-30T10:09:08.088Z", - "ctime": "2022-04-30T10:09:08.088Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_time.md": { - "atime": "2022-04-30T10:12:09.575Z", - "mtime": "2022-04-30T10:11:46.175Z", - "ctime": "2022-04-30T10:11:46.175Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_type_url.md": { - "atime": "2022-04-30T10:13:40.167Z", - "mtime": "2022-04-30T10:13:13.554Z", - "ctime": "2022-04-30T10:13:13.554Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/input_value.md": { - "atime": "2022-05-14T06:10:40.562Z", - "mtime": "2022-05-14T06:10:40.531Z", - "ctime": "2022-05-14T06:10:40.531Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/input_type_week.md": { - "atime": "2022-05-03T17:50:40.921Z", - "mtime": "2022-05-03T17:50:40.201Z", - "ctime": "2022-05-03T17:50:40.201Z", - "birthtime": "2022-04-30T09:25:28.483Z" - }, - "docs/tags/ins.md": { - "atime": "2022-05-14T17:50:19.266Z", - "mtime": "2022-05-14T17:50:19.791Z", - "ctime": "2022-05-14T17:50:19.791Z", - "birthtime": "2022-04-24T07:43:17.338Z" - }, - "docs/tags/ins_cite.md": { - "atime": "2022-04-29T15:27:16.191Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:33:54.754Z" - }, - "docs/tags/input_width.md": { - "atime": "2022-05-14T06:16:10.396Z", - "mtime": "2022-05-14T06:16:10.447Z", - "ctime": "2022-05-14T06:16:10.447Z", - "birthtime": "2022-04-25T13:33:10.306Z" - }, - "docs/tags/kbd.md": { - "atime": "2022-05-03T17:19:38.805Z", - "mtime": "2022-05-03T17:19:37.762Z", - "ctime": "2022-05-03T17:19:37.762Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/label.md": { - "atime": "2022-05-01T06:19:27.000Z", - "mtime": "2022-05-01T06:19:26.050Z", - "ctime": "2022-05-01T06:19:26.050Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/label_for.md": { - "atime": "2022-04-29T15:27:16.238Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-25T13:33:54.754Z" - }, - "docs/tags/ins_datetime.md": { - "atime": "2022-04-29T15:27:17.181Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:33:54.754Z" - }, - "docs/tags/legend.md": { - "atime": "2022-05-14T17:50:24.771Z", - "mtime": "2022-05-14T17:50:24.878Z", - "ctime": "2022-05-14T17:50:24.878Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/label_form.md": { - "atime": "2022-04-29T15:27:16.732Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:33:54.754Z" - }, - "docs/tags/li.md": { - "atime": "2022-05-01T06:19:26.976Z", - "mtime": "2022-05-01T06:19:26.050Z", - "ctime": "2022-05-01T06:19:26.050Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/link.md": { - "atime": "2022-05-01T06:19:26.936Z", - "mtime": "2022-05-01T06:19:25.745Z", - "ctime": "2022-05-01T06:19:25.745Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/link_href.md": { - "atime": "2022-04-29T15:27:16.425Z", - "mtime": "2022-04-29T15:26:49.621Z", - "ctime": "2022-04-29T15:26:49.621Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/link_hreflang.md": { - "atime": "2022-04-29T15:27:15.972Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/link_media.md": { - "atime": "2022-04-29T15:27:15.950Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/li_value.md": { - "atime": "2022-04-29T15:27:15.879Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:33:54.755Z" - }, - "docs/tags/link_referrerpolicy.md": { - "atime": "2022-04-29T15:27:16.046Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/link_rel.md": { - "atime": "2022-04-29T15:27:16.110Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/link_sizes.md": { - "atime": "2022-04-29T15:27:15.819Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/link_type.md": { - "atime": "2022-04-29T15:27:15.995Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/main.md": { - "atime": "2022-05-01T06:19:26.941Z", - "mtime": "2022-05-01T06:19:26.031Z", - "ctime": "2022-05-01T06:19:26.031Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/map.md": { - "atime": "2022-05-09T16:06:26.553Z", - "mtime": "2022-05-09T16:05:16.688Z", - "ctime": "2022-05-09T16:05:16.688Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/map_name.md": { - "atime": "2022-04-29T15:27:16.061Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/mark.md": { - "atime": "2022-05-14T17:50:28.726Z", - "mtime": "2022-05-14T17:50:28.685Z", - "ctime": "2022-05-14T17:50:28.685Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/menu.md": { - "atime": "2022-05-16T01:48:44.021Z", - "mtime": "2022-05-16T01:48:41.947Z", - "ctime": "2022-05-16T01:48:41.947Z", - "birthtime": "2022-04-30T10:33:33.935Z" - }, - "docs/tags/menu_type.md": { - "atime": "2022-05-03T17:19:38.991Z", - "mtime": "2022-05-03T17:19:37.935Z", - "ctime": "2022-05-03T17:19:37.935Z", - "birthtime": "2022-04-30T10:51:13.116Z" - }, - "docs/tags/menu_label.md": { - "atime": "2022-05-14T17:50:33.568Z", - "mtime": "2022-05-14T17:50:33.515Z", - "ctime": "2022-05-14T17:50:33.515Z", - "birthtime": "2022-04-30T10:51:13.116Z" - }, - "docs/tags/menuitem.md": { - "atime": "2022-05-16T01:48:44.040Z", - "mtime": "2022-05-16T01:48:41.897Z", - "ctime": "2022-05-16T01:48:41.897Z", - "birthtime": "2022-04-30T10:44:19.140Z" - }, - "docs/tags/menuitem_default.md": { - "atime": "2022-04-30T11:44:40.486Z", - "mtime": "2022-04-30T11:44:39.597Z", - "ctime": "2022-04-30T11:44:39.597Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/menuitem_disabled.md": { - "atime": "2022-05-03T17:19:38.983Z", - "mtime": "2022-05-03T17:19:37.935Z", - "ctime": "2022-05-03T17:19:37.935Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/menuitem_checked.md": { - "atime": "2022-05-03T17:19:38.929Z", - "mtime": "2022-05-03T17:19:37.935Z", - "ctime": "2022-05-03T17:19:37.935Z", - "birthtime": "2022-04-30T10:56:53.069Z" - }, - "docs/tags/menuitem_icon.md": { - "atime": "2022-05-03T17:19:39.054Z", - "mtime": "2022-05-03T17:19:37.936Z", - "ctime": "2022-05-03T17:19:37.936Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/menuitem_label.md": { - "atime": "2022-05-03T17:19:38.981Z", - "mtime": "2022-05-03T17:19:37.935Z", - "ctime": "2022-05-03T17:19:37.935Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/menuitem_radiogroup.md": { - "atime": "2022-04-30T11:51:10.459Z", - "mtime": "2022-04-30T11:50:30.121Z", - "ctime": "2022-04-30T11:50:30.121Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/menuitem_type.md": { - "atime": "2022-04-30T11:52:39.800Z", - "mtime": "2022-04-30T11:51:41.890Z", - "ctime": "2022-04-30T11:51:41.890Z", - "birthtime": "2022-04-30T10:56:53.070Z" - }, - "docs/tags/meta.md": { - "atime": "2022-05-14T17:51:03.546Z", - "mtime": "2022-05-14T17:51:03.568Z", - "ctime": "2022-05-14T17:51:03.568Z", - "birthtime": "2022-04-24T07:43:17.339Z" - }, - "docs/tags/meta_charset.md": { - "atime": "2022-04-29T15:27:15.984Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/meta_content.md": { - "atime": "2022-04-29T15:27:16.039Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.897Z" - }, - "docs/tags/meta_http_equiv.md": { - "atime": "2022-04-29T15:27:15.802Z", - "mtime": "2022-04-29T15:26:49.509Z", - "ctime": "2022-04-29T15:26:49.509Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meta_name.md": { - "atime": "2022-04-29T15:27:16.326Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter.md": { - "atime": "2022-05-14T17:51:11.556Z", - "mtime": "2022-05-14T17:51:15.572Z", - "ctime": "2022-05-14T17:51:15.572Z", - "birthtime": "2022-04-24T07:43:17.340Z" - }, - "docs/tags/meter_form.md": { - "atime": "2022-04-29T15:27:16.035Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_high.md": { - "atime": "2022-04-29T15:27:16.763Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_low.md": { - "atime": "2022-04-29T15:27:15.821Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_max.md": { - "atime": "2022-04-29T15:27:16.133Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_min.md": { - "atime": "2022-04-29T15:27:15.769Z", - "mtime": "2022-04-29T15:26:48.571Z", - "ctime": "2022-04-29T15:26:48.571Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_optimum.md": { - "atime": "2022-04-29T15:27:16.855Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/meter_value.md": { - "atime": "2022-04-29T15:27:16.472Z", - "mtime": "2022-04-29T15:26:49.650Z", - "ctime": "2022-04-29T15:26:49.650Z", - "birthtime": "2022-04-25T13:34:37.898Z" - }, - "docs/tags/nav.md": { - "atime": "2022-05-01T06:19:26.958Z", - "mtime": "2022-05-01T06:19:25.715Z", - "ctime": "2022-05-01T06:19:25.715Z", - "birthtime": "2022-04-24T07:43:17.340Z" - }, - "docs/tags/noframes.md": { - "atime": "2022-05-16T01:48:44.366Z", - "mtime": "2022-05-16T01:48:41.985Z", - "ctime": "2022-05-16T01:48:41.985Z", - "birthtime": "2022-04-24T07:43:17.340Z" - }, - "docs/tags/noscript.md": { - "atime": "2022-05-14T17:51:19.563Z", - "mtime": "2022-05-14T17:51:19.510Z", - "ctime": "2022-05-14T17:51:19.510Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/object.md": { - "atime": "2022-05-03T17:19:38.969Z", - "mtime": "2022-05-03T17:19:37.934Z", - "ctime": "2022-05-03T17:19:37.934Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/object_height.md": { - "atime": "2022-04-29T15:27:15.877Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:35:17.131Z" - }, - "docs/tags/object_form.md": { - "atime": "2022-04-29T15:27:16.078Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:35:17.131Z" - }, - "docs/tags/object_name.md": { - "atime": "2022-04-29T15:27:15.928Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:35:17.131Z" - }, - "docs/tags/object_type.md": { - "atime": "2022-04-29T15:27:16.206Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/object_usemap.md": { - "atime": "2022-04-29T15:27:15.936Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/object_width.md": { - "atime": "2022-04-29T15:27:15.785Z", - "mtime": "2022-04-29T15:26:49.488Z", - "ctime": "2022-04-29T15:26:49.488Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/ol.md": { - "atime": "2022-05-14T17:51:29.804Z", - "mtime": "2022-05-14T17:51:29.906Z", - "ctime": "2022-05-14T17:51:29.906Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/ol_reversed.md": { - "atime": "2022-04-29T15:27:16.042Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/ol_start.md": { - "atime": "2022-04-29T15:27:16.202Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/ol_type.md": { - "atime": "2022-04-29T15:27:16.582Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/optgroup.md": { - "atime": "2022-05-01T07:32:59.944Z", - "mtime": "2022-05-01T07:32:58.280Z", - "ctime": "2022-05-01T07:32:58.280Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/optgroup_disabled.md": { - "atime": "2022-04-29T15:27:15.777Z", - "mtime": "2022-04-29T15:26:48.284Z", - "ctime": "2022-04-29T15:26:48.284Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/optgroup_label.md": { - "atime": "2022-04-29T15:27:16.172Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/option.md": { - "atime": "2022-05-14T17:51:35.100Z", - "mtime": "2022-05-14T17:51:35.067Z", - "ctime": "2022-05-14T17:51:35.067Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/option_disabled.md": { - "atime": "2022-04-29T15:27:16.105Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:35:17.132Z" - }, - "docs/tags/option_label.md": { - "atime": "2022-04-29T15:27:16.785Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/option_selected.md": { - "atime": "2022-04-29T15:27:16.844Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/option_value.md": { - "atime": "2022-04-29T15:27:16.599Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/output.md": { - "atime": "2022-05-03T17:19:38.928Z", - "mtime": "2022-05-03T17:19:37.935Z", - "ctime": "2022-05-03T17:19:37.935Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/output_for.md": { - "atime": "2022-04-29T15:27:17.252Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/object_data.md": { - "atime": "2022-04-29T15:27:15.992Z", - "mtime": "2022-04-29T15:26:49.508Z", - "ctime": "2022-04-29T15:26:49.508Z", - "birthtime": "2022-04-25T13:35:17.131Z" - }, - "docs/tags/output_form.md": { - "atime": "2022-04-29T15:27:15.963Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/output_name.md": { - "atime": "2022-04-29T15:27:15.739Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/p.md": { - "atime": "2022-05-14T17:51:40.522Z", - "mtime": "2022-05-14T17:51:40.429Z", - "ctime": "2022-05-14T17:51:40.429Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/param.md": { - "atime": "2022-05-03T17:19:38.855Z", - "mtime": "2022-05-03T17:19:37.934Z", - "ctime": "2022-05-03T17:19:37.934Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/param_name.md": { - "atime": "2022-04-29T15:27:17.357Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/param_value.md": { - "atime": "2022-04-29T15:27:16.186Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:35:17.133Z" - }, - "docs/tags/picture.md": { - "atime": "2022-05-01T07:57:02.311Z", - "mtime": "2022-05-01T07:57:00.874Z", - "ctime": "2022-05-01T07:57:00.874Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/pre.md": { - "atime": "2022-05-01T07:57:06.499Z", - "mtime": "2022-05-01T07:57:05.094Z", - "ctime": "2022-05-01T07:57:05.094Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/progress.md": { - "atime": "2022-05-14T17:51:57.685Z", - "mtime": "2022-05-14T17:51:57.663Z", - "ctime": "2022-05-14T17:51:57.663Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/progress_max.md": { - "atime": "2022-04-29T15:27:15.840Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:42:06.390Z" - }, - "docs/tags/progress_value.md": { - "atime": "2022-04-29T15:27:16.970Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:42:06.391Z" - }, - "docs/tags/q.md": { - "atime": "2022-05-01T08:49:04.173Z", - "mtime": "2022-05-14T17:52:01.128Z", - "ctime": "2022-05-14T17:52:01.128Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/q_cite.md": { - "atime": "2022-04-29T15:27:16.648Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:42:06.391Z" - }, - "docs/tags/rp.md": { - "atime": "2022-05-01T08:14:20.902Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/rt.md": { - "atime": "2022-05-01T08:19:02.140Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/ruby.md": { - "atime": "2022-05-01T08:20:45.474Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.341Z" - }, - "docs/tags/s.md": { - "atime": "2022-05-14T17:52:10.636Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/samp.md": { - "atime": "2022-05-03T17:19:38.840Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/script.md": { - "atime": "2022-05-03T17:19:38.883Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/script_async.md": { - "atime": "2022-04-29T15:27:16.119Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.549Z" - }, - "docs/tags/script_crossorigin.md": { - "atime": "2022-04-29T15:27:15.746Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:38:12.549Z" - }, - "docs/tags/script_integrity.md": { - "atime": "2022-04-29T15:27:15.739Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/script_referrepolicy.md": { - "atime": "2022-04-29T15:27:16.115Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/script_src.md": { - "atime": "2022-04-29T15:27:16.019Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/script_type.md": { - "atime": "2022-04-29T15:27:15.914Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/section.md": { - "atime": "2022-05-03T17:19:38.883Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/script_defer.md": { - "atime": "2022-04-29T15:27:15.809Z", - "mtime": "2022-04-29T15:26:49.509Z", - "ctime": "2022-04-29T15:26:49.509Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select.md": { - "atime": "2022-05-14T17:52:19.947Z", - "mtime": "2022-05-16T01:48:40.873Z", - "ctime": "2022-05-16T01:48:40.873Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/select_autofocus.md": { - "atime": "2022-04-29T15:27:16.641Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_disabled.md": { - "atime": "2022-04-29T15:27:16.827Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_form.md": { - "atime": "2022-04-29T15:27:16.143Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_multiple.md": { - "atime": "2022-04-29T15:27:17.139Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_name.md": { - "atime": "2022-04-29T15:27:16.715Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_required.md": { - "atime": "2022-04-29T15:27:17.275Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/select_size.md": { - "atime": "2022-04-29T15:27:16.131Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/small.md": { - "atime": "2022-05-16T01:48:43.984Z", - "mtime": "2022-05-16T01:48:41.947Z", - "ctime": "2022-05-16T01:48:41.947Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/source.md": { - "atime": "2022-05-10T02:16:40.658Z", - "mtime": "2022-05-16T01:48:41.158Z", - "ctime": "2022-05-16T01:48:41.158Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/source_media.md": { - "atime": "2022-04-29T15:27:16.999Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/source_src.md": { - "atime": "2022-04-29T15:27:15.915Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/source_srcset.md": { - "atime": "2022-04-29T15:27:16.543Z", - "mtime": "2022-04-29T15:26:49.650Z", - "ctime": "2022-04-29T15:26:49.650Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/source_type.md": { - "atime": "2022-04-29T15:27:15.827Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/span.md": { - "atime": "2022-05-14T17:52:25.864Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/strike.md": { - "atime": "2022-05-14T17:52:32.033Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/strong.md": { - "atime": "2022-05-16T01:48:43.990Z", - "mtime": "2022-05-16T01:48:41.897Z", - "ctime": "2022-05-16T01:48:41.897Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/style.md": { - "atime": "2022-05-14T17:52:36.054Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/style_media.md": { - "atime": "2022-04-29T15:27:16.193Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/sub.md": { - "atime": "2022-05-16T01:48:44.344Z", - "mtime": "2022-05-16T01:48:41.985Z", - "ctime": "2022-05-16T01:48:41.985Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/style_type.md": { - "atime": "2022-04-29T15:27:16.166Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/summary.md": { - "atime": "2022-05-16T01:48:43.979Z", - "mtime": "2022-05-16T01:48:41.897Z", - "ctime": "2022-05-16T01:48:41.897Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/svg.md": { - "atime": "2022-05-16T01:48:43.993Z", - "mtime": "2022-05-16T01:48:41.897Z", - "ctime": "2022-05-16T01:48:41.897Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/sup.md": { - "atime": "2022-05-16T01:48:44.033Z", - "mtime": "2022-05-16T01:48:41.897Z", - "ctime": "2022-05-16T01:48:41.897Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/td.md": { - "atime": "2022-05-14T17:52:51.775Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/tbody.md": { - "atime": "2022-05-14T17:52:47.794Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/td_colspan.md": { - "atime": "2022-04-29T15:27:16.815Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/td_headers.md": { - "atime": "2022-04-29T15:27:17.143Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/td_rowspan.md": { - "atime": "2022-04-29T15:27:16.170Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/template.md": { - "atime": "2022-05-16T01:48:43.989Z", - "mtime": "2022-05-16T01:48:41.947Z", - "ctime": "2022-05-16T01:48:41.947Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/textarea_autofocus.md": { - "atime": "2022-04-29T15:27:16.625Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.550Z" - }, - "docs/tags/textarea.md": { - "atime": "2022-05-01T11:09:34.878Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/textarea_cols.md": { - "atime": "2022-04-29T15:27:16.051Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_dirname.md": { - "atime": "2022-04-29T15:27:16.441Z", - "mtime": "2022-04-29T15:26:49.621Z", - "ctime": "2022-04-29T15:26:49.621Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/table.md": { - "atime": "2022-05-01T10:44:37.575Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.342Z" - }, - "docs/tags/textarea_disabled.md": { - "atime": "2022-04-29T15:27:16.767Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_form.md": { - "atime": "2022-04-29T15:27:15.752Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_maxlength.md": { - "atime": "2022-04-29T15:27:16.980Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_name.md": { - "atime": "2022-04-29T15:27:15.983Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_placeholder.md": { - "atime": "2022-04-29T15:27:17.116Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_readonly.md": { - "atime": "2022-04-29T15:27:16.145Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_required.md": { - "atime": "2022-04-29T15:27:17.073Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_rows.md": { - "atime": "2022-04-29T15:27:15.909Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/tfoot.md": { - "atime": "2022-05-14T17:53:01.391Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/th.md": { - "atime": "2022-05-14T17:53:09.441Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/th_abbr.md": { - "atime": "2022-04-29T15:27:17.279Z", - "mtime": "2022-04-29T15:26:49.794Z", - "ctime": "2022-04-29T15:26:49.794Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/th_colspan.md": { - "atime": "2022-04-29T15:27:16.072Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/textarea_wrap.md": { - "atime": "2022-04-29T15:27:15.905Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/th_headers.md": { - "atime": "2022-04-29T15:27:15.937Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/th_rowspan.md": { - "atime": "2022-04-29T15:27:15.827Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/th_scope.md": { - "atime": "2022-04-29T15:27:15.716Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/thead.md": { - "atime": "2022-05-14T17:53:12.960Z", - "mtime": "2022-05-16T01:48:40.902Z", - "ctime": "2022-05-16T01:48:40.902Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/time_datetime.md": { - "atime": "2022-04-29T15:27:16.839Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/time.md": { - "atime": "2022-05-01T11:41:08.754Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/track_default.md": { - "atime": "2022-04-29T15:27:16.782Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/track.md": { - "atime": "2022-05-01T12:02:05.875Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/tr.md": { - "atime": "2022-05-16T01:48:43.990Z", - "mtime": "2022-05-16T01:48:41.984Z", - "ctime": "2022-05-16T01:48:41.984Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/track_label.md": { - "atime": "2022-04-29T15:27:17.025Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/track_kind.md": { - "atime": "2022-04-29T15:27:16.195Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/track_src.md": { - "atime": "2022-04-29T15:27:16.674Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/track_srclang.md": { - "atime": "2022-04-29T15:27:15.926Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.551Z" - }, - "docs/tags/u.md": { - "atime": "2022-05-14T17:53:27.087Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/tt.md": { - "atime": "2022-05-01T12:06:35.203Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/ul.md": { - "atime": "2022-05-01T12:53:01.320Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/var.md": { - "atime": "2022-05-16T01:48:43.981Z", - "mtime": "2022-05-16T01:48:41.918Z", - "ctime": "2022-05-16T01:48:41.918Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/video.md": { - "atime": "2022-05-29T10:18:17.135Z", - "mtime": "2022-05-29T10:18:16.995Z", - "ctime": "2022-05-29T10:18:16.995Z", - "birthtime": "2022-05-29T10:18:16.995Z" - }, - "docs/tags/video_autoplay.md": { - "atime": "2022-04-29T15:27:16.999Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_controls.md": { - "atime": "2022-04-29T15:27:16.717Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/title.md": { - "atime": "2022-05-01T11:45:05.747Z", - "mtime": "2022-05-16T01:48:40.901Z", - "ctime": "2022-05-16T01:48:40.901Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/tags/video_height.md": { - "atime": "2022-04-29T15:27:15.694Z", - "mtime": "2022-04-29T15:26:48.174Z", - "ctime": "2022-04-29T15:26:48.174Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_loop.md": { - "atime": "2022-04-29T15:27:16.123Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_muted.md": { - "atime": "2022-04-29T15:27:15.752Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_poster.md": { - "atime": "2022-04-29T15:27:15.950Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_preload.md": { - "atime": "2022-04-29T15:27:15.994Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_src.md": { - "atime": "2022-04-29T15:27:15.977Z", - "mtime": "2022-04-29T15:26:49.511Z", - "ctime": "2022-04-29T15:26:49.511Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/video_width.md": { - "atime": "2022-04-29T15:27:15.944Z", - "mtime": "2022-04-29T15:26:49.510Z", - "ctime": "2022-04-29T15:26:49.510Z", - "birthtime": "2022-04-25T13:38:12.552Z" - }, - "docs/tags/wbr.md": { - "atime": "2022-05-16T01:48:44.271Z", - "mtime": "2022-05-16T01:48:41.985Z", - "ctime": "2022-05-16T01:48:41.985Z", - "birthtime": "2022-04-24T07:43:17.343Z" - }, - "docs/attribute/global/class.md": { - "atime": "2022-05-09T04:15:35.196Z", - "mtime": "2022-05-09T04:15:33.807Z", - "ctime": "2022-05-09T04:15:33.807Z", - "birthtime": "2022-04-24T07:17:32.208Z" - }, - "docs/attribute/global/contenteditable.md": { - "atime": "2022-05-09T04:15:48.032Z", - "mtime": "2022-05-09T04:15:12.302Z", - "ctime": "2022-05-09T04:15:12.302Z", - "birthtime": "2022-04-24T07:17:32.208Z" - }, - "docs/attribute/global/data.md": { - "atime": "2022-05-09T04:14:19.360Z", - "mtime": "2022-05-09T04:14:19.006Z", - "ctime": "2022-05-09T04:14:19.006Z", - "birthtime": "2022-04-24T07:17:32.208Z" - }, - "docs/attribute/global/dir.md": { - "atime": "2022-05-09T04:14:12.953Z", - "mtime": "2022-05-09T04:14:12.543Z", - "ctime": "2022-05-09T04:14:12.543Z", - "birthtime": "2022-04-24T07:17:32.208Z" - }, - "docs/attribute/global/hidden.md": { - "atime": "2022-05-09T04:15:59.387Z", - "mtime": "2022-05-09T04:15:57.980Z", - "ctime": "2022-05-09T04:15:57.980Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/id.md": { - "atime": "2022-05-09T04:16:07.786Z", - "mtime": "2022-05-09T04:16:06.386Z", - "ctime": "2022-05-09T04:16:06.386Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/draggable.md": { - "atime": "2022-05-09T04:14:08.710Z", - "mtime": "2022-05-09T04:14:06.967Z", - "ctime": "2022-05-09T04:14:06.967Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/accesskey.md": { - "atime": "2022-05-09T04:15:49.048Z", - "mtime": "2022-05-09T04:15:48.065Z", - "ctime": "2022-05-09T04:15:48.065Z", - "birthtime": "2022-04-24T07:17:32.208Z" - }, - "docs/attribute/global/lang.md": { - "atime": "2022-05-09T04:16:11.991Z", - "mtime": "2022-05-09T04:16:10.712Z", - "ctime": "2022-05-09T04:16:10.712Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/spellcheck.md": { - "atime": "2022-05-29T10:18:17.221Z", - "mtime": "2022-05-29T10:18:16.994Z", - "ctime": "2022-05-29T10:18:16.994Z", - "birthtime": "2022-05-29T10:18:16.994Z" - }, - "docs/attribute/global/style.md": { - "atime": "2022-05-09T04:16:28.450Z", - "mtime": "2022-05-09T04:16:26.939Z", - "ctime": "2022-05-09T04:16:26.939Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/translate.md": { - "atime": "2022-05-09T04:16:51.546Z", - "mtime": "2022-05-09T04:16:49.501Z", - "ctime": "2022-05-09T04:16:49.501Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/title.md": { - "atime": "2022-05-09T04:16:47.303Z", - "mtime": "2022-05-09T04:16:45.637Z", - "ctime": "2022-05-09T04:16:45.637Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/global/tabindex.md": { - "atime": "2022-05-09T04:16:35.873Z", - "mtime": "2022-05-09T04:16:33.568Z", - "ctime": "2022-05-09T04:16:33.568Z", - "birthtime": "2022-04-24T07:17:32.209Z" - }, - "docs/attribute/accesskey.md": { - "atime": "2022-05-09T04:17:56.034Z", - "mtime": "2022-05-09T04:17:27.452Z", - "ctime": "2022-05-09T04:17:27.452Z", - "birthtime": "2022-04-24T09:03:44.747Z" - }, - "docs/attribute/action.md": { - "atime": "2022-05-09T04:18:02.998Z", - "mtime": "2022-05-09T04:18:01.373Z", - "ctime": "2022-05-09T04:18:01.373Z", - "birthtime": "2022-04-24T09:03:44.747Z" - }, - "docs/attribute/alt.md": { - "atime": "2022-05-09T04:18:11.196Z", - "mtime": "2022-05-09T04:18:09.559Z", - "ctime": "2022-05-09T04:18:09.559Z", - "birthtime": "2022-04-24T09:06:17.212Z" - }, - "docs/attribute/accept.md": { - "atime": "2022-05-29T10:18:16.992Z", - "mtime": "2022-05-29T10:18:16.982Z", - "ctime": "2022-05-29T10:18:16.982Z", - "birthtime": "2022-05-29T10:18:16.982Z" - }, - "docs/attribute/async.md": { - "atime": "2022-05-09T04:18:22.836Z", - "mtime": "2022-05-09T04:18:21.465Z", - "ctime": "2022-05-09T04:18:21.465Z", - "birthtime": "2022-04-24T09:06:17.212Z" - }, - "docs/attribute/autocomplete.md": { - "atime": "2022-05-09T04:18:30.954Z", - "mtime": "2022-05-09T04:18:30.520Z", - "ctime": "2022-05-09T04:18:30.520Z", - "birthtime": "2022-04-24T09:06:17.212Z" - }, - "docs/attribute/autofocus.md": { - "atime": "2022-05-09T04:18:46.017Z", - "mtime": "2022-05-09T04:18:44.392Z", - "ctime": "2022-05-09T04:18:44.392Z", - "birthtime": "2022-04-24T09:06:17.213Z" - }, - "docs/attribute/autoplay.md": { - "atime": "2022-05-09T04:18:53.159Z", - "mtime": "2022-05-09T04:18:51.458Z", - "ctime": "2022-05-09T04:18:51.458Z", - "birthtime": "2022-04-24T09:06:17.213Z" - }, - "docs/attribute/charset.md": { - "atime": "2022-05-09T04:19:00.870Z", - "mtime": "2022-05-09T04:18:59.216Z", - "ctime": "2022-05-09T04:18:59.216Z", - "birthtime": "2022-04-24T09:22:02.440Z" - }, - "docs/attribute/checked.md": { - "atime": "2022-05-09T04:19:07.280Z", - "mtime": "2022-05-09T04:19:05.612Z", - "ctime": "2022-05-09T04:19:05.612Z", - "birthtime": "2022-04-24T09:22:02.440Z" - }, - "docs/attribute/cite.md": { - "atime": "2022-05-09T04:19:18.953Z", - "mtime": "2022-05-09T04:19:17.692Z", - "ctime": "2022-05-09T04:19:17.692Z", - "birthtime": "2022-04-24T09:22:02.440Z" - }, - "docs/attribute/accept-charset.md": { - "atime": "2022-05-09T04:13:53.811Z", - "mtime": "2022-05-09T04:13:51.478Z", - "ctime": "2022-05-09T04:13:51.478Z", - "birthtime": "2022-04-24T09:03:44.746Z" - }, - "docs/attribute/class.md": { - "atime": "2022-05-09T04:19:34.108Z", - "mtime": "2022-05-09T04:19:33.707Z", - "ctime": "2022-05-09T04:19:33.707Z", - "birthtime": "2022-04-24T09:22:02.440Z" - }, - "docs/attribute/colspan.md": { - "atime": "2022-05-09T04:19:57.894Z", - "mtime": "2022-05-09T04:19:57.495Z", - "ctime": "2022-05-09T04:19:57.495Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/content.md": { - "atime": "2022-05-09T04:20:07.234Z", - "mtime": "2022-05-09T04:20:05.140Z", - "ctime": "2022-05-09T04:20:05.140Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/cols.md": { - "atime": "2022-05-09T04:19:39.056Z", - "mtime": "2022-05-09T04:19:38.603Z", - "ctime": "2022-05-09T04:19:38.603Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/contenteditable.md": { - "atime": "2022-05-09T04:20:13.197Z", - "mtime": "2022-05-09T04:20:12.785Z", - "ctime": "2022-05-09T04:20:12.785Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/controls.md": { - "atime": "2022-05-09T04:20:37.947Z", - "mtime": "2022-05-09T04:20:36.007Z", - "ctime": "2022-05-09T04:20:36.007Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/coords.md": { - "atime": "2022-05-09T04:20:42.872Z", - "mtime": "2022-05-09T04:20:41.776Z", - "ctime": "2022-05-09T04:20:41.776Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/data-.md": { - "atime": "2022-05-09T04:20:49.447Z", - "mtime": "2022-05-09T04:20:47.819Z", - "ctime": "2022-05-09T04:20:47.819Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/datetime.md": { - "atime": "2022-05-09T04:21:09.767Z", - "mtime": "2022-05-09T04:21:08.139Z", - "ctime": "2022-05-09T04:21:08.139Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/default.md": { - "atime": "2022-05-09T04:21:16.369Z", - "mtime": "2022-05-09T04:21:14.711Z", - "ctime": "2022-05-09T04:21:14.711Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/defer.md": { - "atime": "2022-05-09T04:21:27.327Z", - "mtime": "2022-05-09T04:21:24.893Z", - "ctime": "2022-05-09T04:21:24.893Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/data.md": { - "atime": "2022-05-09T04:20:54.836Z", - "mtime": "2022-05-09T04:20:53.537Z", - "ctime": "2022-05-09T04:20:53.537Z", - "birthtime": "2022-04-24T09:31:47.449Z" - }, - "docs/attribute/dir.md": { - "atime": "2022-05-09T04:21:53.060Z", - "mtime": "2022-05-09T04:21:52.629Z", - "ctime": "2022-05-09T04:21:52.629Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/dirname.md": { - "atime": "2022-05-09T04:22:01.276Z", - "mtime": "2022-05-09T04:21:59.596Z", - "ctime": "2022-05-09T04:21:59.596Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/disabled.md": { - "atime": "2022-05-09T04:22:11.241Z", - "mtime": "2022-05-09T04:22:10.838Z", - "ctime": "2022-05-09T04:22:10.838Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/draggable.md": { - "atime": "2022-05-09T04:22:35.840Z", - "mtime": "2022-05-09T04:22:34.480Z", - "ctime": "2022-05-09T04:22:34.480Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/enctype.md": { - "atime": "2022-05-09T04:22:40.906Z", - "mtime": "2022-05-09T04:22:40.498Z", - "ctime": "2022-05-09T04:22:40.498Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/for.md": { - "atime": "2022-05-09T04:22:50.797Z", - "mtime": "2022-05-09T04:22:48.442Z", - "ctime": "2022-05-09T04:22:48.442Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/download.md": { - "atime": "2022-05-09T04:22:30.170Z", - "mtime": "2022-05-09T04:22:28.701Z", - "ctime": "2022-05-09T04:22:28.701Z", - "birthtime": "2022-04-24T09:38:28.410Z" - }, - "docs/attribute/form.md": { - "atime": "2022-05-09T04:22:58.813Z", - "mtime": "2022-05-09T04:22:57.176Z", - "ctime": "2022-05-09T04:22:57.176Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/formaction.md": { - "atime": "2022-05-09T04:23:05.270Z", - "mtime": "2022-05-09T04:23:03.653Z", - "ctime": "2022-05-09T04:23:03.653Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/height.md": { - "atime": "2022-05-09T04:23:21.249Z", - "mtime": "2022-05-09T04:23:19.948Z", - "ctime": "2022-05-09T04:23:19.948Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/hidden.md": { - "atime": "2022-05-09T04:23:27.741Z", - "mtime": "2022-05-09T04:23:26.290Z", - "ctime": "2022-05-09T04:23:26.290Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/high.md": { - "atime": "2022-05-09T04:23:37.565Z", - "mtime": "2022-05-09T04:23:35.590Z", - "ctime": "2022-05-09T04:23:35.590Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/href.md": { - "atime": "2022-05-09T04:21:45.543Z", - "mtime": "2022-05-09T04:21:43.923Z", - "ctime": "2022-05-09T04:21:43.923Z", - "birthtime": "2022-04-24T09:44:53.578Z" - }, - "docs/attribute/hreflang.md": { - "atime": "2022-05-09T04:23:56.124Z", - "mtime": "2022-05-09T04:23:54.509Z", - "ctime": "2022-05-09T04:23:54.509Z", - "birthtime": "2022-04-24T09:44:53.578Z" - }, - "docs/attribute/http-equiv.md": { - "atime": "2022-05-09T04:24:13.726Z", - "mtime": "2022-05-09T04:24:12.439Z", - "ctime": "2022-05-09T04:24:12.439Z", - "birthtime": "2022-04-24T09:46:53.597Z" - }, - "docs/attribute/ismap.md": { - "atime": "2022-05-09T04:24:37.982Z", - "mtime": "2022-05-09T04:24:35.850Z", - "ctime": "2022-05-09T04:24:35.850Z", - "birthtime": "2022-04-24T09:54:54.964Z" - }, - "docs/attribute/id.md": { - "atime": "2022-05-09T04:24:22.507Z", - "mtime": "2022-05-09T04:24:20.865Z", - "ctime": "2022-05-09T04:24:20.865Z", - "birthtime": "2022-04-24T09:54:54.964Z" - }, - "docs/attribute/kind.md": { - "atime": "2022-05-09T04:24:43.089Z", - "mtime": "2022-05-09T04:24:42.675Z", - "ctime": "2022-05-09T04:24:42.675Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/label.md": { - "atime": "2022-05-09T04:24:57.581Z", - "mtime": "2022-05-09T04:24:56.215Z", - "ctime": "2022-05-09T04:24:56.215Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/lang.md": { - "atime": "2022-05-09T04:25:19.615Z", - "mtime": "2022-05-09T04:25:18.139Z", - "ctime": "2022-05-09T04:25:18.139Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/list.md": { - "atime": "2022-05-09T04:25:31.457Z", - "mtime": "2022-05-09T04:25:29.149Z", - "ctime": "2022-05-09T04:25:29.149Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/headers.md": { - "atime": "2022-05-09T04:23:12.498Z", - "mtime": "2022-05-09T04:23:11.235Z", - "ctime": "2022-05-09T04:23:11.235Z", - "birthtime": "2022-04-24T09:44:53.577Z" - }, - "docs/attribute/loop.md": { - "atime": "2022-05-09T04:25:39.146Z", - "mtime": "2022-05-09T04:25:36.778Z", - "ctime": "2022-05-09T04:25:36.778Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/low.md": { - "atime": "2022-05-09T04:25:44.035Z", - "mtime": "2022-05-09T04:25:43.627Z", - "ctime": "2022-05-09T04:25:43.627Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/max.md": { - "atime": "2022-05-09T04:26:05.583Z", - "mtime": "2022-05-09T04:26:04.055Z", - "ctime": "2022-05-09T04:26:04.055Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/media.md": { - "atime": "2022-05-09T04:26:43.890Z", - "mtime": "2022-05-09T04:26:41.750Z", - "ctime": "2022-05-09T04:26:41.750Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/method.md": { - "atime": "2022-05-09T04:26:52.666Z", - "mtime": "2022-05-09T04:26:50.325Z", - "ctime": "2022-05-09T04:26:50.325Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/min.md": { - "atime": "2022-05-09T04:27:02.065Z", - "mtime": "2022-05-09T04:27:01.651Z", - "ctime": "2022-05-09T04:27:01.651Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/maxlength.md": { - "atime": "2022-05-09T04:26:19.653Z", - "mtime": "2022-05-09T04:26:17.706Z", - "ctime": "2022-05-09T04:26:17.706Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/multiple.md": { - "atime": "2022-05-09T04:27:11.410Z", - "mtime": "2022-05-09T04:27:09.710Z", - "ctime": "2022-05-09T04:27:09.710Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/name.md": { - "atime": "2022-05-09T04:27:34.491Z", - "mtime": "2022-05-09T04:27:32.147Z", - "ctime": "2022-05-09T04:27:32.147Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/muted.md": { - "atime": "2022-05-09T04:27:16.881Z", - "mtime": "2022-05-09T04:27:15.247Z", - "ctime": "2022-05-09T04:27:15.247Z", - "birthtime": "2022-04-24T09:54:54.965Z" - }, - "docs/attribute/novalidate.md": { - "atime": "2022-05-09T04:27:42.463Z", - "mtime": "2022-05-09T04:27:39.626Z", - "ctime": "2022-05-09T04:27:39.626Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/onabort.md": { - "atime": "2022-05-10T06:05:06.946Z", - "mtime": "2022-05-10T06:05:04.829Z", - "ctime": "2022-05-10T06:05:04.829Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/onafterprint.md": { - "atime": "2022-05-09T04:28:08.939Z", - "mtime": "2022-05-09T04:28:06.551Z", - "ctime": "2022-05-09T04:28:06.551Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/onbeforeprint.md": { - "atime": "2022-05-29T10:18:17.134Z", - "mtime": "2022-05-29T10:18:16.994Z", - "ctime": "2022-05-29T10:18:16.994Z", - "birthtime": "2022-05-29T10:18:16.994Z" - }, - "docs/attribute/onblur.md": { - "atime": "2022-06-26T13:21:00.627Z", - "mtime": "2022-06-26T13:21:00.595Z", - "ctime": "2022-06-26T13:21:00.595Z", - "birthtime": "2022-05-29T10:18:16.994Z" - }, - "docs/attribute/oncanplay.md": { - "atime": "2022-06-26T13:20:57.577Z", - "mtime": "2022-06-26T13:20:57.466Z", - "ctime": "2022-06-26T13:20:57.466Z", - "birthtime": "2022-05-29T10:18:16.994Z" - }, - "docs/attribute/onbeforeunload.md": { - "atime": "2022-06-26T13:21:03.622Z", - "mtime": "2022-06-26T13:21:03.600Z", - "ctime": "2022-06-26T13:21:03.600Z", - "birthtime": "2022-05-29T10:18:16.994Z" - }, - "docs/attribute/oncanplaythrough.md": { - "atime": "2022-06-26T13:20:52.624Z", - "mtime": "2022-06-26T13:20:52.552Z", - "ctime": "2022-06-26T13:20:52.552Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/onchange.md": { - "atime": "2022-06-26T04:02:01.830Z", - "mtime": "2022-06-26T13:20:49.112Z", - "ctime": "2022-06-26T13:20:49.112Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/onclick.md": { - "atime": "2022-06-26T13:20:45.543Z", - "mtime": "2022-06-26T13:20:45.512Z", - "ctime": "2022-06-26T13:20:45.512Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/oncontextmenu.md": { - "atime": "2022-06-26T13:20:41.026Z", - "mtime": "2022-06-26T13:20:41.275Z", - "ctime": "2022-06-26T13:20:41.275Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/oncopy.md": { - "atime": "2022-06-26T13:21:52.664Z", - "mtime": "2022-06-26T13:21:52.666Z", - "ctime": "2022-06-26T13:21:52.666Z", - "birthtime": "2022-04-24T09:54:54.966Z" - }, - "docs/attribute/oncuechange.md": { - "atime": "2022-06-26T13:20:32.215Z", - "mtime": "2022-06-26T13:20:32.149Z", - "ctime": "2022-06-26T13:20:32.149Z", - "birthtime": "2022-04-24T09:54:54.967Z" - }, - "docs/attribute/oncut.md": { - "atime": "2022-06-26T13:23:12.688Z", - "mtime": "2022-06-26T13:23:12.759Z", - "ctime": "2022-06-26T13:23:12.759Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondblclick.md": { - "atime": "2022-06-26T13:31:00.205Z", - "mtime": "2022-06-26T13:31:00.629Z", - "ctime": "2022-06-26T13:31:00.629Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondrag.md": { - "atime": "2022-06-26T13:42:11.126Z", - "mtime": "2022-06-26T13:42:11.065Z", - "ctime": "2022-06-26T13:42:11.065Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondragend.md": { - "atime": "2022-04-29T15:27:16.707Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondragenter.md": { - "atime": "2022-04-29T15:27:16.900Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondragleave.md": { - "atime": "2022-04-29T15:27:17.062Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondragover.md": { - "atime": "2022-04-29T15:27:16.817Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondragstart.md": { - "atime": "2022-04-29T15:27:16.385Z", - "mtime": "2022-04-29T15:26:49.623Z", - "ctime": "2022-04-29T15:26:49.623Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondrop.md": { - "atime": "2022-04-29T15:27:17.031Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/ondurationchange.md": { - "atime": "2022-04-29T15:27:16.564Z", - "mtime": "2022-04-29T15:26:49.650Z", - "ctime": "2022-04-29T15:26:49.650Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/onemptied.md": { - "atime": "2022-04-29T15:27:16.488Z", - "mtime": "2022-04-29T15:26:49.621Z", - "ctime": "2022-04-29T15:26:49.621Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/onended.md": { - "atime": "2022-04-29T15:27:16.617Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/onerror.md": { - "atime": "2022-04-29T15:27:16.633Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/onhashchange.md": { - "atime": "2022-04-29T15:27:16.561Z", - "mtime": "2022-04-29T15:26:49.650Z", - "ctime": "2022-04-29T15:26:49.650Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/onfocus.md": { - "atime": "2022-04-29T15:27:17.055Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.250Z" - }, - "docs/attribute/oninput.md": { - "atime": "2022-04-29T15:27:17.249Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/oninvalid.md": { - "atime": "2022-04-29T15:27:17.337Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onkeydown.md": { - "atime": "2022-04-29T15:27:16.829Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onkeypress.md": { - "atime": "2022-04-29T15:27:17.073Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onkeyup.md": { - "atime": "2022-04-29T15:27:17.309Z", - "mtime": "2022-04-29T15:26:49.794Z", - "ctime": "2022-04-29T15:26:49.794Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onload.md": { - "atime": "2022-04-29T15:27:16.805Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onloadeddata.md": { - "atime": "2022-04-29T15:27:16.347Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onloadedmetadata.md": { - "atime": "2022-04-29T15:27:17.095Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onloadstart.md": { - "atime": "2022-04-29T15:27:17.016Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmousedown.md": { - "atime": "2022-04-29T15:27:17.139Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmousemove.md": { - "atime": "2022-04-29T15:27:16.490Z", - "mtime": "2022-04-29T15:26:49.621Z", - "ctime": "2022-04-29T15:26:49.621Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmouseout.md": { - "atime": "2022-04-29T15:27:16.956Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmouseover.md": { - "atime": "2022-04-29T15:27:17.163Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmouseup.md": { - "atime": "2022-04-29T15:27:17.128Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onmousewheel.md": { - "atime": "2022-04-29T15:27:16.664Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.251Z" - }, - "docs/attribute/onoffline.md": { - "atime": "2022-04-29T15:27:17.096Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T09:57:42.252Z" - }, - "docs/attribute/ononline.md": { - "atime": "2022-04-29T15:27:16.643Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T09:57:42.252Z" - }, - "docs/attribute/onpageshow.md": { - "atime": "2022-04-29T15:27:17.269Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:02:27.105Z" - }, - "docs/attribute/onpaste.md": { - "atime": "2022-04-29T15:27:16.847Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:02:27.105Z" - }, - "docs/attribute/onpause.md": { - "atime": "2022-04-29T15:27:17.260Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:02:27.105Z" - }, - "docs/attribute/onplay.md": { - "atime": "2022-04-29T15:27:16.304Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:02:27.105Z" - }, - "docs/attribute/onplaying.md": { - "atime": "2022-04-29T15:27:16.546Z", - "mtime": "2022-04-29T15:26:49.650Z", - "ctime": "2022-04-29T15:26:49.650Z", - "birthtime": "2022-04-24T10:02:27.106Z" - }, - "docs/attribute/onprogress.md": { - "atime": "2022-04-29T15:27:16.233Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onratechange.md": { - "atime": "2022-04-29T15:27:16.587Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onreset.md": { - "atime": "2022-04-29T15:27:16.254Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onscroll.md": { - "atime": "2022-04-29T15:27:16.755Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onsearch.md": { - "atime": "2022-04-29T15:27:17.176Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onresize.md": { - "atime": "2022-04-29T15:27:16.975Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onseeked.md": { - "atime": "2022-04-29T15:27:15.763Z", - "mtime": "2022-04-29T15:26:48.214Z", - "ctime": "2022-04-29T15:26:48.214Z", - "birthtime": "2022-04-24T10:04:42.115Z" - }, - "docs/attribute/onselect.md": { - "atime": "2022-04-29T15:27:17.339Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-24T10:04:42.116Z" - }, - "docs/attribute/onseeking.md": { - "atime": "2022-04-29T15:27:16.258Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:04:42.116Z" - }, - "docs/attribute/onstalled.md": { - "atime": "2022-04-29T15:27:16.576Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:04:42.116Z" - }, - "docs/attribute/onsuspend.md": { - "atime": "2022-04-29T15:27:16.314Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/ontimeupdate.md": { - "atime": "2022-04-29T15:27:17.054Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/ontoggle.md": { - "atime": "2022-04-29T15:27:16.410Z", - "mtime": "2022-04-29T15:26:49.623Z", - "ctime": "2022-04-29T15:26:49.623Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/onunload.md": { - "atime": "2022-04-29T15:27:16.576Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/onsubmit.md": { - "atime": "2022-04-29T15:27:16.338Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/onwaiting.md": { - "atime": "2022-04-29T15:27:16.469Z", - "mtime": "2022-04-29T15:26:49.621Z", - "ctime": "2022-04-29T15:26:49.621Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/onwheel.md": { - "atime": "2022-04-29T15:27:17.098Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/open.md": { - "atime": "2022-04-29T15:27:17.339Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/optimum.md": { - "atime": "2022-04-29T15:27:16.997Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/pattern.md": { - "atime": "2022-04-29T15:27:16.412Z", - "mtime": "2022-04-29T15:26:49.623Z", - "ctime": "2022-04-29T15:26:49.623Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/placeholder.md": { - "atime": "2022-04-29T15:27:16.576Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/poster.md": { - "atime": "2022-04-29T15:27:17.159Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/preload.md": { - "atime": "2022-04-29T15:27:16.275Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/readonly.md": { - "atime": "2022-04-29T15:27:16.716Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/required.md": { - "atime": "2022-04-29T15:27:16.243Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/rel.md": { - "atime": "2022-04-29T15:27:17.055Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/reversed.md": { - "atime": "2022-04-29T15:27:17.084Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/rows.md": { - "atime": "2022-04-29T15:27:16.815Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/rowspan.md": { - "atime": "2022-04-29T15:27:17.333Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/sandbox.md": { - "atime": "2022-04-29T15:27:17.128Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/scope.md": { - "atime": "2022-04-29T15:27:17.090Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/selected.md": { - "atime": "2022-04-29T15:27:16.699Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/shape.md": { - "atime": "2022-04-29T15:27:17.287Z", - "mtime": "2022-04-29T15:26:49.794Z", - "ctime": "2022-04-29T15:26:49.794Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/size.md": { - "atime": "2022-04-29T15:27:16.346Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/sizes.md": { - "atime": "2022-04-29T15:27:16.339Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/onvolumechange.md": { - "atime": "2022-04-29T15:27:16.970Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.545Z" - }, - "docs/attribute/spellcheck.md": { - "atime": "2022-04-29T15:27:16.223Z", - "mtime": "2022-04-29T15:26:49.512Z", - "ctime": "2022-04-29T15:26:49.512Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/src.md": { - "atime": "2022-04-29T15:27:17.259Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/srcdoc.md": { - "atime": "2022-04-29T15:27:16.311Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/srclang.md": { - "atime": "2022-04-29T15:27:16.344Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/srcset.md": { - "atime": "2022-04-29T15:27:16.651Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/start.md": { - "atime": "2022-04-29T15:27:16.431Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/step.md": { - "atime": "2022-04-29T15:27:17.137Z", - "mtime": "2022-04-29T15:26:49.653Z", - "ctime": "2022-04-29T15:26:49.653Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/style.md": { - "atime": "2022-04-29T15:27:16.589Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/tabindex.md": { - "atime": "2022-04-29T15:27:16.987Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/span.md": { - "atime": "2022-04-29T15:27:17.045Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.546Z" - }, - "docs/attribute/target.md": { - "atime": "2022-04-29T15:27:15.711Z", - "mtime": "2022-04-29T15:26:48.233Z", - "ctime": "2022-04-29T15:26:48.233Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/title.md": { - "atime": "2022-04-29T15:27:17.005Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/translate.md": { - "atime": "2022-04-29T15:27:16.531Z", - "mtime": "2022-04-29T15:26:49.651Z", - "ctime": "2022-04-29T15:26:49.651Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/type.md": { - "atime": "2022-04-29T15:27:16.307Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/usemap.md": { - "atime": "2022-04-29T15:27:16.254Z", - "mtime": "2022-04-29T15:26:49.513Z", - "ctime": "2022-04-29T15:26:49.513Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/value.md": { - "atime": "2022-04-29T15:27:16.963Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/wrap.md": { - "atime": "2022-04-29T15:27:16.804Z", - "mtime": "2022-04-29T15:26:49.652Z", - "ctime": "2022-04-29T15:26:49.652Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/attribute/width.md": { - "atime": "2022-04-29T15:27:17.367Z", - "mtime": "2022-04-29T15:26:49.814Z", - "ctime": "2022-04-29T15:26:49.814Z", - "birthtime": "2022-04-24T10:12:36.547Z" - }, - "docs/reference/av/method/addtexttrack.md": { - "atime": "2022-05-09T07:29:51.856Z", - "mtime": "2022-05-09T07:29:51.511Z", - "ctime": "2022-05-09T07:29:51.511Z", - "birthtime": "2022-04-25T14:20:49.906Z" - }, - "docs/reference/av/method/canplaytype.md": { - "atime": "2022-05-09T07:39:47.570Z", - "mtime": "2022-05-09T07:39:45.653Z", - "ctime": "2022-05-09T07:39:45.653Z", - "birthtime": "2022-04-25T14:20:49.906Z" - }, - "docs/reference/av/method/load.md": { - "atime": "2022-05-09T08:37:55.759Z", - "mtime": "2022-05-09T08:36:50.414Z", - "ctime": "2022-05-09T08:36:50.414Z", - "birthtime": "2022-04-25T14:20:49.906Z" - }, - "docs/reference/av/method/pause.md": { - "atime": "2022-05-09T08:22:31.441Z", - "mtime": "2022-05-09T08:22:11.292Z", - "ctime": "2022-05-09T08:22:11.292Z", - "birthtime": "2022-04-25T14:20:49.906Z" - }, - "docs/reference/av/method/play.md": { - "atime": "2022-05-09T08:19:32.169Z", - "mtime": "2022-05-09T08:17:29.402Z", - "ctime": "2022-05-09T08:17:29.402Z", - "birthtime": "2022-04-25T14:20:49.906Z" - }, - "docs/reference/av/property/autoplay.md": { - "atime": "2022-05-09T08:48:34.324Z", - "mtime": "2022-05-09T08:48:32.857Z", - "ctime": "2022-05-09T08:48:32.857Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/audiotracks.md": { - "atime": "2022-05-09T08:40:59.120Z", - "mtime": "2022-05-09T08:37:56.940Z", - "ctime": "2022-05-09T08:37:56.940Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/buffered.md": { - "atime": "2022-05-09T09:13:05.719Z", - "mtime": "2022-05-09T09:13:03.993Z", - "ctime": "2022-05-09T09:13:03.993Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/controls.md": { - "atime": "2022-05-09T10:30:17.411Z", - "mtime": "2022-05-09T10:29:38.901Z", - "ctime": "2022-05-09T10:29:38.901Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/controller.md": { - "atime": "2022-05-09T09:21:15.927Z", - "mtime": "2022-05-09T09:21:15.553Z", - "ctime": "2022-05-09T09:21:15.553Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/currentsrc.md": { - "atime": "2022-05-09T10:36:46.729Z", - "mtime": "2022-05-09T10:36:15.212Z", - "ctime": "2022-05-09T10:36:15.212Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/currenttime.md": { - "atime": "2022-05-09T10:58:23.112Z", - "mtime": "2022-05-09T10:48:01.221Z", - "ctime": "2022-05-09T10:48:01.221Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/defaultmuted.md": { - "atime": "2022-05-09T11:06:05.777Z", - "mtime": "2022-05-09T11:06:04.485Z", - "ctime": "2022-05-09T11:06:04.485Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/duration.md": { - "atime": "2022-05-09T11:15:34.971Z", - "mtime": "2022-05-09T11:15:33.521Z", - "ctime": "2022-05-09T11:15:33.521Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/ended.md": { - "atime": "2022-05-09T11:20:18.457Z", - "mtime": "2022-05-09T11:19:06.624Z", - "ctime": "2022-05-09T11:19:06.624Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/error.md": { - "atime": "2022-05-09T11:29:19.270Z", - "mtime": "2022-05-09T11:28:06.270Z", - "ctime": "2022-05-09T11:28:06.270Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/defaultplaybackrate.md": { - "atime": "2022-05-09T11:25:17.256Z", - "mtime": "2022-05-09T11:15:37.031Z", - "ctime": "2022-05-09T11:15:37.031Z", - "birthtime": "2022-04-25T14:21:51.513Z" - }, - "docs/reference/av/property/mediagroup.md": { - "atime": "2022-05-09T11:47:36.082Z", - "mtime": "2022-05-09T11:47:34.653Z", - "ctime": "2022-05-09T11:47:34.653Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/muted.md": { - "atime": "2022-05-09T12:12:18.218Z", - "mtime": "2022-05-09T12:07:47.697Z", - "ctime": "2022-05-09T12:07:47.697Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/networkstate.md": { - "atime": "2022-05-09T12:05:23.663Z", - "mtime": "2022-05-09T12:05:22.360Z", - "ctime": "2022-05-09T12:05:22.360Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/paused.md": { - "atime": "2022-05-09T12:08:01.341Z", - "mtime": "2022-05-09T12:07:59.991Z", - "ctime": "2022-05-09T12:07:59.991Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/playbackrate.md": { - "atime": "2022-05-09T13:34:07.240Z", - "mtime": "2022-05-09T12:51:49.757Z", - "ctime": "2022-05-09T12:51:49.757Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/played.md": { - "atime": "2022-05-09T12:58:43.352Z", - "mtime": "2022-05-09T12:49:32.490Z", - "ctime": "2022-05-09T12:49:32.490Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/preload.md": { - "atime": "2022-05-09T12:50:26.187Z", - "mtime": "2022-05-09T12:44:34.268Z", - "ctime": "2022-05-09T12:44:34.268Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/readystate.md": { - "atime": "2022-05-09T12:52:22.825Z", - "mtime": "2022-05-09T12:52:22.245Z", - "ctime": "2022-05-09T12:52:22.245Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/seekable.md": { - "atime": "2022-05-09T13:14:54.673Z", - "mtime": "2022-05-09T12:58:47.403Z", - "ctime": "2022-05-09T12:58:47.403Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/seeking.md": { - "atime": "2022-05-09T13:20:01.810Z", - "mtime": "2022-05-09T13:18:49.929Z", - "ctime": "2022-05-09T13:18:49.929Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/loop.md": { - "atime": "2022-05-09T11:38:49.205Z", - "mtime": "2022-05-09T11:37:58.265Z", - "ctime": "2022-05-09T11:37:58.265Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/src.md": { - "atime": "2022-05-09T13:31:32.165Z", - "mtime": "2022-05-09T13:30:10.073Z", - "ctime": "2022-05-09T13:30:10.073Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/startdate.md": { - "atime": "2022-05-09T13:35:02.168Z", - "mtime": "2022-05-09T13:34:38.733Z", - "ctime": "2022-05-09T13:34:38.733Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/videotracks.md": { - "atime": "2022-05-09T13:51:08.452Z", - "mtime": "2022-05-09T13:51:06.153Z", - "ctime": "2022-05-09T13:51:06.153Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/volume.md": { - "atime": "2022-05-09T14:19:20.481Z", - "mtime": "2022-05-09T14:19:08.190Z", - "ctime": "2022-05-09T14:19:08.190Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/property/texttracks.md": { - "atime": "2022-05-09T13:43:06.285Z", - "mtime": "2022-05-09T13:43:04.474Z", - "ctime": "2022-05-09T13:43:04.474Z", - "birthtime": "2022-04-25T14:21:51.514Z" - }, - "docs/reference/av/event/abort.md": { - "atime": "2022-05-09T16:28:02.223Z", - "mtime": "2022-05-09T16:28:00.950Z", - "ctime": "2022-05-09T16:28:00.950Z", - "birthtime": "2022-04-25T14:22:49.225Z" - }, - "docs/reference/av/event/canplay.md": { - "atime": "2022-05-09T16:31:01.508Z", - "mtime": "2022-05-09T16:26:52.757Z", - "ctime": "2022-05-09T16:26:52.757Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/canplaythrough.md": { - "atime": "2022-05-09T16:33:00.533Z", - "mtime": "2022-05-09T16:27:38.353Z", - "ctime": "2022-05-09T16:27:38.353Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/durationchange.md": { - "atime": "2022-05-09T18:56:18.093Z", - "mtime": "2022-05-09T18:56:16.164Z", - "ctime": "2022-05-09T18:56:16.164Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/ended.md": { - "atime": "2022-05-09T18:56:12.558Z", - "mtime": "2022-05-09T18:56:11.217Z", - "ctime": "2022-05-09T18:56:11.217Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/error.md": { - "atime": "2022-05-09T18:56:06.845Z", - "mtime": "2022-05-09T18:56:06.334Z", - "ctime": "2022-05-09T18:56:06.334Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/loadeddata.md": { - "atime": "2022-05-09T18:56:01.711Z", - "mtime": "2022-05-09T18:56:01.364Z", - "ctime": "2022-05-09T18:56:01.364Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/loadedmetadata.md": { - "atime": "2022-05-09T18:55:59.172Z", - "mtime": "2022-05-09T18:55:57.787Z", - "ctime": "2022-05-09T18:55:57.787Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/loadstart.md": { - "atime": "2022-05-09T18:55:53.651Z", - "mtime": "2022-05-09T18:55:53.292Z", - "ctime": "2022-05-09T18:55:53.292Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/pause.md": { - "atime": "2022-05-09T18:55:51.399Z", - "mtime": "2022-05-09T18:55:49.414Z", - "ctime": "2022-05-09T18:55:49.414Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/play.md": { - "atime": "2022-05-09T18:55:44.236Z", - "mtime": "2022-05-09T18:55:43.836Z", - "ctime": "2022-05-09T18:55:43.836Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/playing.md": { - "atime": "2022-05-09T18:55:39.664Z", - "mtime": "2022-05-09T18:55:37.339Z", - "ctime": "2022-05-09T18:55:37.339Z", - "birthtime": "2022-04-25T14:22:49.226Z" - }, - "docs/reference/av/event/progress.md": { - "atime": "2022-05-09T18:55:33.491Z", - "mtime": "2022-05-09T18:55:33.124Z", - "ctime": "2022-05-09T18:55:33.124Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/ratechange.md": { - "atime": "2022-05-09T18:55:28.347Z", - "mtime": "2022-05-09T18:55:27.961Z", - "ctime": "2022-05-09T18:55:27.961Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/seeked.md": { - "atime": "2022-05-09T18:55:11.610Z", - "mtime": "2022-05-09T18:55:10.288Z", - "ctime": "2022-05-09T18:55:10.288Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/seeking.md": { - "atime": "2022-05-09T18:55:17.030Z", - "mtime": "2022-05-09T18:55:16.655Z", - "ctime": "2022-05-09T18:55:16.655Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/stalled.md": { - "atime": "2022-05-09T18:56:10.113Z", - "mtime": "2022-05-09T18:55:05.443Z", - "ctime": "2022-05-09T18:55:05.443Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/suspend.md": { - "atime": "2022-05-09T19:00:40.643Z", - "mtime": "2022-05-09T18:59:44.604Z", - "ctime": "2022-05-09T18:59:44.604Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/timeupdate.md": { - "atime": "2022-05-09T19:13:40.614Z", - "mtime": "2022-05-09T19:13:03.356Z", - "ctime": "2022-05-09T19:13:03.356Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/volumechange.md": { - "atime": "2022-05-09T19:21:39.919Z", - "mtime": "2022-05-09T19:20:41.891Z", - "ctime": "2022-05-09T19:20:41.891Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/av/event/waiting.md": { - "atime": "2022-05-09T19:25:40.015Z", - "mtime": "2022-05-09T19:25:10.186Z", - "ctime": "2022-05-09T19:25:10.186Z", - "birthtime": "2022-04-25T14:22:49.227Z" - }, - "docs/reference/attributes.md": { - "atime": "2022-05-12T18:35:21.580Z", - "mtime": "2022-05-12T18:35:21.097Z", - "ctime": "2022-05-12T18:35:21.097Z", - "birthtime": "2022-04-24T06:04:05.851Z" - }, - "docs/reference/av_dom.md": { - "atime": "2022-05-04T15:41:14.368Z", - "mtime": "2022-05-04T15:41:12.422Z", - "ctime": "2022-05-04T15:41:12.422Z", - "birthtime": "2022-04-24T07:07:33.604Z" - }, - "docs/reference/browsersupport.md": { - "atime": "2022-05-04T15:49:08.393Z", - "mtime": "2022-05-04T15:38:28.071Z", - "ctime": "2022-05-04T15:38:28.071Z", - "birthtime": "2022-04-24T08:08:45.069Z" - }, - "docs/reference/byfunc.md": { - "atime": "2022-05-14T17:44:28.109Z", - "mtime": "2022-05-14T17:44:28.012Z", - "ctime": "2022-05-14T17:44:28.012Z", - "birthtime": "2022-04-25T01:33:06.545Z" - }, - "docs/reference/canvas.md": { - "atime": "2022-05-04T15:40:53.738Z", - "mtime": "2022-05-04T15:40:51.880Z", - "ctime": "2022-05-04T15:40:51.880Z", - "birthtime": "2022-04-24T07:29:36.030Z" - }, - "docs/reference/charactersets.md": { - "atime": "2022-05-04T15:41:34.782Z", - "mtime": "2022-05-04T15:41:32.648Z", - "ctime": "2022-05-04T15:41:32.648Z", - "birthtime": "2022-04-24T11:34:14.466Z" - }, - "docs/reference/charactersets_entities.md": { - "atime": "2022-05-04T15:49:08.402Z", - "mtime": "2022-05-04T15:44:26.462Z", - "ctime": "2022-05-04T15:44:26.462Z", - "birthtime": "2022-04-28T08:25:23.321Z" - }, - "docs/reference/country_codes.md": { - "atime": "2022-05-04T15:46:29.668Z", - "mtime": "2022-05-04T15:46:28.282Z", - "ctime": "2022-05-04T15:46:28.282Z", - "birthtime": "2022-04-24T11:53:49.346Z" - }, - "docs/reference/colornames.md": { - "atime": "2022-05-04T15:40:07.293Z", - "mtime": "2022-05-04T15:40:05.021Z", - "ctime": "2022-05-04T15:40:05.021Z", - "birthtime": "2022-04-24T07:30:49.244Z" - }, - "docs/reference/dtd.md": { - "atime": "2022-05-04T15:44:37.521Z", - "mtime": "2022-05-04T15:44:36.073Z", - "ctime": "2022-05-04T15:44:36.073Z", - "birthtime": "2022-04-24T05:12:50.605Z" - }, - "docs/reference/eventattributes.md": { - "atime": "2022-05-12T18:32:49.545Z", - "mtime": "2022-05-12T18:32:48.156Z", - "ctime": "2022-05-12T18:32:48.156Z", - "birthtime": "2022-04-24T05:43:22.597Z" - }, - "docs/reference/httpmessages.md": { - "atime": "2022-04-24T15:25:30.927Z", - "mtime": "2022-04-24T15:25:29.530Z", - "ctime": "2022-04-24T15:25:29.530Z", - "birthtime": "2022-04-24T14:54:14.361Z" - }, - "docs/reference/language_codes.md": { - "atime": "2022-05-14T17:44:37.075Z", - "mtime": "2022-05-14T17:44:37.522Z", - "ctime": "2022-05-14T17:44:37.522Z", - "birthtime": "2022-04-24T11:49:57.412Z" - }, - "docs/reference/standardattributes.md": { - "atime": "2022-05-04T15:38:52.313Z", - "mtime": "2022-05-04T15:38:50.209Z", - "ctime": "2022-05-04T15:38:50.209Z", - "birthtime": "2022-04-24T05:36:54.042Z" - }, - "docs/reference/urlencode.md": { - "atime": "2022-05-10T13:56:42.169Z", - "mtime": "2022-05-10T13:56:40.065Z", - "ctime": "2022-05-10T13:56:40.065Z", - "birthtime": "2022-04-24T11:41:06.545Z" - }, - "docs/reference/keyboardshortcuts.md": { - "atime": "2022-05-04T15:46:02.784Z", - "mtime": "2022-05-04T15:46:00.768Z", - "ctime": "2022-05-04T15:46:00.768Z", - "birthtime": "2022-04-24T12:15:36.180Z" - }, - "README.md": { - "atime": "2022-05-29T16:21:13.588Z", - "mtime": "2022-05-29T16:21:13.555Z", - "ctime": "2022-05-29T16:21:13.555Z", - "birthtime": "2022-04-24T04:53:22.229Z" - } -} \ No newline at end of file diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/CONTRIBUTORS.svg b/CONTRIBUTORS.svg new file mode 100644 index 000000000..3347040b3 --- /dev/null +++ b/CONTRIBUTORS.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index b740ca1e1..000000000 --- a/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -# https://lipanski.com/posts/smallest-docker-image-static-website -# https://github.com/lipanski/docker-static-website -FROM lipanski/docker-static-website:latest - -# Copy the static website -# Use the .dockerignore file to control what ends up inside the image! -COPY ./dist . \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 14c658f9e..000000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 小弟调调™ - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index f03540ecb..000000000 --- a/README.md +++ /dev/null @@ -1,144 +0,0 @@ -HTML Tutorial -=== - -[![Buy me a coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee)](https://jaywcjlove.github.io/#/sponsor) -[![GitHub Repo Stars](https://img.shields.io/github/stars/jaywcjlove/html-tutorial)]() -[![Docker Image Version (latest by date)](https://img.shields.io/docker/v/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) -[![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) -[![Docker Pulls](https://img.shields.io/docker/pulls/wcjiang/html-tutorial?logo=docker)](https://hub.docker.com/r/wcjiang/html-tutorial) - -HTML(超文本标记语言——HyperText Markup Language)是构成 Web 世界的一砖一瓦。它定义了网页内容的含义和结构。除 HTML 以外的其它技术则通常用来描述一个网页的表现与展示效果(如 CSS),或功能与行为(如 JavaScript)。 - -“超文本”(hypertext)是指连接单个网站内或多个网站间的网页的链接。链接是网络的一个基本方面。只要将内容上传到互联网,并将其与他人创建的页面相链接,你就成为了万维网的积极参与者。 - -HTML 使用“标签”(markup)来注明文本、图片和其他内容,以便于在 Web 浏览器中显示。 - -HTML 元素通过“标签”(tag)将文本从文档中引出,标签由在 `<` 和 `>` 中包裹的元素名组成,HTML 标签里的元素名不区分大小写。也就是说,它们可以用大写,小写或混合形式书写。例如,`` 标签可以写成 `<Title>`,`<TITLE>` 或以任何其他方式。 - -```html -<title>标题 -标题 -``` - -```bash - ╭┈┈┈┈┈┈┈┈┈┈┈╮ - ┆ Element ┆ - ╰┈┈┈┈┈┬┈┈┈┈┈╯ - ▼ - ╭┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┴┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈╮ - 开始标签 文本内容 结束标签 - ▼ ╰┈┈┈┈┬┈┈┈┈╯ ▼ -╭┈┈┈┈┴┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┴┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┴┈┈┈┈╮ -┆
this my content
┆ -╰┈┈┈┈┈┈╱┈┈┈┈┈┈┈┈╲┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈╲┈┈┈┈┈╯ - 属性名称 属性值 注意结束“/”符号 - name value - ╰┈┈┈┈┈┈┬┈┈┈┈┈╯ - Attribute(属性) -``` - -教程、参考资料和示例会不断审查以避免错误,但不能保证所有内容的完全正确性,所有资源来源网络。 - -## HTML 简史 - -在 1980 年代后期,作为 CERN 承包商的物理学家 Tim Berners-Lee 为 CERN 研究人员提出了一个系统。 1989 年,他写了一份备忘录,提出了一个基于互联网的超文本系统。 - -Tim Berners-Lee 被称为 HTML 之父。 HTML 的第一个可用描述是 Tim 在 1991 年末提出的名为“HTML 标签”的文档。HTML 的最新版本是 HTML5,我们将在本教程的后面部分学习。 - - -| Year | Version | -| ---- | ---- | -| 1989 | Tim Berners-Lee 发明了 www | -| 1991 | Tim Berners-Lee 发明了 HTML | -| 1993 | Dave Raggett 起草了 HTML+ | -| 1995 | HTML 工作组定义的 HTML 2.0 | -| 1997 | W3C Recommendation: HTML 3.2 | -| 1999 | W3C Recommendation: HTML 4.01 | -| 2000 | W3C Recommendation: XHTML 1.0 | -| 2008 | WHATWG HTML5 首次公开草案 | -| 2012 | [WHATWG HTML5 Living Standard](http://whatwg.org/html/) | -| 2014 | [W3C Recommendation: HTML5](http://www.w3.org/TR/html5/) | -| 2016 | W3C Candidate Recommendation: HTML 5.1 | -| 2017 | [W3C Recommendation: HTML5.1 2nd Edition](http://www.w3.org/TR/html51/) | -| 2017 | [W3C Recommendation: HTML5.2](http://www.w3.org/TR/html52/) | - - -## HTML 要点 - -- HTML 代表超文本标记语言。 -- HTML 用于创建网页和 Web 应用程序。 -- HTML 是网络上广泛使用的语言。 -- 我们只能通过 HTML 创建静态网站。 -- 从技术上讲,HTML 是一种标记语言,而不是一种编程语言。 - -## HTML 版本 - -自 HTML 发明以来,市场上有很多 HTML 版本,下面对 HTML 版本进行简单介绍: - -**① HTML 1.0:** HTML 的第一个版本是 1.0,它是 HTML 语言的准系统版本,于 1991 年发布。 - -**② HTML 2.0:** 这是 1995 年发布的下一个版本,是网站设计的标准语言版本。 HTML 2.0 能够支持额外的功能,例如基于表单的文件上传、文本框等表单元素、选项按钮等。 - -**③ HTML 3.2:** HTML 3.2 版本由 W3C 于 1997 年初发布。此版本能够创建表格并为表单元素的额外选项提供支持。 它还可以支持具有复杂数学方程的网页。 直到 1997 年 1 月,它才成为任何浏览器的官方标准。如今,大多数浏览器实际上都支持它。 - -**④ HTML 4.01:** HTML 4.01 版本于 1999 年 12 月发布,是一个非常稳定的 HTML 语言版本。 这个版本是当前的官方标准,它增加了对样式表 (CSS) 的支持和各种多媒体元素的脚本能力。 - -**⑤ HTML 5:** HTML 5 是超文本标记语言的最新版本。 该版本的初稿于 2008 年 1 月公布。有两个主要组织,一个是 [W3C](https://www.w3.org/)(万维网联盟),另一个是 [WHATWG](https://whatwg.org/)(Web 超文本应用技术工作组),它们参与了 HTML 5 版本的开发 ,并且仍在开发中。 - - - -## 目录 - -- [HTML 索引 (字母排序)](./docs/tags/README.md) -- [HTML 索引 (分类)](./docs/reference/byfunc.md) -- [HTML 浏览器支持](./docs/reference/browsersupport.md) -- [HTML 属性参考](./docs/reference/attributes.md) -- [HTML 全局属性](./docs/reference/standardattributes.md) -- [HTML 事件](./docs/reference/eventattributes.md) -- [HTML 颜色名](./docs/reference/colornames.md) -- [HTML Canvas](./docs/reference/canvas.md) -- [HTML 音频/视频](./docs/reference/av_dom.md) -- [HTML 字符集(UTF-8)](./docs/reference/charactersets.md) -- [HTML 字符集实体(全)](./docs/reference/charactersets_entities.md) -- [HTML Doctypes](./docs/reference/dtd.md) -- [HTML URL 编码](./docs/reference/urlencode.md) -- [HTML 语言代码](./docs/reference/language_codes.md) -- [HTML 国家/地区代码](./docs/reference/country_codes.md) -- [HTTP 状态消息](./docs/reference/httpmessages.md) -- [键盘快捷键](./docs/reference/keyboardshortcuts.md) - - - -## Docker - -通过 Docker 快速简单的部署文档网站。 - -```bash -docker pull wcjiang/html-tutorial -``` - -```bash -docker run --name html-tutorial --rm -d -p 9665:3000 wcjiang/html-tutorial:latest -# Or -docker run --name html-tutorial -itd -p 9665:3000 wcjiang/html-tutorial:latest -``` - -在浏览器中访问以下 URL - -```bash -http://localhost:9665/ -``` - -## Contributors - -一如既往,感谢我们出色的贡献者!一天搬运一个慢慢攒吧,欢迎大家参与进来 :)。 - - - - - -Made with [action-contributors](https://github.com/jaywcjlove/github-action-contributors). - -## License - -Licensed under the MIT License. diff --git a/docs/assets/Fetching_a_page.png b/assets/Fetching_a_page.png similarity index 100% rename from docs/assets/Fetching_a_page.png rename to assets/Fetching_a_page.png diff --git a/docs/assets/chrome.svg b/assets/chrome.svg similarity index 100% rename from docs/assets/chrome.svg rename to assets/chrome.svg diff --git a/docs/assets/chrome_first_example.png b/assets/chrome_first_example.png similarity index 100% rename from docs/assets/chrome_first_example.png rename to assets/chrome_first_example.png diff --git a/docs/assets/edge.svg b/assets/edge.svg similarity index 100% rename from docs/assets/edge.svg rename to assets/edge.svg diff --git a/docs/assets/editors-001.png b/assets/editors-001.png similarity index 100% rename from docs/assets/editors-001.png rename to assets/editors-001.png diff --git a/docs/assets/editors-002.png b/assets/editors-002.png similarity index 100% rename from docs/assets/editors-002.png rename to assets/editors-002.png diff --git a/docs/assets/editors-003.png b/assets/editors-003.png similarity index 100% rename from docs/assets/editors-003.png rename to assets/editors-003.png diff --git a/docs/assets/editors-004.png b/assets/editors-004.png similarity index 100% rename from docs/assets/editors-004.png rename to assets/editors-004.png diff --git a/docs/assets/editors-005.png b/assets/editors-005.png similarity index 100% rename from docs/assets/editors-005.png rename to assets/editors-005.png diff --git a/docs/assets/editors-006.png b/assets/editors-006.png similarity index 100% rename from docs/assets/editors-006.png rename to assets/editors-006.png diff --git a/docs/assets/example.png b/assets/example.png similarity index 100% rename from docs/assets/example.png rename to assets/example.png diff --git a/docs/assets/firefox.svg b/assets/firefox.svg similarity index 100% rename from docs/assets/firefox.svg rename to assets/firefox.svg diff --git a/docs/assets/horse.mp3 b/assets/horse.mp3 similarity index 100% rename from docs/assets/horse.mp3 rename to assets/horse.mp3 diff --git a/docs/assets/horse.ogg b/assets/horse.ogg similarity index 100% rename from docs/assets/horse.ogg rename to assets/horse.ogg diff --git a/docs/assets/img_arc.gif b/assets/img_arc.gif similarity index 100% rename from docs/assets/img_arc.gif rename to assets/img_arc.gif diff --git a/docs/assets/img_beziercurve.gif b/assets/img_beziercurve.gif similarity index 100% rename from docs/assets/img_beziercurve.gif rename to assets/img_beziercurve.gif diff --git a/docs/assets/img_canvas_arcto.png b/assets/img_canvas_arcto.png similarity index 100% rename from docs/assets/img_canvas_arcto.png rename to assets/img_canvas_arcto.png diff --git a/docs/assets/img_miterlimitFig.gif b/assets/img_miterlimitFig.gif similarity index 100% rename from docs/assets/img_miterlimitFig.gif rename to assets/img_miterlimitFig.gif diff --git a/docs/assets/img_quadraticcurve.gif b/assets/img_quadraticcurve.gif similarity index 100% rename from docs/assets/img_quadraticcurve.gif rename to assets/img_quadraticcurve.gif diff --git a/docs/assets/img_textbaseline.gif b/assets/img_textbaseline.gif similarity index 100% rename from docs/assets/img_textbaseline.gif rename to assets/img_textbaseline.gif diff --git a/docs/assets/img_translate.gif b/assets/img_translate.gif similarity index 100% rename from docs/assets/img_translate.gif rename to assets/img_translate.gif diff --git a/docs/assets/mov_bbb.mp4 b/assets/mov_bbb.mp4 similarity index 100% rename from docs/assets/mov_bbb.mp4 rename to assets/mov_bbb.mp4 diff --git a/docs/assets/mov_bbb.ogm b/assets/mov_bbb.ogm similarity index 100% rename from docs/assets/mov_bbb.ogm rename to assets/mov_bbb.ogm diff --git a/docs/assets/no-support-html5.svg b/assets/no-support-html5.svg similarity index 100% rename from docs/assets/no-support-html5.svg rename to assets/no-support-html5.svg diff --git a/docs/assets/opera.svg b/assets/opera.svg similarity index 100% rename from docs/assets/opera.svg rename to assets/opera.svg diff --git a/docs/assets/responsive_viewport1.png b/assets/responsive_viewport1.png similarity index 100% rename from docs/assets/responsive_viewport1.png rename to assets/responsive_viewport1.png diff --git a/docs/assets/responsive_viewport2.png b/assets/responsive_viewport2.png similarity index 100% rename from docs/assets/responsive_viewport2.png rename to assets/responsive_viewport2.png diff --git a/docs/assets/safari.svg b/assets/safari.svg similarity index 100% rename from docs/assets/safari.svg rename to assets/safari.svg diff --git a/docs/assets/sublime_text.png b/assets/sublime_text.png similarity index 100% rename from docs/assets/sublime_text.png rename to assets/sublime_text.png diff --git a/docs/assets/visual_studio_code.png b/assets/visual_studio_code.png similarity index 100% rename from docs/assets/visual_studio_code.png rename to assets/visual_studio_code.png diff --git a/docs/assets/workplace.jpg b/assets/workplace.jpg similarity index 100% rename from docs/assets/workplace.jpg rename to assets/workplace.jpg diff --git a/attribute/accept-charset.html b/attribute/accept-charset.html new file mode 100644 index 000000000..5dfbd13ca --- /dev/null +++ b/attribute/accept-charset.html @@ -0,0 +1,307 @@ + + + + + + + HTML accept-charset 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/accept.html b/attribute/accept.html new file mode 100644 index 000000000..9ac6eddab --- /dev/null +++ b/attribute/accept.html @@ -0,0 +1,329 @@ + + + + + + + HTML accept 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/accesskey.html b/attribute/accesskey.html new file mode 100644 index 000000000..ae3ea4be4 --- /dev/null +++ b/attribute/accesskey.html @@ -0,0 +1,347 @@ + + + + + + + HTML accesskey 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/action.html b/attribute/action.html new file mode 100644 index 000000000..e2c878b18 --- /dev/null +++ b/attribute/action.html @@ -0,0 +1,303 @@ + + + + + + + HTML action 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/alt.html b/attribute/alt.html new file mode 100644 index 000000000..59c8ca2ce --- /dev/null +++ b/attribute/alt.html @@ -0,0 +1,386 @@ + + + + + + + HTML alt 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/async.html b/attribute/async.html new file mode 100644 index 000000000..5e24593c2 --- /dev/null +++ b/attribute/async.html @@ -0,0 +1,287 @@ + + + + + + + HTML async 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/autocomplete.html b/attribute/autocomplete.html new file mode 100644 index 000000000..29c97be88 --- /dev/null +++ b/attribute/autocomplete.html @@ -0,0 +1,358 @@ + + + + + + + HTML autocomplete 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/autofocus.html b/attribute/autofocus.html new file mode 100644 index 000000000..2c70b50f8 --- /dev/null +++ b/attribute/autofocus.html @@ -0,0 +1,382 @@ + + + + + + + HTML autofocus 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/autoplay.html b/attribute/autoplay.html new file mode 100644 index 000000000..f4cd64e54 --- /dev/null +++ b/attribute/autoplay.html @@ -0,0 +1,358 @@ + + + + + + + HTML autoplay 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/charset.html b/attribute/charset.html new file mode 100644 index 000000000..17567c8ec --- /dev/null +++ b/attribute/charset.html @@ -0,0 +1,308 @@ + + + + + + + HTML charset 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/checked.html b/attribute/checked.html new file mode 100644 index 000000000..c28796e29 --- /dev/null +++ b/attribute/checked.html @@ -0,0 +1,307 @@ + + + + + + + HTML checked 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/cite.html b/attribute/cite.html new file mode 100644 index 000000000..0320f2daf --- /dev/null +++ b/attribute/cite.html @@ -0,0 +1,426 @@ + + + + + + + HTML cite 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/class.html b/attribute/class.html new file mode 100644 index 000000000..62fb006c7 --- /dev/null +++ b/attribute/class.html @@ -0,0 +1,343 @@ + + + + + + + HTML class 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/cols.html b/attribute/cols.html new file mode 100644 index 000000000..437ab7feb --- /dev/null +++ b/attribute/cols.html @@ -0,0 +1,298 @@ + + + + + + + HTML cols 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/colspan.html b/attribute/colspan.html new file mode 100644 index 000000000..5d2721142 --- /dev/null +++ b/attribute/colspan.html @@ -0,0 +1,430 @@ + + + + + + + HTML colspan 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/content.html b/attribute/content.html new file mode 100644 index 000000000..502a7148c --- /dev/null +++ b/attribute/content.html @@ -0,0 +1,289 @@ + + + + + + + HTML content 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/contenteditable.html b/attribute/contenteditable.html new file mode 100644 index 000000000..c0d9b14a9 --- /dev/null +++ b/attribute/contenteditable.html @@ -0,0 +1,293 @@ + + + + + + + HTML contenteditable 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/controls.html b/attribute/controls.html new file mode 100644 index 000000000..c230eedba --- /dev/null +++ b/attribute/controls.html @@ -0,0 +1,375 @@ + + + + + + + HTML controls 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/coords.html b/attribute/coords.html new file mode 100644 index 000000000..076af6a20 --- /dev/null +++ b/attribute/coords.html @@ -0,0 +1,308 @@ + + + + + + + HTML coords 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/data-.html b/attribute/data-.html new file mode 100644 index 000000000..83efd8fb7 --- /dev/null +++ b/attribute/data-.html @@ -0,0 +1,312 @@ + + + + + + + HTML data-* 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/data.html b/attribute/data.html new file mode 100644 index 000000000..be026eeea --- /dev/null +++ b/attribute/data.html @@ -0,0 +1,278 @@ + + + + + + + HTML data 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/datetime.html b/attribute/datetime.html new file mode 100644 index 000000000..8bb3eee50 --- /dev/null +++ b/attribute/datetime.html @@ -0,0 +1,375 @@ + + + + + + + HTML datetime 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/default.html b/attribute/default.html new file mode 100644 index 000000000..7f1c5eb08 --- /dev/null +++ b/attribute/default.html @@ -0,0 +1,291 @@ + + + + + + + HTML default 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/defer.html b/attribute/defer.html new file mode 100644 index 000000000..b7861ce61 --- /dev/null +++ b/attribute/defer.html @@ -0,0 +1,287 @@ + + + + + + + HTML defer 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/dir.html b/attribute/dir.html new file mode 100644 index 000000000..63d85db26 --- /dev/null +++ b/attribute/dir.html @@ -0,0 +1,297 @@ + + + + + + + HTML dir 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/dirname.html b/attribute/dirname.html new file mode 100644 index 000000000..5dae2edd3 --- /dev/null +++ b/attribute/dirname.html @@ -0,0 +1,350 @@ + + + + + + + HTML dirname 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/disabled.html b/attribute/disabled.html new file mode 100644 index 000000000..11a83fff3 --- /dev/null +++ b/attribute/disabled.html @@ -0,0 +1,564 @@ + + + + + + + HTML disabled 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/download.html b/attribute/download.html new file mode 100644 index 000000000..662e364dd --- /dev/null +++ b/attribute/download.html @@ -0,0 +1,344 @@ + + + + + + + HTML download 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/draggable.html b/attribute/draggable.html new file mode 100644 index 000000000..1c4cacfca --- /dev/null +++ b/attribute/draggable.html @@ -0,0 +1,294 @@ + + + + + + + HTML draggable 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/enctype.html b/attribute/enctype.html new file mode 100644 index 000000000..05de73947 --- /dev/null +++ b/attribute/enctype.html @@ -0,0 +1,304 @@ + + + + + + + HTML enctype 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/for.html b/attribute/for.html new file mode 100644 index 000000000..f0f1cb3ce --- /dev/null +++ b/attribute/for.html @@ -0,0 +1,365 @@ + + + + + + + HTML for 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/form.html b/attribute/form.html new file mode 100644 index 000000000..5f6fcfd70 --- /dev/null +++ b/attribute/form.html @@ -0,0 +1,726 @@ + + + + + + + HTML form 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/formaction.html b/attribute/formaction.html new file mode 100644 index 000000000..6d6fc2865 --- /dev/null +++ b/attribute/formaction.html @@ -0,0 +1,359 @@ + + + + + + + HTML formaction 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/accesskey.html b/attribute/global/accesskey.html new file mode 100644 index 000000000..2d04ef9d1 --- /dev/null +++ b/attribute/global/accesskey.html @@ -0,0 +1,305 @@ + + + + + + + HTML accesskey 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/class.html b/attribute/global/class.html new file mode 100644 index 000000000..679dd7ea4 --- /dev/null +++ b/attribute/global/class.html @@ -0,0 +1,474 @@ + + + + + + + HTML class 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/contenteditable.html b/attribute/global/contenteditable.html new file mode 100644 index 000000000..77b7be8e2 --- /dev/null +++ b/attribute/global/contenteditable.html @@ -0,0 +1,301 @@ + + + + + + + HTML contenteditable 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/data.html b/attribute/global/data.html new file mode 100644 index 000000000..5b417e687 --- /dev/null +++ b/attribute/global/data.html @@ -0,0 +1,312 @@ + + + + + + + HTML data-* 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/dir.html b/attribute/global/dir.html new file mode 100644 index 000000000..9dc562797 --- /dev/null +++ b/attribute/global/dir.html @@ -0,0 +1,304 @@ + + + + + + + HTML dir 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/draggable.html b/attribute/global/draggable.html new file mode 100644 index 000000000..3e5876f0c --- /dev/null +++ b/attribute/global/draggable.html @@ -0,0 +1,306 @@ + + + + + + + HTML draggable 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/hidden.html b/attribute/global/hidden.html new file mode 100644 index 000000000..f5b11fa5e --- /dev/null +++ b/attribute/global/hidden.html @@ -0,0 +1,285 @@ + + + + + + + HTML hidden 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/id.html b/attribute/global/id.html new file mode 100644 index 000000000..eb9f45e9d --- /dev/null +++ b/attribute/global/id.html @@ -0,0 +1,315 @@ + + + + + + + HTML id 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/lang.html b/attribute/global/lang.html new file mode 100644 index 000000000..dcde0d00d --- /dev/null +++ b/attribute/global/lang.html @@ -0,0 +1,296 @@ + + + + + + + HTML lang 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/spellcheck.html b/attribute/global/spellcheck.html new file mode 100644 index 000000000..a503a272b --- /dev/null +++ b/attribute/global/spellcheck.html @@ -0,0 +1,310 @@ + + + + + + + HTML spellcheck 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/style.html b/attribute/global/style.html new file mode 100644 index 000000000..a5a419235 --- /dev/null +++ b/attribute/global/style.html @@ -0,0 +1,302 @@ + + + + + + + HTML style 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/tabindex.html b/attribute/global/tabindex.html new file mode 100644 index 000000000..406fb6db0 --- /dev/null +++ b/attribute/global/tabindex.html @@ -0,0 +1,301 @@ + + + + + + + HTML tabindex 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/title.html b/attribute/global/title.html new file mode 100644 index 000000000..e18d06c5b --- /dev/null +++ b/attribute/global/title.html @@ -0,0 +1,300 @@ + + + + + + + HTML title 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/global/translate.html b/attribute/global/translate.html new file mode 100644 index 000000000..cc548f082 --- /dev/null +++ b/attribute/global/translate.html @@ -0,0 +1,304 @@ + + + + + + + HTML translate 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/headers.html b/attribute/headers.html new file mode 100644 index 000000000..752599ba4 --- /dev/null +++ b/attribute/headers.html @@ -0,0 +1,403 @@ + + + + + + + HTML headers 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/height.html b/attribute/height.html new file mode 100644 index 000000000..02257c6e4 --- /dev/null +++ b/attribute/height.html @@ -0,0 +1,509 @@ + + + + + + + HTML height 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/hidden.html b/attribute/hidden.html new file mode 100644 index 000000000..9e88133ad --- /dev/null +++ b/attribute/hidden.html @@ -0,0 +1,297 @@ + + + + + + + HTML hidden 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/high.html b/attribute/high.html new file mode 100644 index 000000000..5ec76db70 --- /dev/null +++ b/attribute/high.html @@ -0,0 +1,292 @@ + + + + + + + HTML high 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/href.html b/attribute/href.html new file mode 100644 index 000000000..75ab47988 --- /dev/null +++ b/attribute/href.html @@ -0,0 +1,385 @@ + + + + + + + HTML href 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/hreflang.html b/attribute/hreflang.html new file mode 100644 index 000000000..94bd93a2c --- /dev/null +++ b/attribute/hreflang.html @@ -0,0 +1,362 @@ + + + + + + + HTML hreflang 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/http-equiv.html b/attribute/http-equiv.html new file mode 100644 index 000000000..6a87f4678 --- /dev/null +++ b/attribute/http-equiv.html @@ -0,0 +1,283 @@ + + + + + + + HTML http-equiv 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/id.html b/attribute/id.html new file mode 100644 index 000000000..069940c9a --- /dev/null +++ b/attribute/id.html @@ -0,0 +1,322 @@ + + + + + + + HTML id 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ismap.html b/attribute/ismap.html new file mode 100644 index 000000000..ae1449325 --- /dev/null +++ b/attribute/ismap.html @@ -0,0 +1,300 @@ + + + + + + + HTML ismap 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/kind.html b/attribute/kind.html new file mode 100644 index 000000000..4d561ff0a --- /dev/null +++ b/attribute/kind.html @@ -0,0 +1,319 @@ + + + + + + + HTML kind 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/label.html b/attribute/label.html new file mode 100644 index 000000000..fbe988e2c --- /dev/null +++ b/attribute/label.html @@ -0,0 +1,320 @@ + + + + + + + HTML label 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/lang.html b/attribute/lang.html new file mode 100644 index 000000000..563d45ecd --- /dev/null +++ b/attribute/lang.html @@ -0,0 +1,292 @@ + + + + + + + HTML lang 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/list.html b/attribute/list.html new file mode 100644 index 000000000..c50e02f63 --- /dev/null +++ b/attribute/list.html @@ -0,0 +1,316 @@ + + + + + + + HTML list 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/loop.html b/attribute/loop.html new file mode 100644 index 000000000..d8e20d6bd --- /dev/null +++ b/attribute/loop.html @@ -0,0 +1,369 @@ + + + + + + + HTML loop 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/low.html b/attribute/low.html new file mode 100644 index 000000000..6db93d203 --- /dev/null +++ b/attribute/low.html @@ -0,0 +1,293 @@ + + + + + + + HTML low 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/max.html b/attribute/max.html new file mode 100644 index 000000000..0a52e44b8 --- /dev/null +++ b/attribute/max.html @@ -0,0 +1,382 @@ + + + + + + + HTML max 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/maxlength.html b/attribute/maxlength.html new file mode 100644 index 000000000..a85d6a448 --- /dev/null +++ b/attribute/maxlength.html @@ -0,0 +1,343 @@ + + + + + + + HTML maxlength 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/media.html b/attribute/media.html new file mode 100644 index 000000000..f6cd8f9e3 --- /dev/null +++ b/attribute/media.html @@ -0,0 +1,420 @@ + + + + + + + HTML media 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/method.html b/attribute/method.html new file mode 100644 index 000000000..80577decf --- /dev/null +++ b/attribute/method.html @@ -0,0 +1,318 @@ + + + + + + + HTML method 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/min.html b/attribute/min.html new file mode 100644 index 000000000..3ecf25569 --- /dev/null +++ b/attribute/min.html @@ -0,0 +1,359 @@ + + + + + + + HTML min 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/multiple.html b/attribute/multiple.html new file mode 100644 index 000000000..3757a2353 --- /dev/null +++ b/attribute/multiple.html @@ -0,0 +1,353 @@ + + + + + + + HTML multiple 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/muted.html b/attribute/muted.html new file mode 100644 index 000000000..8d4617ee4 --- /dev/null +++ b/attribute/muted.html @@ -0,0 +1,317 @@ + + + + + + + HTML muted 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/name.html b/attribute/name.html new file mode 100644 index 000000000..3149a23aa --- /dev/null +++ b/attribute/name.html @@ -0,0 +1,762 @@ + + + + + + + HTML name 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/novalidate.html b/attribute/novalidate.html new file mode 100644 index 000000000..20285def6 --- /dev/null +++ b/attribute/novalidate.html @@ -0,0 +1,302 @@ + + + + + + + HTML novalidate 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onabort.html b/attribute/onabort.html new file mode 100644 index 000000000..45a594f6d --- /dev/null +++ b/attribute/onabort.html @@ -0,0 +1,329 @@ + + + + + + + HTML onabort 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onafterprint.html b/attribute/onafterprint.html new file mode 100644 index 000000000..8b209707d --- /dev/null +++ b/attribute/onafterprint.html @@ -0,0 +1,337 @@ + + + + + + + HTML onafterprint Event 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onbeforeprint.html b/attribute/onbeforeprint.html new file mode 100644 index 000000000..260485808 --- /dev/null +++ b/attribute/onbeforeprint.html @@ -0,0 +1,326 @@ + + + + + + + HTML onbeforeprint 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onbeforeunload.html b/attribute/onbeforeunload.html new file mode 100644 index 000000000..8d6c29c62 --- /dev/null +++ b/attribute/onbeforeunload.html @@ -0,0 +1,326 @@ + + + + + + + HTML onbeforeunload 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onblur.html b/attribute/onblur.html new file mode 100644 index 000000000..7ada143da --- /dev/null +++ b/attribute/onblur.html @@ -0,0 +1,317 @@ + + + + + + + HTML onblur 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncanplay.html b/attribute/oncanplay.html new file mode 100644 index 000000000..24fd0df6f --- /dev/null +++ b/attribute/oncanplay.html @@ -0,0 +1,415 @@ + + + + + + + HTML oncanplay 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncanplaythrough.html b/attribute/oncanplaythrough.html new file mode 100644 index 000000000..31c996cb9 --- /dev/null +++ b/attribute/oncanplaythrough.html @@ -0,0 +1,391 @@ + + + + + + + HTML oncanplaythrough 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onchange.html b/attribute/onchange.html new file mode 100644 index 000000000..13a2176c5 --- /dev/null +++ b/attribute/onchange.html @@ -0,0 +1,397 @@ + + + + + + + HTML onchange 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onclick.html b/attribute/onclick.html new file mode 100644 index 000000000..c506ea9dc --- /dev/null +++ b/attribute/onclick.html @@ -0,0 +1,366 @@ + + + + + + + HTML onclick 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncontextmenu.html b/attribute/oncontextmenu.html new file mode 100644 index 000000000..f3cac7288 --- /dev/null +++ b/attribute/oncontextmenu.html @@ -0,0 +1,379 @@ + + + + + + + HTML oncontextmenu 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncopy.html b/attribute/oncopy.html new file mode 100644 index 000000000..b7ea7a830 --- /dev/null +++ b/attribute/oncopy.html @@ -0,0 +1,424 @@ + + + + + + + HTML oncopy 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncuechange.html b/attribute/oncuechange.html new file mode 100644 index 000000000..d28f1e74a --- /dev/null +++ b/attribute/oncuechange.html @@ -0,0 +1,273 @@ + + + + + + + HTML oncuechange 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oncut.html b/attribute/oncut.html new file mode 100644 index 000000000..3c8c51ec5 --- /dev/null +++ b/attribute/oncut.html @@ -0,0 +1,370 @@ + + + + + + + HTML oncut 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondblclick.html b/attribute/ondblclick.html new file mode 100644 index 000000000..d8f811b48 --- /dev/null +++ b/attribute/ondblclick.html @@ -0,0 +1,381 @@ + + + + + + + HTML ondblclick 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondrag.html b/attribute/ondrag.html new file mode 100644 index 000000000..cfc023628 --- /dev/null +++ b/attribute/ondrag.html @@ -0,0 +1,426 @@ + + + + + + + HTML ondrag 属性 HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondragend.html b/attribute/ondragend.html new file mode 100644 index 000000000..b39b3a510 --- /dev/null +++ b/attribute/ondragend.html @@ -0,0 +1,213 @@ + + + + + + + ondragend.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondragenter.html b/attribute/ondragenter.html new file mode 100644 index 000000000..6e0900ac4 --- /dev/null +++ b/attribute/ondragenter.html @@ -0,0 +1,213 @@ + + + + + + + ondragenter.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondragleave.html b/attribute/ondragleave.html new file mode 100644 index 000000000..dabcdc77e --- /dev/null +++ b/attribute/ondragleave.html @@ -0,0 +1,213 @@ + + + + + + + ondragleave.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondragover.html b/attribute/ondragover.html new file mode 100644 index 000000000..1da103918 --- /dev/null +++ b/attribute/ondragover.html @@ -0,0 +1,213 @@ + + + + + + + ondragover.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondragstart.html b/attribute/ondragstart.html new file mode 100644 index 000000000..b334c2e42 --- /dev/null +++ b/attribute/ondragstart.html @@ -0,0 +1,213 @@ + + + + + + + ondragstart.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondrop.html b/attribute/ondrop.html new file mode 100644 index 000000000..4f49b3568 --- /dev/null +++ b/attribute/ondrop.html @@ -0,0 +1,213 @@ + + + + + + + ondrop.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ondurationchange.html b/attribute/ondurationchange.html new file mode 100644 index 000000000..088cf53c2 --- /dev/null +++ b/attribute/ondurationchange.html @@ -0,0 +1,213 @@ + + + + + + + ondurationchange.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onemptied.html b/attribute/onemptied.html new file mode 100644 index 000000000..2fac076df --- /dev/null +++ b/attribute/onemptied.html @@ -0,0 +1,213 @@ + + + + + + + onemptied.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onended.html b/attribute/onended.html new file mode 100644 index 000000000..fe6d1a170 --- /dev/null +++ b/attribute/onended.html @@ -0,0 +1,213 @@ + + + + + + + onended.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onerror.html b/attribute/onerror.html new file mode 100644 index 000000000..505ec7255 --- /dev/null +++ b/attribute/onerror.html @@ -0,0 +1,213 @@ + + + + + + + onerror.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onfocus.html b/attribute/onfocus.html new file mode 100644 index 000000000..e1c6e066e --- /dev/null +++ b/attribute/onfocus.html @@ -0,0 +1,213 @@ + + + + + + + onfocus.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onhashchange.html b/attribute/onhashchange.html new file mode 100644 index 000000000..add41aef1 --- /dev/null +++ b/attribute/onhashchange.html @@ -0,0 +1,213 @@ + + + + + + + onhashchange.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oninput.html b/attribute/oninput.html new file mode 100644 index 000000000..8ffed5509 --- /dev/null +++ b/attribute/oninput.html @@ -0,0 +1,213 @@ + + + + + + + oninput.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/oninvalid.html b/attribute/oninvalid.html new file mode 100644 index 000000000..e7194f24d --- /dev/null +++ b/attribute/oninvalid.html @@ -0,0 +1,213 @@ + + + + + + + oninvalid.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onkeydown.html b/attribute/onkeydown.html new file mode 100644 index 000000000..7cb673d04 --- /dev/null +++ b/attribute/onkeydown.html @@ -0,0 +1,213 @@ + + + + + + + onkeydown.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onkeypress.html b/attribute/onkeypress.html new file mode 100644 index 000000000..00445dc8f --- /dev/null +++ b/attribute/onkeypress.html @@ -0,0 +1,213 @@ + + + + + + + onkeypress.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onkeyup.html b/attribute/onkeyup.html new file mode 100644 index 000000000..5ba7b854b --- /dev/null +++ b/attribute/onkeyup.html @@ -0,0 +1,213 @@ + + + + + + + onkeyup.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onload.html b/attribute/onload.html new file mode 100644 index 000000000..b57ce25e9 --- /dev/null +++ b/attribute/onload.html @@ -0,0 +1,213 @@ + + + + + + + onload.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onloadeddata.html b/attribute/onloadeddata.html new file mode 100644 index 000000000..2764310b7 --- /dev/null +++ b/attribute/onloadeddata.html @@ -0,0 +1,213 @@ + + + + + + + onloadeddata.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onloadedmetadata.html b/attribute/onloadedmetadata.html new file mode 100644 index 000000000..5a7700015 --- /dev/null +++ b/attribute/onloadedmetadata.html @@ -0,0 +1,213 @@ + + + + + + + onloadedmetadata.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onloadstart.html b/attribute/onloadstart.html new file mode 100644 index 000000000..07a52ba97 --- /dev/null +++ b/attribute/onloadstart.html @@ -0,0 +1,213 @@ + + + + + + + onloadstart.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmousedown.html b/attribute/onmousedown.html new file mode 100644 index 000000000..92f5a9ed0 --- /dev/null +++ b/attribute/onmousedown.html @@ -0,0 +1,213 @@ + + + + + + + onmousedown.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmousemove.html b/attribute/onmousemove.html new file mode 100644 index 000000000..165e2ef00 --- /dev/null +++ b/attribute/onmousemove.html @@ -0,0 +1,213 @@ + + + + + + + onmousemove.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmouseout.html b/attribute/onmouseout.html new file mode 100644 index 000000000..ef828b5c8 --- /dev/null +++ b/attribute/onmouseout.html @@ -0,0 +1,213 @@ + + + + + + + onmouseout.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmouseover.html b/attribute/onmouseover.html new file mode 100644 index 000000000..6dae4ac57 --- /dev/null +++ b/attribute/onmouseover.html @@ -0,0 +1,213 @@ + + + + + + + onmouseover.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmouseup.html b/attribute/onmouseup.html new file mode 100644 index 000000000..16b2df44b --- /dev/null +++ b/attribute/onmouseup.html @@ -0,0 +1,213 @@ + + + + + + + onmouseup.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onmousewheel.html b/attribute/onmousewheel.html new file mode 100644 index 000000000..6c4c42b2d --- /dev/null +++ b/attribute/onmousewheel.html @@ -0,0 +1,213 @@ + + + + + + + onmousewheel.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onoffline.html b/attribute/onoffline.html new file mode 100644 index 000000000..53ee99f10 --- /dev/null +++ b/attribute/onoffline.html @@ -0,0 +1,213 @@ + + + + + + + onoffline.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ononline.html b/attribute/ononline.html new file mode 100644 index 000000000..a53f942fe --- /dev/null +++ b/attribute/ononline.html @@ -0,0 +1,213 @@ + + + + + + + ononline.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onpageshow.html b/attribute/onpageshow.html new file mode 100644 index 000000000..6929b6aaf --- /dev/null +++ b/attribute/onpageshow.html @@ -0,0 +1,213 @@ + + + + + + + onpageshow.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onpaste.html b/attribute/onpaste.html new file mode 100644 index 000000000..06b680450 --- /dev/null +++ b/attribute/onpaste.html @@ -0,0 +1,213 @@ + + + + + + + onpaste.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onpause.html b/attribute/onpause.html new file mode 100644 index 000000000..1decc9605 --- /dev/null +++ b/attribute/onpause.html @@ -0,0 +1,213 @@ + + + + + + + onpause.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onplay.html b/attribute/onplay.html new file mode 100644 index 000000000..dbe0e6a6b --- /dev/null +++ b/attribute/onplay.html @@ -0,0 +1,213 @@ + + + + + + + onplay.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onplaying.html b/attribute/onplaying.html new file mode 100644 index 000000000..cd938fd45 --- /dev/null +++ b/attribute/onplaying.html @@ -0,0 +1,213 @@ + + + + + + + onplaying.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onprogress.html b/attribute/onprogress.html new file mode 100644 index 000000000..f487f94d9 --- /dev/null +++ b/attribute/onprogress.html @@ -0,0 +1,213 @@ + + + + + + + onprogress.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onratechange.html b/attribute/onratechange.html new file mode 100644 index 000000000..a2e62633e --- /dev/null +++ b/attribute/onratechange.html @@ -0,0 +1,213 @@ + + + + + + + onratechange.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onreset.html b/attribute/onreset.html new file mode 100644 index 000000000..ca375c1df --- /dev/null +++ b/attribute/onreset.html @@ -0,0 +1,213 @@ + + + + + + + onreset.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onresize.html b/attribute/onresize.html new file mode 100644 index 000000000..c4b2cab2b --- /dev/null +++ b/attribute/onresize.html @@ -0,0 +1,213 @@ + + + + + + + onresize.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onscroll.html b/attribute/onscroll.html new file mode 100644 index 000000000..39905c76e --- /dev/null +++ b/attribute/onscroll.html @@ -0,0 +1,213 @@ + + + + + + + onscroll.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onsearch.html b/attribute/onsearch.html new file mode 100644 index 000000000..6b6354482 --- /dev/null +++ b/attribute/onsearch.html @@ -0,0 +1,213 @@ + + + + + + + onsearch.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onseeked.html b/attribute/onseeked.html new file mode 100644 index 000000000..81541a023 --- /dev/null +++ b/attribute/onseeked.html @@ -0,0 +1,213 @@ + + + + + + + onseeked.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onseeking.html b/attribute/onseeking.html new file mode 100644 index 000000000..c3dae47c4 --- /dev/null +++ b/attribute/onseeking.html @@ -0,0 +1,213 @@ + + + + + + + onseeking.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onselect.html b/attribute/onselect.html new file mode 100644 index 000000000..b88934696 --- /dev/null +++ b/attribute/onselect.html @@ -0,0 +1,213 @@ + + + + + + + onselect.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onstalled.html b/attribute/onstalled.html new file mode 100644 index 000000000..a35c68bc8 --- /dev/null +++ b/attribute/onstalled.html @@ -0,0 +1,213 @@ + + + + + + + onstalled.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onsubmit.html b/attribute/onsubmit.html new file mode 100644 index 000000000..cf7778fca --- /dev/null +++ b/attribute/onsubmit.html @@ -0,0 +1,213 @@ + + + + + + + onsubmit.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onsuspend.html b/attribute/onsuspend.html new file mode 100644 index 000000000..e49cb80a2 --- /dev/null +++ b/attribute/onsuspend.html @@ -0,0 +1,213 @@ + + + + + + + onsuspend.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ontimeupdate.html b/attribute/ontimeupdate.html new file mode 100644 index 000000000..73466f2fc --- /dev/null +++ b/attribute/ontimeupdate.html @@ -0,0 +1,213 @@ + + + + + + + ontimeupdate.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/ontoggle.html b/attribute/ontoggle.html new file mode 100644 index 000000000..e8b64dfc7 --- /dev/null +++ b/attribute/ontoggle.html @@ -0,0 +1,213 @@ + + + + + + + ontoggle.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onunload.html b/attribute/onunload.html new file mode 100644 index 000000000..cece0b342 --- /dev/null +++ b/attribute/onunload.html @@ -0,0 +1,213 @@ + + + + + + + onunload.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onvolumechange.html b/attribute/onvolumechange.html new file mode 100644 index 000000000..312cd11e6 --- /dev/null +++ b/attribute/onvolumechange.html @@ -0,0 +1,213 @@ + + + + + + + onvolumechange.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onwaiting.html b/attribute/onwaiting.html new file mode 100644 index 000000000..5b659b3ad --- /dev/null +++ b/attribute/onwaiting.html @@ -0,0 +1,213 @@ + + + + + + + onwaiting.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/onwheel.html b/attribute/onwheel.html new file mode 100644 index 000000000..85c07988b --- /dev/null +++ b/attribute/onwheel.html @@ -0,0 +1,213 @@ + + + + + + + onwheel.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/open.html b/attribute/open.html new file mode 100644 index 000000000..c1fafc48c --- /dev/null +++ b/attribute/open.html @@ -0,0 +1,213 @@ + + + + + + + open.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/optimum.html b/attribute/optimum.html new file mode 100644 index 000000000..05ad95e2e --- /dev/null +++ b/attribute/optimum.html @@ -0,0 +1,213 @@ + + + + + + + optimum.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/pattern.html b/attribute/pattern.html new file mode 100644 index 000000000..d03e8af53 --- /dev/null +++ b/attribute/pattern.html @@ -0,0 +1,213 @@ + + + + + + + pattern.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/placeholder.html b/attribute/placeholder.html new file mode 100644 index 000000000..d45a2c979 --- /dev/null +++ b/attribute/placeholder.html @@ -0,0 +1,213 @@ + + + + + + + placeholder.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/poster.html b/attribute/poster.html new file mode 100644 index 000000000..0b8d18a14 --- /dev/null +++ b/attribute/poster.html @@ -0,0 +1,213 @@ + + + + + + + poster.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/preload.html b/attribute/preload.html new file mode 100644 index 000000000..2aa9e8cd0 --- /dev/null +++ b/attribute/preload.html @@ -0,0 +1,213 @@ + + + + + + + preload.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/readonly.html b/attribute/readonly.html new file mode 100644 index 000000000..d67edd0d5 --- /dev/null +++ b/attribute/readonly.html @@ -0,0 +1,213 @@ + + + + + + + readonly.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/rel.html b/attribute/rel.html new file mode 100644 index 000000000..c53e6546e --- /dev/null +++ b/attribute/rel.html @@ -0,0 +1,213 @@ + + + + + + + rel.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/required.html b/attribute/required.html new file mode 100644 index 000000000..7e03586bd --- /dev/null +++ b/attribute/required.html @@ -0,0 +1,213 @@ + + + + + + + required.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/reversed.html b/attribute/reversed.html new file mode 100644 index 000000000..42e5b6dc6 --- /dev/null +++ b/attribute/reversed.html @@ -0,0 +1,213 @@ + + + + + + + reversed.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/rows.html b/attribute/rows.html new file mode 100644 index 000000000..f64881316 --- /dev/null +++ b/attribute/rows.html @@ -0,0 +1,213 @@ + + + + + + + rows.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/rowspan.html b/attribute/rowspan.html new file mode 100644 index 000000000..87b8df128 --- /dev/null +++ b/attribute/rowspan.html @@ -0,0 +1,213 @@ + + + + + + + rowspan.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/sandbox.html b/attribute/sandbox.html new file mode 100644 index 000000000..ae33ff699 --- /dev/null +++ b/attribute/sandbox.html @@ -0,0 +1,213 @@ + + + + + + + sandbox.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/scope.html b/attribute/scope.html new file mode 100644 index 000000000..7e7a3cd8f --- /dev/null +++ b/attribute/scope.html @@ -0,0 +1,213 @@ + + + + + + + scope.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/selected.html b/attribute/selected.html new file mode 100644 index 000000000..d0ff0fdc6 --- /dev/null +++ b/attribute/selected.html @@ -0,0 +1,213 @@ + + + + + + + selected.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/shape.html b/attribute/shape.html new file mode 100644 index 000000000..1055bb378 --- /dev/null +++ b/attribute/shape.html @@ -0,0 +1,213 @@ + + + + + + + shape.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/size.html b/attribute/size.html new file mode 100644 index 000000000..45a230309 --- /dev/null +++ b/attribute/size.html @@ -0,0 +1,213 @@ + + + + + + + size.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/sizes.html b/attribute/sizes.html new file mode 100644 index 000000000..cac002a3e --- /dev/null +++ b/attribute/sizes.html @@ -0,0 +1,213 @@ + + + + + + + sizes.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/span.html b/attribute/span.html new file mode 100644 index 000000000..8da937134 --- /dev/null +++ b/attribute/span.html @@ -0,0 +1,213 @@ + + + + + + + span.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/spellcheck.html b/attribute/spellcheck.html new file mode 100644 index 000000000..a202150d8 --- /dev/null +++ b/attribute/spellcheck.html @@ -0,0 +1,213 @@ + + + + + + + spellcheck.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/src.html b/attribute/src.html new file mode 100644 index 000000000..25d586418 --- /dev/null +++ b/attribute/src.html @@ -0,0 +1,213 @@ + + + + + + + src.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/srcdoc.html b/attribute/srcdoc.html new file mode 100644 index 000000000..2a088b55e --- /dev/null +++ b/attribute/srcdoc.html @@ -0,0 +1,213 @@ + + + + + + + srcdoc.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/srclang.html b/attribute/srclang.html new file mode 100644 index 000000000..8e6fc1e45 --- /dev/null +++ b/attribute/srclang.html @@ -0,0 +1,213 @@ + + + + + + + srclang.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/srcset.html b/attribute/srcset.html new file mode 100644 index 000000000..a668af473 --- /dev/null +++ b/attribute/srcset.html @@ -0,0 +1,213 @@ + + + + + + + srcset.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/start.html b/attribute/start.html new file mode 100644 index 000000000..a9ae94797 --- /dev/null +++ b/attribute/start.html @@ -0,0 +1,213 @@ + + + + + + + start.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/step.html b/attribute/step.html new file mode 100644 index 000000000..0aed1bf8b --- /dev/null +++ b/attribute/step.html @@ -0,0 +1,213 @@ + + + + + + + step.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/style.html b/attribute/style.html new file mode 100644 index 000000000..c33de3241 --- /dev/null +++ b/attribute/style.html @@ -0,0 +1,213 @@ + + + + + + + style.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/tabindex.html b/attribute/tabindex.html new file mode 100644 index 000000000..681666849 --- /dev/null +++ b/attribute/tabindex.html @@ -0,0 +1,213 @@ + + + + + + + tabindex.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/target.html b/attribute/target.html new file mode 100644 index 000000000..5191aec5f --- /dev/null +++ b/attribute/target.html @@ -0,0 +1,213 @@ + + + + + + + target.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/title.html b/attribute/title.html new file mode 100644 index 000000000..84c0a80e5 --- /dev/null +++ b/attribute/title.html @@ -0,0 +1,213 @@ + + + + + + + title.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/translate.html b/attribute/translate.html new file mode 100644 index 000000000..baccc4ec7 --- /dev/null +++ b/attribute/translate.html @@ -0,0 +1,213 @@ + + + + + + + translate.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/type.html b/attribute/type.html new file mode 100644 index 000000000..eb5a94773 --- /dev/null +++ b/attribute/type.html @@ -0,0 +1,213 @@ + + + + + + + type.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/usemap.html b/attribute/usemap.html new file mode 100644 index 000000000..aa42c47fc --- /dev/null +++ b/attribute/usemap.html @@ -0,0 +1,213 @@ + + + + + + + usemap.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/value.html b/attribute/value.html new file mode 100644 index 000000000..d217a5ec7 --- /dev/null +++ b/attribute/value.html @@ -0,0 +1,213 @@ + + + + + + + value.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/width.html b/attribute/width.html new file mode 100644 index 000000000..6322ebbc8 --- /dev/null +++ b/attribute/width.html @@ -0,0 +1,213 @@ + + + + + + + width.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/attribute/wrap.html b/attribute/wrap.html new file mode 100644 index 000000000..f0b47d64d --- /dev/null +++ b/attribute/wrap.html @@ -0,0 +1,213 @@ + + + + + + + wrap.md HTML Tutorial + + + + + + + + + + + + + + top +
+
+
+ + + + +
+
+
+ + + + + + diff --git a/css/copy.css b/css/copy.css new file mode 100644 index 000000000..c4b309362 --- /dev/null +++ b/css/copy.css @@ -0,0 +1,49 @@ +markdown-style pre > .copied, +markdown-style [class*='language-'] .copied { + display: flex; + position: absolute; + cursor: pointer; + color: #a5afbb; + top: 6px; + right: 6px; + border-radius: 5px; + background: #82828226; + padding: 6px; + font-size: 12px; + transition: all 0.3s; + z-index: 10; +} +markdown-style pre > .copied:not(.active), +markdown-style [class*='language-'] .copied:not(.active) { + visibility: hidden; +} +markdown-style pre:hover > .copied, +markdown-style [class*='language-']:hover .copied { + visibility: visible; +} +markdown-style pre:hover > .copied:hover, +markdown-style [class*='language-']:hover .copied:hover { + background: #4caf50; + color: #fff; +} +markdown-style [class*='language-']:hover .copied:active, +markdown-style pre > .copied.active { + background: #2e9b33; + color: #fff; +} +markdown-style pre > .copied .octicon-copy, +markdown-style [class*='language-'] .copied .octicon-copy { + display: block; +} +markdown-style pre > .copied .octicon-check, +markdown-style [class*='language-'] .copied .octicon-check { + display: none; +} +markdown-style pre > .active .octicon-copy, +markdown-style [class*='language-'] .active .octicon-copy { + display: none; +} +markdown-style pre > .active .octicon-check, +markdown-style [class*='language-'] .active .octicon-check { + display: block; +} diff --git a/css/demo-preview.css b/css/demo-preview.css new file mode 100644 index 000000000..cc8a25e5e --- /dev/null +++ b/css/demo-preview.css @@ -0,0 +1,62 @@ +.idoc-demo-warpper { + overflow: hidden; + min-height: 60px; + margin-bottom: 16px; +} + +div.idoc-demo-warpper { + position: relative; + background-color: var(--color-canvas-subtle); + border-radius: 6px; +} + +div.idoc-demo-warpper > pre { + padding: 16px; + overflow: auto; + display: block; + margin-bottom: 0 !important; + height: 100%; +} + +div.idoc-demo-previw { + padding: 10px; + font-size: initial; + line-height: initial; + line-height: initial; + font-family: initial; + overflow: auto; +} +.idoc-demo-previw { + border: 0; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + background-color: var(--color-canvas-subtle); + border: 1px solid var(--color-border-default); + border-radius: 6px; + z-index: 9; + transition: left 0.3s cubic-bezier(1, 0, 1, 0); +} + +.idoc-demo-previw.ishiden { + left: -100%; +} +button.idoc-toggle-previw { + user-select: none; + position: absolute; + z-index: 10; + border: transparent; + background-color: var(--color-border-default); + cursor: pointer; + font-size: 12px; + padding: 2px 5px; + border-radius: 3px; + bottom: 5px; + right: 5px; +} +button.idoc-toggle-previw:hover { + color: var(--color-theme-text); +} diff --git a/css/main.css b/css/main.css new file mode 100644 index 000000000..d61310045 --- /dev/null +++ b/css/main.css @@ -0,0 +1,338 @@ +[data-color-mode*='dark'], +[data-color-mode*='dark'] body { + --color-header-bg: #3a3a3a8f; + --color-header-border: #21262d7a; + --color-hover: #ffffff1c; + --color-hoc-bg: #fffefe08; + + --color-border-default: #d0d7de; + --color-accent-fg: #0969da; + --color-accent-emphasis: #0969da; + --color-danger-fg: #d1242f; + --color-danger-emphasis: #cf222e; + --color-attention-fg: #9a6700; + --color-attention-emphasis: #9a6700; + --color-done-fg: #8250df; + --color-done-emphasis: #8250df; + --color-success-fg: #1a7f37; + --color-success-emphasis: #1f883d; +} + +[data-color-mode*='light'], +[data-color-mode*='light'] body { + --color-header-bg: #ffffff52; + --color-header-border: #0000001c; + --color-hover: #0000001a; + --color-hoc-bg: #00000008; + + --color-border-default: #30363d; + --color-accent-fg: #58a6ff; + --color-accent-emphasis: #1f6feb; + --color-danger-fg: #f85149; + --color-danger-emphasis: #da3633; + --color-attention-fg: #d29922; + --color-attention-emphasis: #9e6a03; + --color-done-fg: #a371f7; + --color-done-emphasis: #8957e5; + --color-success-fg: #3fb950; + --color-success-emphasis: #238636; +} + +*, +:after, +:before { + box-sizing: border-box; +} + +html { + scroll-behavior: smooth; +} + +body { + margin: 0; + font-size: 14px; + font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; +} + +a { + text-decoration: none; + color: var(--color-accent-fg); +} +a:hover { + text-decoration: underline; +} + +.warpper { + max-width: 960px; + margin: 0 auto; +} + +.warpper dark-mode { + font-size: 18px; +} + +markdown-style { + min-height: 60vh; + grid-area: main; + margin-bottom: 18px !important; +} +markdown-style img { + background-color: transparent !important; +} + +.warpper-content { + padding: 0 20px; + padding-top: 32px; + margin-top: 48px; + display: grid; + grid-template-columns: minmax(0, 3.5fr) minmax(0, 15rem); + grid-template-areas: 'main toc'; + grid-gap: 18px; + gap: 18px; +} +.warpper-content.sidebar { + grid-template-columns: 180px minmax(0, 3.5fr) minmax(0, 15rem); + grid-template-areas: 'sidebar main toc'; +} +.warpper-content.notocs { + grid-template-columns: minmax(0, 3.5fr); + grid-template-areas: 'main'; +} +.warpper-content.sidebar.notocs { + grid-template-columns: 180px minmax(0, 3.5fr); + grid-template-areas: 'sidebar main'; +} + +nav.tocs .is-position-fixed { + top: 58px !important; + max-height: calc(100% - 68px); +} +nav.tocs { + position: relative; + grid-area: toc; +} +nav.tocs p { + color: var(--color-fg-muted); + margin-bottom: 0; +} +nav.tocs a { + color: var(--color-fg-muted); + display: block; + padding: 0 5px; +} +nav.tocs .inner { + padding: 10px 10px 10px 10px; + background-color: var(--color-hoc-bg); + max-width: 240px; + width: 240px; +} + +a.gototop { + position: fixed; + bottom: 10px; + right: 10px; + display: inline-block; + background: var(--color-theme-text); + padding: 5px; + border-radius: 5px; + z-index: 9999; + color: var(--color-theme-bg); + font-size: 10px; + opacity: 0; + transition: all 0.3s; +} +a.gototop:hover { + opacity: 1; +} + +.header { + position: fixed; + width: 100%; + background: var(--color-header-bg); + backdrop-filter: saturate(180%) blur(0.4rem); + background-color: var(--color-header-bg); + border-bottom: 1px solid var(--color-header-border); + z-index: 99; + top: 0; +} + +.header .inner { + display: flex; + justify-content: space-between; + min-height: 45px; + padding-left: 10px; + padding-right: 10px; +} +.header .logo { + font-weight: bold; + display: flex; + color: var(--color-theme-text); + align-items: center; +} +.header .logo:hover { + text-decoration: none; +} +.header .logo .title { + padding-left: 8px; + display: flex; +} +.header .logo .title sup { + margin-top: -5px; + padding-left: 2px; + font-weight: normal; + color: var(--color-fg-subtle); +} +.header .logo img, +.header .logo svg { + height: 26px; + display: block; +} + +.header .content { + display: flex; + align-items: center; +} + +.header .menu { + padding: 0; + margin: 0; + display: flex; + list-style: none; + padding-right: 10px; +} +.header .menu li { + display: flex; + align-items: center; +} +.header a { + color: var(--color-theme-text); + font-weight: bold; +} +.header .menu a { + padding: 3px 7px; + font-size: 14px; + border-radius: 2px; +} +.header .menu a.active { + background-color: var(--color-hover); +} + +.header .github { + width: 18px; + height: 18px; + margin-right: 8px; +} + +section.article-footer { + display: flex; + align-items: center; + font-size: 14px; + justify-content: space-between; + margin-top: 12px; +} + +section.article-footer a { + display: flex; + align-items: center; +} + +.edit-button { + padding-right: 8px; +} +.edit-button svg { + height: 15px; + margin-right: 6px; +} + +section.article-footer .atime { + font-size: 12px; + color: var(--color-fg-muted); + margin-top: 2px; +} + +.previous { + display: flex; + align-items: center; + justify-content: space-between; + grid-gap: 12px; + gap: 12px; + background-color: var(--color-canvas-subtle); + padding: 10px; + font-size: 14px; + border-radius: 5px; + margin-top: 26px; +} +.previous a { + display: flex; + align-items: center; +} +.previous a.prev svg { + margin-right: 3px; +} +.previous a.next svg { + margin-left: 3px; +} + +.footer { + text-align: center; + border-top: 1px solid var(--color-header-border); + padding: 32px 0 110px 0; + color: var(--color-fg-muted); + font-size: 14px; +} + +.markdown-alert { + border-left: 0.25em solid var(--borderColor-default, var(--color-border-default)); + color: inherit; + margin-bottom: 16px; + padding: 0.5rem 1em; +} +.markdown-alert > :last-child { + margin-bottom: 0 !important; +} +.markdown-alert .markdown-alert-title { + align-items: center; + display: flex; + font-size: 14px; + font-weight: 500; + line-height: 1; +} +.markdown-alert .markdown-alert-title svg.octicon { + margin-right: 8px !important; + margin-right: var(--base-size-8, 8px) !important; +} +.markdown-alert.markdown-alert-note { + border-left-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); +} +.markdown-alert.markdown-alert-note .markdown-alert-title { + color: var(--color-accent-fg); + color: var(--fgColor-accent, var(--color-accent-fg)); +} +.markdown-alert.markdown-alert-tip { + border-left-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); +} +.markdown-alert.markdown-alert-tip .markdown-alert-title { + color: var(--color-success-fg); + color: var(--fgColor-success, var(--color-success-fg)); +} +.markdown-alert.markdown-alert-important { + border-left-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); +} +.markdown-alert.markdown-alert-important .markdown-alert-title { + color: var(--color-done-fg); + color: var(--fgColor-done, var(--color-done-fg)); +} +.markdown-alert.markdown-alert-warning { + border-left-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); +} +.markdown-alert.markdown-alert-warning .markdown-alert-title { + color: var(--color-attention-fg); + color: var(--fgColor-attention, var(--color-attention-fg)); +} +.markdown-alert.markdown-alert-caution { + border-left-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); +} +.markdown-alert.markdown-alert-caution .markdown-alert-title { + color: var(--color-danger-fg); + color: var(--fgColor-danger, var(--color-danger-fg)); +} diff --git a/css/media.css b/css/media.css new file mode 100644 index 000000000..da524359e --- /dev/null +++ b/css/media.css @@ -0,0 +1,52 @@ +@media only screen and (min-width: 1024px) { + footer.article-footer, + .warpper { + max-width: 1200px; + } +} + +@media screen and (max-width: 900px) { + .warpper-content { + grid-template-columns: minmax(0, 3.5fr); + grid-template-areas: 'main'; + } + .warpper-content.sidebar { + grid-template-areas: 'sidebar main'; + grid-template-columns: 180px minmax(0, 41rem); + } + nav.tocs { + display: none; + } +} + +@media screen and (max-width: 600px) { + .warpper-content { + grid-template-columns: minmax(0, 3.5fr); + grid-template-areas: 'main'; + } + .warpper-content.sidebar { + grid-template-areas: 'main'; + grid-template-columns: minmax(0, 41rem); + } + nav.tocs, + .sidebar-border { + display: none; + } +} + +@media print { + .header, + nav.tocs, + section.article-footer, + .sidebar-border, + .previous, + .footer, + a.gototop { + display: none; + } + .warpper-content { + margin: 0; + padding: 0; + display: initial; + } +} diff --git a/css/sidebar.css b/css/sidebar.css new file mode 100644 index 000000000..11a6999fe --- /dev/null +++ b/css/sidebar.css @@ -0,0 +1,41 @@ +.sidebar-border { + border-right: 1px solid var(--color-border-muted); +} +aside.sidebar { + min-width: 160px; + margin-left: -5px; + padding-bottom: 20px; + padding-right: 6px; + position: -webkit-sticky; + position: sticky; + top: 56px; + grid-area: sidebar; + overflow: auto; + max-height: calc(100vh - 56px); + padding-bottom: 36px; +} +aside.sidebar label:first-child { + padding-top: 0 !important; +} +aside.sidebar a:first-child { + margin-top: 0 !important; +} +aside.sidebar label { + font-size: 12px; + padding: 5px 0 3px 0; + display: block; + padding-left: 5px !important; +} +aside.sidebar a.active { + color: var(--color-prettylights-syntax-markup-inserted-text); + background-color: var(--color-hover); +} +aside.sidebar a { + display: block; + padding: 3px 5px 3px 5px; + border-radius: 3px; + margin: 3px 0; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} diff --git a/css/tocbot.css b/css/tocbot.css new file mode 100644 index 000000000..3c374ce6e --- /dev/null +++ b/css/tocbot.css @@ -0,0 +1,52 @@ +.tocs { + line-height: 26px; +} +nav.tocs > .inner { + position: sticky; + top: 56px; + overflow: auto; + max-height: calc(100vh - 56px); +} +nav.tocs .inner > .tocs-list { + overflow: hidden; + position: relative; +} +.tocs .tocs-list li { + list-style: none; +} +.tocs-list { + margin: 0; + padding-left: 10px; +} +.tocs-list.is-collapsed { + max-height: 0; + overflow: hidden; + transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); +} +.tocs-list.is-collapsed.is-open { + max-height: 9999px; + transition: max-height 0.3s cubic-bezier(1, 0, 1, 0); +} + +.tocs-link { + height: 100%; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} +.tocs-link::before { + background-color: var(--color-border-default); + content: ' '; + display: inline-block; + height: inherit; + left: 0; + margin-top: -1px; + position: absolute; + width: 2px; +} +.tocs-link.is-active-link { + font-weight: 700; +} +.tocs-link.is-active-link::before { + background-color: #54bc4b; +} diff --git a/docs/attribute/accept-charset.md b/docs/attribute/accept-charset.md deleted file mode 100644 index c91a50da5..000000000 --- a/docs/attribute/accept-charset.md +++ /dev/null @@ -1,42 +0,0 @@ -HTML accept-charset 属性 -=== - -## 定义和用法 - -`accept-charset` 属性指定要用于表单提交的字符编码。 - -默认值为保留字符串“UNKNOWN”(表示编码等于包含 [\
](../tags/form.md) 元素的文档的编码)。 - -## 适用于 - -`accept-charset` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\](../tags/form.md) | [accept-charset](../tags/form_accept_charset.md) | - - -### Form 示例 - -具有 accept-charset 属性的表单: - -```html idoc:preview:iframe - - First name:
- Last name:
- -
-``` - -## 浏览器支持 - -| Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| accept-charset | Yes | Yes | Yes | Yes | Yes | - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/accept.md b/docs/attribute/accept.md deleted file mode 100644 index 5d68ea68e..000000000 --- a/docs/attribute/accept.md +++ /dev/null @@ -1,55 +0,0 @@ -HTML accept 属性 -=== - -## 定义和用法 - -accept 属性指定服务器接受的文件类型(可以通过文件上传提交)。 - -**注意:** accept 属性只能与 \ 一起使用。 - -**提示:** 不要将此属性用作验证工具。 文件上传应在服务器上进行验证。 - -## 适用于 - -`accept` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\](../tags/input.md) | [accept](../tags/input_accept.md) | - - -## Input 示例 - -指定服务器只接受文件上传中的图片文件: - -```html idoc:preview:iframe -
- - -
-``` - -支持图片文件选择的同时,还支持 `.heic` 文件选择。 - -```html idoc:preview:iframe -
- - -
-``` - -## 浏览器支持 - -表中的数字指定了完全支持该属性的第一个浏览器版本。 - -| Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| accept | 8.0 | 10.0 | 4.0 | 6.0 | 15.0 | - - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg diff --git a/docs/attribute/accesskey.md b/docs/attribute/accesskey.md deleted file mode 100644 index 9c84d3933..000000000 --- a/docs/attribute/accesskey.md +++ /dev/null @@ -1,57 +0,0 @@ -HTML accesskey 属性 -=== - -## 定义和用法 - -`accesskey` 属性指定激活/聚焦元素的快捷键。 - -**注意:** 不同浏览器访问快捷键的方式不同: - -| 浏览器 | Windows | Linux | Mac | -| ----- | ----- | ----- | ----- | -| Internet Explorer | \[Alt] + *accesskey* | N/A | | -| Chrome | \[Alt] + *accesskey* | \[Alt] + *accesskey* | \[Control] \[Alt] + *accesskey* | -| Firefox | \[Alt] \[Shift] + *accesskey* | \[Alt] \[Shift] + *accesskey* | \[Control] \[Alt] + *accesskey* | -| Safari | \[Alt] + *accesskey* | N/A | \[Control] \[Alt] + *accesskey* | -| Opera | Opera 15 或更高版本: \[Alt] + *accesskey*
Opera 12.1 或更高版本: \[Shift] \[Esc] + *accesskey* | | | - - -但是,在大多数浏览器中,快捷方式可以设置为另一种组合键。 - -**提示:** 如果多个元素具有相同的访问密钥,则行为不同: - -* IE、Firefox:按下访问键的下一个元素将被激活 -* Chrome、Safari:按下访问键的最后一个元素将被激活 -* Opera:按下访问键的第一个元素将被激活 - -## 适用于 - -`accesskey` 是 [全局属性](../reference/standardattributes.md) 的一部分,可用于任何 HTML 元素。 - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| 全部 [HTML](../tags/README.md) 元素 | [accesskey](./global/accesskey.md) | - - -### 示例 - -具有指定访问键的两个超链接: - -```html idoc:preview:iframe -HTML5
-C 语言 -``` - -## 浏览器支持 - -| Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| accesskey | Yes | Yes | Yes | Yes | Yes | - - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/action.md b/docs/attribute/action.md deleted file mode 100644 index 5f7d427e1..000000000 --- a/docs/attribute/action.md +++ /dev/null @@ -1,40 +0,0 @@ -HTML action 属性 -=== - -## 定义和用法 - -`action` 属性指定提交表单时将表单数据发送到何处。 - -## 适用于 - -`action` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\
](../tags/form.md) | [action](../tags/form_action.md) | - - -## 示例 - -提交时,将表单数据发送到名为 `/action_page.php` 的文件(以处理输入): - -```html idoc:preview:iframe - - First name:
- Last name:
- -
-``` - -## 浏览器支持 - -| Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| action | Yes | Yes | Yes | Yes | Yes | - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg diff --git a/docs/attribute/alt.md b/docs/attribute/alt.md deleted file mode 100644 index 823884823..000000000 --- a/docs/attribute/alt.md +++ /dev/null @@ -1,75 +0,0 @@ -HTML alt 属性 -=== - -## 定义和用法 - -如果用户由于某种原因无法查看图像(由于连接速度慢、src 属性中的错误或用户使用屏幕阅读器),则 alt 属性提供图像的替代信息。 - -**注意:** [\](../tags/img.md) 元素需要 alt 属性。 - -**注意:** 对于 [\](../tags/input.md) 元素,alt 属性只能与 [\](../tags/input_type_image.md) 一起使用。 - -**提示:** 要为图像创建工具提示,请使用 [title](../reference/standardattributes.md) 属性! - -## 适用于 - -`alt` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\](../tags/area.md) | [alt](../tags/area_alt.md) | -| [\](../tags/img.md) | [alt](../tags/img_alt.md) | -| [\](../tags/input.md) | [alt](../tags/input_alt.md) | - - -## 示例 - -### Area 示例 - -带有可点击区域的图像地图: - -```html idoc:preview:iframe -Workplace - - Computer - Phone - Cup of coffee - -``` - -### Img 示例 - -图片找不到,指定 `alt` 内容替代文本的图像: - -```html idoc:preview:iframe -Smiley face -``` - -### Input 示例 - -带有代表提交按钮的图像的 HTML 表单,图片不存在显示 `alt` 内容: - -```html idoc:preview:iframe -
- First name:
- -
-``` - -## 浏览器支持 - -`alt` 属性对每个元素都有以下浏览器支持: - -| 元素 Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| area | Yes | Yes | Yes | Yes | Yes | -| img | Yes | Yes | Yes | Yes | Yes | -| input | Yes | Yes | Yes | Yes | Yes | - - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/async.md b/docs/attribute/async.md deleted file mode 100644 index 99db3e929..000000000 --- a/docs/attribute/async.md +++ /dev/null @@ -1,49 +0,0 @@ -HTML async 属性 -=== - -## 定义和用法 - -`async` 属性是一个布尔属性。 - -如果存在,它指定脚本将在可用时立即异步执行。 - -**注意:** `async` 属性仅适用于外部脚本(并且仅应在存在 `src` 属性时使用)。 - -**注意:** 有几种方法可以执行外部脚本: - -* 如果 `async` 存在:脚本与页面的其余部分异步执行(脚本将在页面继续解析时执行) -* 如果 `async` 不存在且 [`defer`](../tags/script_defer.md) 存在:脚本在页面完成解析后执行 -* 如果 `async` 或 [`defer`](../tags/script_defer.md) 都不存在:在浏览器继续解析页面之前立即获取并执行脚本 - -## 适用于 - -`async` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\ -``` - -## 浏览器支持 - -表中的数字指定了完全支持该属性的第一个浏览器版本。 - -| Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| async | Yes | 10.0 | 3.6 | Yes | Yes | - - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/autocomplete.md b/docs/attribute/autocomplete.md deleted file mode 100644 index ddd4b1736..000000000 --- a/docs/attribute/autocomplete.md +++ /dev/null @@ -1,65 +0,0 @@ -HTML autocomplete 属性 -=== - -## 定义和用法 - -`autocomplete` 属性指定表单或输入字段是否应该打开或关闭自动完成功能。 - -自动完成允许浏览器预测值。 当用户开始输入字段时,浏览器应根据之前输入的值显示填充字段的选项。 - -**提示:** 可以为表单设置“开启”自动完成功能,为特定输入字段设置“关闭”功能,反之亦然。 - -**注意:** `autocomplete` 属性适用于以下 [``](../tags/input.md) 类型:[文本](../tags/input_type_text.md)、[搜索](../tags/input_type_search.md)、[url](../tags/input_type_url.md)、[电话](../tags/input_type_tel.md)、[电子邮件](../tags/input_type_email.md)、[密码](../tags/input_type_password.md)、[日期选择器](../tags/input_type_date.md)、[范围](../tags/input_type_range.md)和[颜色](../tags/input_type_color.md)。 - -## 适用于 - -`autocomplete` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\
](../tags/form.md) | [autocomplete](../tags/form_autocomplete.md) | -| [\](../tags/input.md) | [autocomplete](../tags/input_autocomplete.md) | - - -## 示例 - -### Form 示例 - -具有自动完成功能的表单: - -```html idoc:preview:iframe - - First name:
- E-mail:
- -
-``` - -### Input 示例 - -具有自动完成功能的 HTML 表单(一个输入字段关闭): - -```html idoc:preview:iframe -
- First name:
- Last name:
- E-mail:
- -
-``` - -## 浏览器支持 - -`autocomplete` 属性对每个元素都有以下浏览器支持: - -| 元素 Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| [form](../tags/form.md) | Yes | Yes | 4.0 | 5.2 | 15.0 | -| [input](../tags/input.md) | 17.0 | 5.0 | 4.0 | 5.2 | 9.6 | - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/autofocus.md b/docs/attribute/autofocus.md deleted file mode 100644 index 9f368b7c8..000000000 --- a/docs/attribute/autofocus.md +++ /dev/null @@ -1,70 +0,0 @@ -HTML autofocus 属性 -=== - -## 定义和用法 - -`autofocus` 属性是一个布尔属性。 - -当存在时,它指定元素在页面加载时应该自动获得焦点。 - -## 适用于 - -`autofocus` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\
- - -``` - -### Input 示例 - -具有两个提交按钮的 HTML 表单,具有不同的操作: - -```html idoc:preview:iframe -
- First name:
- Last name:
-
- -
-``` - -## 浏览器支持 - -`formaction` 属性对每个元素都有以下浏览器支持: - -| 元素 Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| [\ - -``` - -## 定义和使用 - -`id` 属性为 HTML 元素指定一个唯一的 id(该值在 HTML 文档中必须是唯一的)。 - -`id` 属性最常用于指向样式表中的样式,并通过 JavaScript(通过 HTML DOM)来操作具有特定 `id` 的元素。 - -## 浏览器支持 - -表中的数字指定了完全支持该属性的第一个浏览器版本。 - -|   | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ---- | ---- | ---- | ---- | ---- | ---- | -| __<id>__ | Yes | Yes | Yes | Yes | Yes | - - -## 语法 - -```html - -``` - -## 属性值 - -值 Value | 描述 Description ----- | ---- -id | 指定元素的唯一 ID。 命名规则:
1. 必须包含至少一个字符
2. 不得包含任何空格字符 - - -[1]: ../../assets/chrome.svg -[2]: ../../assets/edge.svg -[3]: ../../assets/firefox.svg -[4]: ../../assets/safari.svg -[5]: ../../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/global/lang.md b/docs/attribute/global/lang.md deleted file mode 100644 index aea6e9640..000000000 --- a/docs/attribute/global/lang.md +++ /dev/null @@ -1,43 +0,0 @@ -HTML `lang` 属性 -=== - -## 实例 - -一段文本中的一些 `法语` 文本: - -```html idoc:preview -

Ceci est un paragraphe.

-``` - -## 定义和使用 - -`lang` 属性指定元素内容的语言。 - -常见的例子是英语的 `en`,西班牙语的 `es`,法语的 `fr` 等等。 - -## 浏览器支持 - -表中的数字指定了完全支持该属性的第一个浏览器版本。 - -|   | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ---- | ---- | ---- | ---- | ---- | ---- | -| __<lang>__ | Yes | Yes | Yes | Yes | Yes | - - -## 语法 - -```html - -``` - -## 属性值 - -值 Value | 描述 Description ----- | ---- -language_code | 指定元素内容的语言代码。[语言代码参考](../../reference/language_codes.md) - -[1]: ../../assets/chrome.svg -[2]: ../../assets/edge.svg -[3]: ../../assets/firefox.svg -[4]: ../../assets/safari.svg -[5]: ../../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/global/spellcheck.md b/docs/attribute/global/spellcheck.md deleted file mode 100644 index d9b3922b0..000000000 --- a/docs/attribute/global/spellcheck.md +++ /dev/null @@ -1,52 +0,0 @@ -HTML `spellcheck` 属性 -=== - -是否要检查元素的拼写和语法。 - -## 实例 - -带有拼写检查的可编辑段落: - -```html idoc:preview -

这是一个段落,不检查英文单词拼写。

- - -``` - -## 定义和使用 - -`spellcheck` 属性指定是否要检查元素的拼写和语法。 - -可以对以下内容进行拼写检查: - -- ``元素中的文本值(不是密码) -- ` -``` - -## 浏览器支持 - -`maxlength` 属性对每个元素都有以下浏览器支持: - -| 元素 Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| [\](../tags/input.md) | 1.0 | 2.0 | 1.0 | 1.0 | 1.0 | -| [\ - - -``` - -## 浏览器支持 - -`multiple` 属性对每个元素都有以下浏览器支持: - -| 元素 Element | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| button | Yes | Yes | Yes | Yes | Yes | -| fieldset | Yes | ❌ 不支持 | Yes | Yes | Yes | -| form | Yes | Yes | Yes | Yes | Yes | -| iframe | Yes | Yes | Yes | Yes | Yes | -| input | 1.0 | 2.0 | 1.0 | 1.0 | 1.0 | -| map | Yes | Yes | Yes | Yes | Yes | -| meta | Yes | Yes | Yes | Yes | Yes | -| object | Yes | Yes | Yes | Yes | Yes | -| output | 10.0 | ❌ 不支持 | 4.0 | 5.1 | 11.0 | -| param | Yes | Yes | Yes | Yes | Yes | -| select | Yes | Yes | Yes | Yes | Yes | -| textarea | Yes | Yes | Yes | Yes | Yes | - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/novalidate.md b/docs/attribute/novalidate.md deleted file mode 100644 index 61c64ad7a..000000000 --- a/docs/attribute/novalidate.md +++ /dev/null @@ -1,43 +0,0 @@ -HTML novalidate 属性 -=== - -## 定义和用法 - -`novalidate` 属性是一个布尔属性。 - -当存在时,它指定表单数据(输入)在提交时不应该被验证。 - -## 适用于 - -`novalidate` 属性可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\
](../tags/form.md) | [novalidate](../tags/form_novalidate.md) | - - -## 示例 - -指示表单在提交时不被验证: - -```html idoc:preview:iframe - - E-mail: - -
-``` - -## 浏览器支持 - -表中的数字指定了完全支持该属性的第一个浏览器版本。 - -| 属性 Attribute | ![chrome][1] | ![edge][2] | ![firefox][3] | ![safari][4] | ![opera][5] | -| ------- | --- | --- | --- | --- | --- | -| novalidate | 10.0 | 10.0 | 4.0 | ❌ 不支持 | 10.6 | - - -[1]: ../assets/chrome.svg -[2]: ../assets/edge.svg -[3]: ../assets/firefox.svg -[4]: ../assets/safari.svg -[5]: ../assets/opera.svg \ No newline at end of file diff --git a/docs/attribute/onabort.md b/docs/attribute/onabort.md deleted file mode 100644 index ecf4cbdf1..000000000 --- a/docs/attribute/onabort.md +++ /dev/null @@ -1,50 +0,0 @@ -HTML onabort 属性 -=== - -## 定义和用法 - -`onabort` 属性定义了在媒体文件加载中止时要运行的脚本。 - -此事件在媒体数据下载被中止时发生,而不是因为错误。 - -## 适用于 - -`onabort` 属性是 [Event Attributes](../reference/eventattributes.md) 的一部分,可用于以下元素: - -| 元素 Element | 属性 Attribute | -| ----- | ----- | -| [\