├── .github └── workflows │ ├── lint.yaml │ ├── release.yml │ ├── reusable-build-doc.yml │ ├── reusable-custom-domain.yml │ └── reusable-get-build-targets.yml ├── .gitignore ├── .gitmodules ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc.mjs ├── .textlintrc ├── CLAUDE.md ├── Makefile ├── README.md ├── data ├── json │ ├── faq-tags.json │ ├── guideline-categories.json │ ├── info.json │ ├── schemas │ │ ├── check.json │ │ ├── common.json │ │ ├── faq.json │ │ └── guideline.json │ └── wcag-sc.json └── yaml │ ├── checks │ ├── code │ │ ├── 0071.yaml │ │ ├── 0311.yaml │ │ ├── 0371.yaml │ │ ├── 0401.yaml │ │ ├── 0402.yaml │ │ ├── 0431.yaml │ │ ├── 0461.yaml │ │ ├── 0521.yaml │ │ ├── 0551.yaml │ │ ├── 0552.yaml │ │ ├── 0553.yaml │ │ ├── 0554.yaml │ │ ├── 0571.yaml │ │ ├── 0586.yaml │ │ ├── 0587.yaml │ │ ├── 0611.yaml │ │ ├── 0671.yaml │ │ ├── 0672.yaml │ │ ├── 0851.yaml │ │ ├── 0911.yaml │ │ ├── 0912.yaml │ │ ├── 0941.yaml │ │ └── 1181.yaml │ ├── design │ │ ├── 0001.yaml │ │ ├── 0002.yaml │ │ ├── 0003.yaml │ │ ├── 0031.yaml │ │ ├── 0032.yaml │ │ ├── 0091.yaml │ │ ├── 0092.yaml │ │ ├── 0151.yaml │ │ ├── 0152.yaml │ │ ├── 0153.yaml │ │ ├── 0154.yaml │ │ ├── 0155.yaml │ │ ├── 0211.yaml │ │ ├── 0241.yaml │ │ ├── 0242.yaml │ │ ├── 0271.yaml │ │ ├── 0301.yaml │ │ ├── 0331.yaml │ │ ├── 0332.yaml │ │ ├── 0333.yaml │ │ ├── 0334.yaml │ │ ├── 0361.yaml │ │ ├── 0362.yaml │ │ ├── 0391.yaml │ │ ├── 0421.yaml │ │ ├── 0451.yaml │ │ ├── 0511.yaml │ │ ├── 0541.yaml │ │ ├── 0542.yaml │ │ ├── 0543.yaml │ │ ├── 0581.yaml │ │ ├── 0631.yaml │ │ ├── 0661.yaml │ │ ├── 0721.yaml │ │ ├── 0722.yaml │ │ ├── 0751.yaml │ │ ├── 0781.yaml │ │ ├── 0811.yaml │ │ ├── 0841.yaml │ │ ├── 0931.yaml │ │ ├── 0961.yaml │ │ ├── 1021.yaml │ │ ├── 1051.yaml │ │ ├── 1081.yaml │ │ ├── 1111.yaml │ │ ├── 1141.yaml │ │ ├── 1171.yaml │ │ ├── 1201.yaml │ │ ├── 1231.yaml │ │ ├── 1261.yaml │ │ ├── 1291.yaml │ │ ├── 1292.yaml │ │ ├── 1321.yaml │ │ ├── 1381.yaml │ │ ├── 1421.yaml │ │ ├── 1451.yaml │ │ ├── 1481.yaml │ │ ├── 1511.yaml │ │ ├── 1541.yaml │ │ ├── 1542.yaml │ │ ├── 1571.yaml │ │ ├── 1601.yaml │ │ └── 1631.yaml │ └── product │ │ ├── 0021.yaml │ │ ├── 0051.yaml │ │ ├── 0081.yaml │ │ ├── 0111.yaml │ │ ├── 0112.yaml │ │ ├── 0141.yaml │ │ ├── 0171.yaml │ │ ├── 0172.yaml │ │ ├── 0173.yaml │ │ ├── 0174.yaml │ │ ├── 0201.yaml │ │ ├── 0231.yaml │ │ ├── 0261.yaml │ │ ├── 0262.yaml │ │ ├── 0321.yaml │ │ ├── 0322.yaml │ │ ├── 0323.yaml │ │ ├── 0324.yaml │ │ ├── 0325.yaml │ │ ├── 0326.yaml │ │ ├── 0351.yaml │ │ ├── 0352.yaml │ │ ├── 0411.yaml │ │ ├── 0412.yaml │ │ ├── 0413.yaml │ │ ├── 0441.yaml │ │ ├── 0471.yaml │ │ ├── 0531.yaml │ │ ├── 0561.yaml │ │ ├── 0562.yaml │ │ ├── 0591.yaml │ │ ├── 0592.yaml │ │ ├── 0621.yaml │ │ ├── 0651.yaml │ │ ├── 0681.yaml │ │ ├── 0682.yaml │ │ ├── 0711.yaml │ │ ├── 0771.yaml │ │ ├── 0801.yaml │ │ ├── 0861.yaml │ │ ├── 0862.yaml │ │ ├── 0891.yaml │ │ ├── 0921.yaml │ │ ├── 0922.yaml │ │ ├── 0951.yaml │ │ ├── 0956.yaml │ │ ├── 0957.yaml │ │ ├── 1071.yaml │ │ ├── 1101.yaml │ │ ├── 1131.yaml │ │ ├── 1191.yaml │ │ ├── 1221.yaml │ │ ├── 1251.yaml │ │ ├── 1281.yaml │ │ ├── 1311.yaml │ │ ├── 1312.yaml │ │ ├── 1313.yaml │ │ ├── 1411.yaml │ │ ├── 1441.yaml │ │ ├── 1471.yaml │ │ ├── 1501.yaml │ │ ├── 1531.yaml │ │ ├── 1561.yaml │ │ ├── 1562.yaml │ │ ├── 1591.yaml │ │ ├── 1621.yaml │ │ └── 1651.yaml │ ├── faq │ ├── d0001.yaml │ ├── d0002.yaml │ ├── d0003.yaml │ ├── d0004.yaml │ ├── p0001.yaml │ ├── p0002.yaml │ ├── p0003.yaml │ ├── p0004.yaml │ ├── p0005.yaml │ ├── p0006.yaml │ ├── p0007.yaml │ ├── p0008.yaml │ └── p0009.yaml │ └── gl │ ├── dynamic_content │ ├── focus.yaml │ ├── hover-magnify.yaml │ ├── hover.yaml │ ├── maintain-dom-tree.yaml │ ├── no-flashing.yaml │ ├── no-interrupt.yaml │ ├── pause-movement.yaml │ ├── pause-refresh.yaml │ └── status.yaml │ ├── form │ ├── color-only.yaml │ ├── continue.yaml │ ├── dynamic-content-change.yaml │ ├── dynamic-content-focus.yaml │ ├── errors-cancel.yaml │ ├── errors-correction.yaml │ ├── errors-identify.yaml │ ├── hidden-label.yaml │ ├── keyboard-operable.yaml │ ├── label.yaml │ ├── tab-order.yaml │ ├── target-size-mobile.yaml │ ├── target-size.yaml │ └── timing.yaml │ ├── icon │ ├── color-only.yaml │ ├── consistent.yaml │ ├── contrast.yaml │ ├── target-size-mobile.yaml │ ├── target-size.yaml │ └── visible-label.yaml │ ├── image │ ├── adjacent-contrast.yaml │ ├── color-only.yaml │ ├── decorative.yaml │ ├── description.yaml │ ├── mobile-text-contrast.yaml │ └── text-contrast.yaml │ ├── images_of_text │ ├── avoid-usage.yaml │ ├── mobile-text-contrast.yaml │ ├── provide-text.yaml │ └── text-contrast.yaml │ ├── input_device │ ├── focus-indicator.yaml │ ├── focus.yaml │ ├── independent.yaml │ ├── keyboard-operable.yaml │ ├── mobile-standard-gestures.yaml │ ├── no-trap.yaml │ ├── shortcut-keys.yaml │ ├── support-mobile-assistive-tech.yaml │ └── use-up-event.yaml │ ├── link │ ├── color-only.yaml │ ├── consistent-text.yaml │ ├── tab-order.yaml │ └── text.yaml │ ├── login_session │ ├── continue.yaml │ └── timing.yaml │ ├── markup │ ├── component-implementation.yaml │ ├── component.yaml │ ├── semantics.yaml │ └── valid.yaml │ ├── multimedia │ ├── background-sound.yaml │ ├── caption.yaml │ ├── no-trap.yaml │ ├── operable.yaml │ ├── pause-movement.yaml │ ├── perceivable.yaml │ ├── sign-language.yaml │ ├── text-alternative.yaml │ ├── transcript.yaml │ ├── video-description-no-exception.yaml │ └── video-description.yaml │ ├── page │ ├── consistent-navigation.yaml │ ├── headings.yaml │ ├── landmark.yaml │ ├── location.yaml │ ├── markup-main.yaml │ ├── markup-order.yaml │ ├── orientation.yaml │ ├── redundant-navigation.yaml │ └── title.yaml │ └── text │ ├── color-only.yaml │ ├── component-lang.yaml │ ├── contrast.yaml │ ├── customize.yaml │ ├── enlarge-settings.yaml │ ├── heading-label.yaml │ ├── mobile-contrast.yaml │ ├── mobile-enlarge-settings.yaml │ ├── multiple-modality.yaml │ ├── page-lang.yaml │ ├── phrase-lang.yaml │ ├── zoom-reflow.yaml │ └── zoom.yaml ├── en ├── Makefile └── source │ ├── _static │ ├── a11y-gl-ogp.png │ ├── a11y-gl.css │ ├── copylink.js │ └── samples │ │ ├── aria-live-basic.html │ │ ├── aria-live-timer.html │ │ ├── lang-incorrect.html │ │ └── lang-partial.html │ ├── _templates │ ├── categories │ ├── dynamic_content.rst │ ├── form.rst │ ├── icon.rst │ ├── image.rst │ ├── images_of_text.rst │ ├── index.rst │ ├── input_device.rst │ ├── link.rst │ ├── login_session.rst │ ├── markup.rst │ ├── multimedia.rst │ ├── page.rst │ └── text.rst │ ├── checks │ ├── checklist.rst │ ├── checksheet.rst │ ├── examples │ │ ├── android-tb.rst │ │ ├── axe.rst │ │ ├── index.rst │ │ ├── ios-vo.rst │ │ ├── keyboard.rst │ │ ├── macos-vo.rst │ │ ├── misc.rst │ │ └── nvda.rst │ └── index.rst │ ├── conf.py │ ├── docutils.conf │ ├── explanations │ ├── axe.rst │ ├── check-contrast.rst │ ├── check-tools.rst │ ├── color-only.rst │ ├── contrast.rst │ ├── dynamic_content-auto-updated.rst │ ├── dynamic_content-hover.rst │ ├── dynamic_content-maintain-dom-tree.rst │ ├── dynamic_content-status.rst │ ├── form-dynamic-content.rst │ ├── form-errors.rst │ ├── form-labeling.rst │ ├── grayscale.rst │ ├── image-text-alternative.rst │ ├── image-visual.rst │ ├── images_of_text-text-alternative.rst │ ├── images_of_text-usage.rst │ ├── index.rst │ ├── input_device-various.rst │ ├── keyboard-notrap.rst │ ├── link-text.rst │ ├── magnification.rst │ ├── markup-component.rst │ ├── markup-semantics.rst │ ├── mobile-a11y-basics.rst │ ├── multimedia-autoplay.rst │ ├── multimedia-content-access.rst │ ├── multimedia-perceivable.rst │ ├── nu-html-checker.rst │ ├── page-navigation.rst │ ├── page-orientation.rst │ ├── page-structure.rst │ ├── screen-reader-check-android-talkback.rst │ ├── screen-reader-check-ios-voiceover.rst │ ├── screen-reader-check-macos-voiceover.rst │ ├── screen-reader-check-nvda.rst │ ├── screen-reader-check.rst │ ├── tab-order-check.rst │ ├── target-size.rst │ ├── text-custom-css.rst │ ├── text-lang.rst │ ├── text-wording.rst │ └── timing.rst │ ├── img │ ├── a11y-tree-aria-label.png │ ├── axe │ │ ├── axe-1.png │ │ ├── axe-2.png │ │ ├── axe-3.png │ │ ├── axe-4.png │ │ ├── axe-6.png │ │ ├── axe-8.png │ │ ├── axe-9.png │ │ ├── axe-pager.png │ │ ├── axe-settings-best-practices.png │ │ └── axe-settings.png │ ├── faq │ │ └── d0002 │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ └── 05.png │ ├── grayscale │ │ ├── mac-settings-1.png │ │ ├── mac-settings-2.png │ │ ├── win-settings-1.png │ │ └── win-settings-2.png │ ├── macvo │ │ ├── macvo-settings-fnkey.png │ │ ├── macvo-settings-keyboard.png │ │ ├── macvo-util-commander-quicknav.png │ │ ├── macvo-util-commander-trackpad.png │ │ ├── macvo-util-general.png │ │ ├── macvo-util-visual.png │ │ └── macvo-welcome-dialog.png │ └── nvda │ │ ├── nvda-settings-browse_mode.png │ │ ├── nvda-settings-format.png │ │ ├── nvda-settings-general.png │ │ ├── nvda-settings-mouse.png │ │ ├── nvda-settings-speech.png │ │ ├── nvda-settings-vision.png │ │ ├── nvda-welcome.png │ │ └── win11-settings-speech-recognition.png │ ├── index.rst │ ├── info │ ├── axe-rules.rst │ ├── index.rst │ ├── priority.rst │ └── wcag21-mapping.rst │ └── intro │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── intro.rst │ └── usage.rst ├── ja ├── Makefile └── source │ ├── _static │ ├── a11y-gl-ogp.png │ ├── a11y-gl.css │ ├── copylink.js │ └── samples │ │ ├── aria-live-basic.html │ │ ├── aria-live-timer.html │ │ ├── lang-incorrect.html │ │ └── lang-partial.html │ ├── _templates │ ├── breadcrumbs.html │ ├── footer.html │ └── layout.html │ ├── categories │ ├── dynamic_content.rst │ ├── form.rst │ ├── icon.rst │ ├── image.rst │ ├── images_of_text.rst │ ├── index.rst │ ├── input_device.rst │ ├── link.rst │ ├── login_session.rst │ ├── markup.rst │ ├── multimedia.rst │ ├── page.rst │ └── text.rst │ ├── checks │ ├── checklist.rst │ ├── checksheet.rst │ ├── examples │ │ ├── android-tb.rst │ │ ├── axe.rst │ │ ├── index.rst │ │ ├── ios-vo.rst │ │ ├── keyboard.rst │ │ ├── macos-vo.rst │ │ ├── misc.rst │ │ └── nvda.rst │ └── index.rst │ ├── conf.py │ ├── docutils.conf │ ├── explanations │ ├── axe.rst │ ├── check-contrast.rst │ ├── check-tools.rst │ ├── color-only.rst │ ├── contrast.rst │ ├── dynamic_content-auto-updated.rst │ ├── dynamic_content-hover.rst │ ├── dynamic_content-maintain-dom-tree.rst │ ├── dynamic_content-status.rst │ ├── form-dynamic-content.rst │ ├── form-errors.rst │ ├── form-labeling.rst │ ├── grayscale.rst │ ├── image-text-alternative.rst │ ├── image-visual.rst │ ├── images_of_text-text-alternative.rst │ ├── images_of_text-usage.rst │ ├── index.rst │ ├── input_device-various.rst │ ├── keyboard-notrap.rst │ ├── link-text.rst │ ├── magnification.rst │ ├── markup-component.rst │ ├── markup-semantics.rst │ ├── mobile-a11y-basics.rst │ ├── multimedia-autoplay.rst │ ├── multimedia-content-access.rst │ ├── multimedia-perceivable.rst │ ├── nu-html-checker.rst │ ├── page-navigation.rst │ ├── page-orientation.rst │ ├── page-structure.rst │ ├── screen-reader-check-android-talkback.rst │ ├── screen-reader-check-ios-voiceover.rst │ ├── screen-reader-check-macos-voiceover.rst │ ├── screen-reader-check-nvda.rst │ ├── screen-reader-check.rst │ ├── tab-order-check.rst │ ├── target-size.rst │ ├── text-custom-css.rst │ ├── text-lang.rst │ ├── text-wording.rst │ └── timing.rst │ ├── img │ ├── a11y-tree-aria-label.png │ ├── axe │ │ ├── axe-1.png │ │ ├── axe-2.png │ │ ├── axe-3.png │ │ ├── axe-4.png │ │ ├── axe-6.png │ │ ├── axe-8.png │ │ ├── axe-9.png │ │ ├── axe-pager.png │ │ ├── axe-settings-best-practices.png │ │ └── axe-settings.png │ ├── faq │ │ └── d0002 │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ └── 05.png │ ├── grayscale │ │ ├── mac-settings-1.png │ │ ├── mac-settings-2.png │ │ ├── win-settings-1.png │ │ └── win-settings-2.png │ ├── macvo │ │ ├── macvo-settings-fnkey.png │ │ ├── macvo-settings-keyboard.png │ │ ├── macvo-util-commander-quicknav.png │ │ ├── macvo-util-commander-trackpad.png │ │ ├── macvo-util-general.png │ │ ├── macvo-util-visual.png │ │ └── macvo-welcome-dialog.png │ └── nvda │ │ ├── nvda-settings-browse_mode.png │ │ ├── nvda-settings-format.png │ │ ├── nvda-settings-general.png │ │ ├── nvda-settings-mouse.png │ │ ├── nvda-settings-speech.png │ │ ├── nvda-settings-vision.png │ │ ├── nvda-welcome.png │ │ ├── nvdacheat-desktop.png │ │ └── win10-settings-speech-recognition.png │ ├── index.rst │ ├── info │ ├── axe-rules.rst │ ├── index.rst │ ├── priority.rst │ └── wcag21-mapping.rst │ └── intro │ ├── ChangeLog │ ├── 2020 │ │ ├── 202004.0.rst │ │ ├── 202005.0.rst │ │ ├── 202005.1.rst │ │ ├── 202006.0.rst │ │ ├── 202007.0.rst │ │ ├── 202008.0.rst │ │ ├── 202009.0.rst │ │ ├── 202010.0.rst │ │ └── 202011.0.rst │ ├── 2021 │ │ ├── 202101.0.rst │ │ ├── 202101.1.rst │ │ ├── 202102.0.rst │ │ ├── 202103.0.rst │ │ ├── 202104.0.rst │ │ ├── 202105.0.rst │ │ ├── 202106.0.rst │ │ ├── 202107.0.rst │ │ ├── 202110.0.rst │ │ ├── 202110.1.rst │ │ ├── 202110.2.rst │ │ ├── 202111.0.rst │ │ └── 202112.0.rst │ ├── 2022 │ │ ├── 202201.0.rst │ │ ├── 202201.1.rst │ │ ├── 202202.0.rst │ │ ├── 202203.0.rst │ │ ├── 202205.0.rst │ │ ├── 202209.0.rst │ │ ├── 202209.1.rst │ │ └── 202210.0.rst │ ├── 2023 │ │ ├── 202301.0.rst │ │ ├── 202302.0.rst │ │ ├── 202303.0.rst │ │ ├── 202303.1.rst │ │ ├── 202303.2.rst │ │ ├── 202304.0.rst │ │ ├── 202304.1.rst │ │ ├── 202305.0.rst │ │ ├── 202306.0.rst │ │ ├── 202306.1.rst │ │ ├── 202307.0.rst │ │ ├── 202308.0.rst │ │ ├── 202309.0.rst │ │ ├── 202309.1.rst │ │ ├── 202310.0.rst │ │ ├── 202311.0.rst │ │ ├── 202311.1.rst │ │ ├── 202312.0.rst │ │ └── 202312.1.rst │ ├── 2024 │ │ ├── 202401.0.rst │ │ ├── 202403.0.rst │ │ ├── 202403.1.rst │ │ ├── 202404.0.rst │ │ ├── 202405.0.rst │ │ ├── 202408.0.rst │ │ ├── 202409.0.rst │ │ └── 202411.0.rst │ └── 2025 │ │ ├── 202504.0.rst │ │ ├── 202508.0.rst │ │ └── 202510.0.rst │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── intro.rst │ └── usage.rst ├── package.json ├── requirements-dev.txt ├── requirements.txt ├── tools ├── lib │ └── freee_a11y_gl │ │ ├── .flake8 │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── conftest.py │ │ ├── docs │ │ ├── API_REFERENCE.md │ │ └── CONFIGURATION.md │ │ ├── pyproject.toml │ │ ├── run_tests.py │ │ ├── src │ │ └── freee_a11y_gl │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── localization_config.py │ │ │ ├── message_config.py │ │ │ ├── path_config.py │ │ │ ├── tool_config.py │ │ │ └── validation_config.py │ │ │ ├── config_main.py │ │ │ ├── constants.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── config.yaml │ │ │ └── messages.yaml │ │ │ ├── error_recovery.py │ │ │ ├── exceptions.py │ │ │ ├── info_utils.py │ │ │ ├── initializer.py │ │ │ ├── logging_config.py │ │ │ ├── message_catalog.py │ │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ └── template_mixin.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── axe.py │ │ │ ├── base.py │ │ │ ├── check.py │ │ │ ├── content.py │ │ │ ├── faq │ │ │ │ ├── __init__.py │ │ │ │ ├── article.py │ │ │ │ └── tag.py │ │ │ └── reference.py │ │ │ ├── relationship_manager.py │ │ │ ├── settings.py │ │ │ ├── source.py │ │ │ ├── utils.py │ │ │ ├── validation_utils.py │ │ │ ├── version_utils.py │ │ │ ├── yaml_processor │ │ │ ├── __init__.py │ │ │ ├── process_yaml.py │ │ │ └── rst_processor.py │ │ │ └── yaml_validator.py │ │ └── tests │ │ ├── core │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_error_recovery.py │ │ ├── test_exceptions.py │ │ ├── test_info_utils.py │ │ ├── test_initializer.py │ │ ├── test_initializer_validation.py │ │ ├── test_logging_config.py │ │ ├── test_message_catalog.py │ │ ├── test_message_config_error_paths.py │ │ ├── test_path_config_error_paths.py │ │ ├── test_settings.py │ │ ├── test_source.py │ │ ├── test_utils.py │ │ ├── test_validation_utils.py │ │ ├── test_version_utils.py │ │ ├── test_yaml_validation_config.py │ │ └── test_yaml_validator.py │ │ ├── managers │ │ ├── __init__.py │ │ └── test_relationship_manager.py │ │ ├── mixins │ │ ├── __init__.py │ │ └── test_template_mixin.py │ │ ├── models │ │ ├── __init__.py │ │ ├── base_test.py │ │ ├── faq │ │ │ └── test_tag.py │ │ ├── test_axe.py │ │ ├── test_base.py │ │ ├── test_check.py │ │ ├── test_content.py │ │ ├── test_faq_article.py │ │ ├── test_guideline.py │ │ └── test_info_ref.py │ │ └── yaml_processor │ │ ├── __init__.py │ │ ├── test_process_yaml.py │ │ └── test_rst_processor.py └── scripts │ ├── yaml2rst │ ├── .coveragerc │ ├── MANIFEST.in │ ├── README.md │ ├── docs │ │ ├── API_REFERENCE.md │ │ ├── ARCHITECTURE.md │ │ └── TEMPLATE_CUSTOMIZATION.md │ ├── pyproject.toml │ ├── pytest.ini │ ├── run_tests.py │ ├── src │ │ └── yaml2rst │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── config.py │ │ │ ├── generators │ │ │ ├── __init__.py │ │ │ ├── base_generator.py │ │ │ ├── common_generators.py │ │ │ ├── content_generator_base.py │ │ │ ├── content_generators │ │ │ │ ├── __init__.py │ │ │ │ ├── category_generator.py │ │ │ │ ├── check_generator.py │ │ │ │ ├── faq_generator.py │ │ │ │ ├── makefile_generator.py │ │ │ │ ├── reference_generator.py │ │ │ │ └── wcag_generator.py │ │ │ ├── file_generator.py │ │ │ └── mixins.py │ │ │ ├── initializer.py │ │ │ ├── path.py │ │ │ ├── template_config.py │ │ │ ├── template_manager.py │ │ │ ├── template_resolver.py │ │ │ ├── templates │ │ │ ├── axe-rules.rst │ │ │ ├── checks │ │ │ │ ├── allchecks.rst │ │ │ │ ├── examples-tool.rst │ │ │ │ ├── implementation.rst │ │ │ │ └── procedure.rst │ │ │ ├── faq │ │ │ │ ├── article-index.rst │ │ │ │ ├── article.rst │ │ │ │ ├── index.rst │ │ │ │ ├── tag-index.rst │ │ │ │ └── tagpage.rst │ │ │ ├── gl-category.rst │ │ │ ├── incfiles.mk │ │ │ ├── info_to_faq.rst │ │ │ ├── info_to_gl.rst │ │ │ ├── misc-defs.txt │ │ │ ├── priority-diff.rst │ │ │ └── wcag21-mapping.rst │ │ │ └── yaml2rst.py │ └── tests │ │ ├── README.md │ │ ├── conftest.py │ │ ├── functional │ │ └── test_cli.py │ │ ├── integration │ │ ├── test_e2e_generation.py │ │ └── test_template_customization.py │ │ └── unit │ │ ├── test_base_generator.py │ │ ├── test_category_generator.py │ │ ├── test_check_generator.py │ │ ├── test_common_generators.py │ │ ├── test_config.py │ │ ├── test_content_generator_base.py │ │ ├── test_faq_generator.py │ │ ├── test_file_generator.py │ │ ├── test_initializer.py │ │ ├── test_makefile_generator.py │ │ ├── test_mixins.py │ │ ├── test_path.py │ │ ├── test_reference_generator.py │ │ ├── test_template_config.py │ │ ├── test_template_export.py │ │ ├── test_template_manager.py │ │ ├── test_template_resolver.py │ │ ├── test_wcag_generator.py │ │ └── test_yaml2rst_main.py │ └── yaml2sheet │ ├── .gitignore │ ├── MANIFEST.in │ ├── README.md │ ├── pyproject.toml │ ├── pytest.ini │ ├── src │ └── yaml2sheet │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── auth.py │ │ ├── batch_update_manager.py │ │ ├── cell_data.py │ │ ├── column_config.py │ │ ├── column_manager.py │ │ ├── condition_formatter.py │ │ ├── config.ini.sample │ │ ├── config.py │ │ ├── config.toml.sample │ │ ├── config.yaml.sample │ │ ├── config_loader.py │ │ ├── data_processor.py │ │ ├── result_config.py │ │ ├── row_data_builder.py │ │ ├── sheet_api_client.py │ │ ├── sheet_content_manager.py │ │ ├── sheet_formatter.py │ │ ├── sheet_generator.py │ │ ├── sheet_structure.py │ │ ├── sheet_structure_builder.py │ │ ├── spreadsheet_manager.py │ │ ├── target_config.py │ │ ├── types.py │ │ ├── utils.py │ │ └── yaml2sheet.py │ └── tests │ ├── README.md │ ├── conftest.py │ ├── fixtures │ └── config │ │ ├── invalid_config.yaml │ │ └── valid_config.yaml │ └── unit │ ├── test___main__.py │ ├── test_auth.py │ ├── test_batch_update_manager.py │ ├── test_cell_data.py │ ├── test_column_manager.py │ ├── test_condition_formatter.py │ ├── test_config_loader.py │ ├── test_data_processor.py │ ├── test_main.py │ ├── test_row_data_builder.py │ ├── test_sheet_content_manager.py │ ├── test_sheet_formatter.py │ ├── test_sheet_generator.py │ ├── test_sheet_structure_builder.py │ ├── test_utils.py │ └── test_yaml2sheet_main.py └── version.py /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.github/workflows/reusable-build-doc.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-custom-domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.github/workflows/reusable-custom-domain.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-get-build-targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.github/workflows/reusable-get-build-targets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.lintstagedrc.mjs -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/.textlintrc -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /data/json/faq-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/faq-tags.json -------------------------------------------------------------------------------- /data/json/guideline-categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/guideline-categories.json -------------------------------------------------------------------------------- /data/json/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/info.json -------------------------------------------------------------------------------- /data/json/schemas/check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/schemas/check.json -------------------------------------------------------------------------------- /data/json/schemas/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/schemas/common.json -------------------------------------------------------------------------------- /data/json/schemas/faq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/schemas/faq.json -------------------------------------------------------------------------------- /data/json/schemas/guideline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/schemas/guideline.json -------------------------------------------------------------------------------- /data/json/wcag-sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/json/wcag-sc.json -------------------------------------------------------------------------------- /data/yaml/checks/code/0071.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0071.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0311.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0311.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0371.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0371.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0401.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0401.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0402.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0402.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0431.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0431.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0461.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0461.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0521.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0521.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0551.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0551.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0552.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0552.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0553.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0553.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0554.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0554.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0571.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0586.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0586.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0587.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0587.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0611.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0611.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0671.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0671.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0672.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0672.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0851.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0851.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0911.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0911.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0912.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0912.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/0941.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/0941.yaml -------------------------------------------------------------------------------- /data/yaml/checks/code/1181.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/code/1181.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0001.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0002.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0003.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0031.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0031.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0032.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0032.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0091.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0091.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0092.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0092.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0151.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0151.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0152.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0152.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0153.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0153.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0154.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0154.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0155.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0155.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0211.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0211.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0241.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0241.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0242.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0242.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0271.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0271.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0301.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0301.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0331.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0331.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0332.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0332.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0333.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0333.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0334.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0334.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0361.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0361.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0362.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0362.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0391.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0391.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0421.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0421.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0451.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0451.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0511.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0511.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0541.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0541.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0542.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0542.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0543.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0543.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0581.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0581.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0631.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0631.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0661.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0661.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0721.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0721.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0722.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0722.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0751.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0751.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0781.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0781.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0811.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0811.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0841.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0841.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0931.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0931.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/0961.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/0961.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1021.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1021.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1051.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1051.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1081.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1081.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1111.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1111.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1141.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1141.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1171.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1171.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1201.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1231.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1231.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1261.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1261.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1291.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1291.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1292.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1292.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1321.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1321.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1381.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1381.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1421.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1421.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1451.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1451.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1481.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1481.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1511.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1511.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1541.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1541.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1542.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1542.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1571.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1601.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1601.yaml -------------------------------------------------------------------------------- /data/yaml/checks/design/1631.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/design/1631.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0021.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0021.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0051.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0051.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0081.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0081.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0111.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0111.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0112.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0112.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0141.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0141.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0171.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0171.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0172.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0172.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0173.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0173.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0174.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0174.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0201.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0231.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0231.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0261.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0261.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0262.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0262.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0321.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0321.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0322.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0322.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0323.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0323.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0324.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0324.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0325.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0325.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0326.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0326.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0351.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0351.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0352.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0352.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0411.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0411.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0412.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0412.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0413.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0413.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0441.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0441.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0471.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0471.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0531.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0531.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0561.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0561.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0562.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0562.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0591.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0591.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0592.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0592.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0621.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0621.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0651.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0651.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0681.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0681.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0682.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0682.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0711.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0711.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0771.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0771.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0801.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0801.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0861.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0861.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0862.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0862.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0891.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0891.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0921.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0921.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0922.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0922.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0951.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0951.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0956.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0956.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/0957.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/0957.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1071.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1071.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1101.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1131.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1131.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1191.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1191.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1221.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1221.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1251.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1251.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1281.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1281.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1311.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1311.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1312.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1312.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1313.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1411.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1411.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1441.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1441.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1471.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1471.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1501.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1501.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1531.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1531.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1561.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1561.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1562.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1562.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1591.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1591.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1621.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1621.yaml -------------------------------------------------------------------------------- /data/yaml/checks/product/1651.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/checks/product/1651.yaml -------------------------------------------------------------------------------- /data/yaml/faq/d0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/d0001.yaml -------------------------------------------------------------------------------- /data/yaml/faq/d0002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/d0002.yaml -------------------------------------------------------------------------------- /data/yaml/faq/d0003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/d0003.yaml -------------------------------------------------------------------------------- /data/yaml/faq/d0004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/d0004.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0001.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0002.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0003.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0004.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0005.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0006.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0006.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0007.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0007.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0008.yaml -------------------------------------------------------------------------------- /data/yaml/faq/p0009.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/faq/p0009.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/focus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/focus.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/hover-magnify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/hover-magnify.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/hover.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/maintain-dom-tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/maintain-dom-tree.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/no-flashing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/no-flashing.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/no-interrupt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/no-interrupt.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/pause-movement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/pause-movement.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/pause-refresh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/pause-refresh.yaml -------------------------------------------------------------------------------- /data/yaml/gl/dynamic_content/status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/dynamic_content/status.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/color-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/color-only.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/continue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/continue.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/dynamic-content-change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/dynamic-content-change.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/dynamic-content-focus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/dynamic-content-focus.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/errors-cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/errors-cancel.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/errors-correction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/errors-correction.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/errors-identify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/errors-identify.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/hidden-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/hidden-label.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/keyboard-operable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/keyboard-operable.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/label.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/tab-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/tab-order.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/target-size-mobile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/target-size-mobile.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/target-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/target-size.yaml -------------------------------------------------------------------------------- /data/yaml/gl/form/timing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/form/timing.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/color-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/color-only.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/consistent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/consistent.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/target-size-mobile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/target-size-mobile.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/target-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/target-size.yaml -------------------------------------------------------------------------------- /data/yaml/gl/icon/visible-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/icon/visible-label.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/adjacent-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/adjacent-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/color-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/color-only.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/decorative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/decorative.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/description.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/mobile-text-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/mobile-text-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/image/text-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/image/text-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/images_of_text/avoid-usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/images_of_text/avoid-usage.yaml -------------------------------------------------------------------------------- /data/yaml/gl/images_of_text/mobile-text-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/images_of_text/mobile-text-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/images_of_text/provide-text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/images_of_text/provide-text.yaml -------------------------------------------------------------------------------- /data/yaml/gl/images_of_text/text-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/images_of_text/text-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/focus-indicator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/focus-indicator.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/focus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/focus.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/independent.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/keyboard-operable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/keyboard-operable.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/mobile-standard-gestures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/mobile-standard-gestures.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/no-trap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/no-trap.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/shortcut-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/shortcut-keys.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/support-mobile-assistive-tech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/support-mobile-assistive-tech.yaml -------------------------------------------------------------------------------- /data/yaml/gl/input_device/use-up-event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/input_device/use-up-event.yaml -------------------------------------------------------------------------------- /data/yaml/gl/link/color-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/link/color-only.yaml -------------------------------------------------------------------------------- /data/yaml/gl/link/consistent-text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/link/consistent-text.yaml -------------------------------------------------------------------------------- /data/yaml/gl/link/tab-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/link/tab-order.yaml -------------------------------------------------------------------------------- /data/yaml/gl/link/text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/link/text.yaml -------------------------------------------------------------------------------- /data/yaml/gl/login_session/continue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/login_session/continue.yaml -------------------------------------------------------------------------------- /data/yaml/gl/login_session/timing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/login_session/timing.yaml -------------------------------------------------------------------------------- /data/yaml/gl/markup/component-implementation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/markup/component-implementation.yaml -------------------------------------------------------------------------------- /data/yaml/gl/markup/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/markup/component.yaml -------------------------------------------------------------------------------- /data/yaml/gl/markup/semantics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/markup/semantics.yaml -------------------------------------------------------------------------------- /data/yaml/gl/markup/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/markup/valid.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/background-sound.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/background-sound.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/caption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/caption.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/no-trap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/no-trap.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/operable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/operable.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/pause-movement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/pause-movement.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/perceivable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/perceivable.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/sign-language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/sign-language.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/text-alternative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/text-alternative.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/transcript.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/transcript.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/video-description-no-exception.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/video-description-no-exception.yaml -------------------------------------------------------------------------------- /data/yaml/gl/multimedia/video-description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/multimedia/video-description.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/consistent-navigation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/consistent-navigation.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/headings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/headings.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/landmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/landmark.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/location.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/markup-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/markup-main.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/markup-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/markup-order.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/orientation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/orientation.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/redundant-navigation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/redundant-navigation.yaml -------------------------------------------------------------------------------- /data/yaml/gl/page/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/page/title.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/color-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/color-only.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/component-lang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/component-lang.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/customize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/customize.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/enlarge-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/enlarge-settings.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/heading-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/heading-label.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/mobile-contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/mobile-contrast.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/mobile-enlarge-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/mobile-enlarge-settings.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/multiple-modality.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/multiple-modality.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/page-lang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/page-lang.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/phrase-lang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/phrase-lang.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/zoom-reflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/zoom-reflow.yaml -------------------------------------------------------------------------------- /data/yaml/gl/text/zoom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/data/yaml/gl/text/zoom.yaml -------------------------------------------------------------------------------- /en/Makefile: -------------------------------------------------------------------------------- 1 | lang = en 2 | base_url_suffix= en/ 3 | include ../build.mk 4 | -------------------------------------------------------------------------------- /en/source/_static/a11y-gl-ogp.png: -------------------------------------------------------------------------------- 1 | ../../../ja/source/_static/a11y-gl-ogp.png -------------------------------------------------------------------------------- /en/source/_static/a11y-gl.css: -------------------------------------------------------------------------------- 1 | ../../../ja/source/_static/a11y-gl.css -------------------------------------------------------------------------------- /en/source/_static/copylink.js: -------------------------------------------------------------------------------- 1 | ../../../ja/source/_static/copylink.js -------------------------------------------------------------------------------- /en/source/_static/samples/aria-live-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/_static/samples/aria-live-basic.html -------------------------------------------------------------------------------- /en/source/_static/samples/aria-live-timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/_static/samples/aria-live-timer.html -------------------------------------------------------------------------------- /en/source/_static/samples/lang-incorrect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/_static/samples/lang-incorrect.html -------------------------------------------------------------------------------- /en/source/_static/samples/lang-partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/_static/samples/lang-partial.html -------------------------------------------------------------------------------- /en/source/_templates: -------------------------------------------------------------------------------- 1 | ../../ja/source/_templates -------------------------------------------------------------------------------- /en/source/categories/dynamic_content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/dynamic_content.rst -------------------------------------------------------------------------------- /en/source/categories/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/form.rst -------------------------------------------------------------------------------- /en/source/categories/icon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/icon.rst -------------------------------------------------------------------------------- /en/source/categories/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/image.rst -------------------------------------------------------------------------------- /en/source/categories/images_of_text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/images_of_text.rst -------------------------------------------------------------------------------- /en/source/categories/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/index.rst -------------------------------------------------------------------------------- /en/source/categories/input_device.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/input_device.rst -------------------------------------------------------------------------------- /en/source/categories/link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/link.rst -------------------------------------------------------------------------------- /en/source/categories/login_session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/login_session.rst -------------------------------------------------------------------------------- /en/source/categories/markup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/markup.rst -------------------------------------------------------------------------------- /en/source/categories/multimedia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/multimedia.rst -------------------------------------------------------------------------------- /en/source/categories/page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/page.rst -------------------------------------------------------------------------------- /en/source/categories/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/categories/text.rst -------------------------------------------------------------------------------- /en/source/checks/checklist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/checklist.rst -------------------------------------------------------------------------------- /en/source/checks/checksheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/checksheet.rst -------------------------------------------------------------------------------- /en/source/checks/examples/android-tb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/android-tb.rst -------------------------------------------------------------------------------- /en/source/checks/examples/axe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/axe.rst -------------------------------------------------------------------------------- /en/source/checks/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/index.rst -------------------------------------------------------------------------------- /en/source/checks/examples/ios-vo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/ios-vo.rst -------------------------------------------------------------------------------- /en/source/checks/examples/keyboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/keyboard.rst -------------------------------------------------------------------------------- /en/source/checks/examples/macos-vo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/macos-vo.rst -------------------------------------------------------------------------------- /en/source/checks/examples/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/misc.rst -------------------------------------------------------------------------------- /en/source/checks/examples/nvda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/examples/nvda.rst -------------------------------------------------------------------------------- /en/source/checks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/checks/index.rst -------------------------------------------------------------------------------- /en/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/conf.py -------------------------------------------------------------------------------- /en/source/docutils.conf: -------------------------------------------------------------------------------- 1 | [general] 2 | footnote_backlinks = False 3 | -------------------------------------------------------------------------------- /en/source/explanations/axe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/axe.rst -------------------------------------------------------------------------------- /en/source/explanations/check-contrast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/check-contrast.rst -------------------------------------------------------------------------------- /en/source/explanations/check-tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/check-tools.rst -------------------------------------------------------------------------------- /en/source/explanations/color-only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/color-only.rst -------------------------------------------------------------------------------- /en/source/explanations/contrast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/contrast.rst -------------------------------------------------------------------------------- /en/source/explanations/dynamic_content-auto-updated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/dynamic_content-auto-updated.rst -------------------------------------------------------------------------------- /en/source/explanations/dynamic_content-hover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/dynamic_content-hover.rst -------------------------------------------------------------------------------- /en/source/explanations/dynamic_content-maintain-dom-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/dynamic_content-maintain-dom-tree.rst -------------------------------------------------------------------------------- /en/source/explanations/dynamic_content-status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/dynamic_content-status.rst -------------------------------------------------------------------------------- /en/source/explanations/form-dynamic-content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/form-dynamic-content.rst -------------------------------------------------------------------------------- /en/source/explanations/form-errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/form-errors.rst -------------------------------------------------------------------------------- /en/source/explanations/form-labeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/form-labeling.rst -------------------------------------------------------------------------------- /en/source/explanations/grayscale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/grayscale.rst -------------------------------------------------------------------------------- /en/source/explanations/image-text-alternative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/image-text-alternative.rst -------------------------------------------------------------------------------- /en/source/explanations/image-visual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/image-visual.rst -------------------------------------------------------------------------------- /en/source/explanations/images_of_text-text-alternative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/images_of_text-text-alternative.rst -------------------------------------------------------------------------------- /en/source/explanations/images_of_text-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/images_of_text-usage.rst -------------------------------------------------------------------------------- /en/source/explanations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/index.rst -------------------------------------------------------------------------------- /en/source/explanations/input_device-various.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/input_device-various.rst -------------------------------------------------------------------------------- /en/source/explanations/keyboard-notrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/keyboard-notrap.rst -------------------------------------------------------------------------------- /en/source/explanations/link-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/link-text.rst -------------------------------------------------------------------------------- /en/source/explanations/magnification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/magnification.rst -------------------------------------------------------------------------------- /en/source/explanations/markup-component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/markup-component.rst -------------------------------------------------------------------------------- /en/source/explanations/markup-semantics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/markup-semantics.rst -------------------------------------------------------------------------------- /en/source/explanations/mobile-a11y-basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/mobile-a11y-basics.rst -------------------------------------------------------------------------------- /en/source/explanations/multimedia-autoplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/multimedia-autoplay.rst -------------------------------------------------------------------------------- /en/source/explanations/multimedia-content-access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/multimedia-content-access.rst -------------------------------------------------------------------------------- /en/source/explanations/multimedia-perceivable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/multimedia-perceivable.rst -------------------------------------------------------------------------------- /en/source/explanations/nu-html-checker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/nu-html-checker.rst -------------------------------------------------------------------------------- /en/source/explanations/page-navigation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/page-navigation.rst -------------------------------------------------------------------------------- /en/source/explanations/page-orientation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/page-orientation.rst -------------------------------------------------------------------------------- /en/source/explanations/page-structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/page-structure.rst -------------------------------------------------------------------------------- /en/source/explanations/screen-reader-check-android-talkback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/screen-reader-check-android-talkback.rst -------------------------------------------------------------------------------- /en/source/explanations/screen-reader-check-ios-voiceover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/screen-reader-check-ios-voiceover.rst -------------------------------------------------------------------------------- /en/source/explanations/screen-reader-check-macos-voiceover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/screen-reader-check-macos-voiceover.rst -------------------------------------------------------------------------------- /en/source/explanations/screen-reader-check-nvda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/screen-reader-check-nvda.rst -------------------------------------------------------------------------------- /en/source/explanations/screen-reader-check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/screen-reader-check.rst -------------------------------------------------------------------------------- /en/source/explanations/tab-order-check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/tab-order-check.rst -------------------------------------------------------------------------------- /en/source/explanations/target-size.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/target-size.rst -------------------------------------------------------------------------------- /en/source/explanations/text-custom-css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/text-custom-css.rst -------------------------------------------------------------------------------- /en/source/explanations/text-lang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/text-lang.rst -------------------------------------------------------------------------------- /en/source/explanations/text-wording.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/text-wording.rst -------------------------------------------------------------------------------- /en/source/explanations/timing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/explanations/timing.rst -------------------------------------------------------------------------------- /en/source/img/a11y-tree-aria-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/a11y-tree-aria-label.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-1.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-2.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-3.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-4.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-6.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-8.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-9.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-pager.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-settings-best-practices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-settings-best-practices.png -------------------------------------------------------------------------------- /en/source/img/axe/axe-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/axe/axe-settings.png -------------------------------------------------------------------------------- /en/source/img/faq/d0002/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/faq/d0002/01.png -------------------------------------------------------------------------------- /en/source/img/faq/d0002/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/faq/d0002/02.png -------------------------------------------------------------------------------- /en/source/img/faq/d0002/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/faq/d0002/03.png -------------------------------------------------------------------------------- /en/source/img/faq/d0002/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/faq/d0002/04.png -------------------------------------------------------------------------------- /en/source/img/faq/d0002/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/faq/d0002/05.png -------------------------------------------------------------------------------- /en/source/img/grayscale/mac-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/grayscale/mac-settings-1.png -------------------------------------------------------------------------------- /en/source/img/grayscale/mac-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/grayscale/mac-settings-2.png -------------------------------------------------------------------------------- /en/source/img/grayscale/win-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/grayscale/win-settings-1.png -------------------------------------------------------------------------------- /en/source/img/grayscale/win-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/grayscale/win-settings-2.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-settings-fnkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-settings-fnkey.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-settings-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-settings-keyboard.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-util-commander-quicknav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-util-commander-quicknav.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-util-commander-trackpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-util-commander-trackpad.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-util-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-util-general.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-util-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-util-visual.png -------------------------------------------------------------------------------- /en/source/img/macvo/macvo-welcome-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/macvo/macvo-welcome-dialog.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-browse_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-browse_mode.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-format.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-general.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-mouse.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-speech.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-settings-vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-settings-vision.png -------------------------------------------------------------------------------- /en/source/img/nvda/nvda-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/nvda-welcome.png -------------------------------------------------------------------------------- /en/source/img/nvda/win11-settings-speech-recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/img/nvda/win11-settings-speech-recognition.png -------------------------------------------------------------------------------- /en/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/index.rst -------------------------------------------------------------------------------- /en/source/info/axe-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/info/axe-rules.rst -------------------------------------------------------------------------------- /en/source/info/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/info/index.rst -------------------------------------------------------------------------------- /en/source/info/priority.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/info/priority.rst -------------------------------------------------------------------------------- /en/source/info/wcag21-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/info/wcag21-mapping.rst -------------------------------------------------------------------------------- /en/source/intro/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/intro/contributing.rst -------------------------------------------------------------------------------- /en/source/intro/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/intro/history.rst -------------------------------------------------------------------------------- /en/source/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/intro/index.rst -------------------------------------------------------------------------------- /en/source/intro/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/intro/intro.rst -------------------------------------------------------------------------------- /en/source/intro/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/en/source/intro/usage.rst -------------------------------------------------------------------------------- /ja/Makefile: -------------------------------------------------------------------------------- 1 | lang = ja 2 | include ../build.mk 3 | -------------------------------------------------------------------------------- /ja/source/_static/a11y-gl-ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/a11y-gl-ogp.png -------------------------------------------------------------------------------- /ja/source/_static/a11y-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/a11y-gl.css -------------------------------------------------------------------------------- /ja/source/_static/copylink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/copylink.js -------------------------------------------------------------------------------- /ja/source/_static/samples/aria-live-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/samples/aria-live-basic.html -------------------------------------------------------------------------------- /ja/source/_static/samples/aria-live-timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/samples/aria-live-timer.html -------------------------------------------------------------------------------- /ja/source/_static/samples/lang-incorrect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/samples/lang-incorrect.html -------------------------------------------------------------------------------- /ja/source/_static/samples/lang-partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_static/samples/lang-partial.html -------------------------------------------------------------------------------- /ja/source/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /ja/source/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_templates/footer.html -------------------------------------------------------------------------------- /ja/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/_templates/layout.html -------------------------------------------------------------------------------- /ja/source/categories/dynamic_content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/dynamic_content.rst -------------------------------------------------------------------------------- /ja/source/categories/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/form.rst -------------------------------------------------------------------------------- /ja/source/categories/icon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/icon.rst -------------------------------------------------------------------------------- /ja/source/categories/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/image.rst -------------------------------------------------------------------------------- /ja/source/categories/images_of_text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/images_of_text.rst -------------------------------------------------------------------------------- /ja/source/categories/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/index.rst -------------------------------------------------------------------------------- /ja/source/categories/input_device.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/input_device.rst -------------------------------------------------------------------------------- /ja/source/categories/link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/link.rst -------------------------------------------------------------------------------- /ja/source/categories/login_session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/login_session.rst -------------------------------------------------------------------------------- /ja/source/categories/markup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/markup.rst -------------------------------------------------------------------------------- /ja/source/categories/multimedia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/multimedia.rst -------------------------------------------------------------------------------- /ja/source/categories/page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/page.rst -------------------------------------------------------------------------------- /ja/source/categories/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/categories/text.rst -------------------------------------------------------------------------------- /ja/source/checks/checklist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/checklist.rst -------------------------------------------------------------------------------- /ja/source/checks/checksheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/checksheet.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/android-tb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/android-tb.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/axe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/axe.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/index.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/ios-vo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/ios-vo.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/keyboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/keyboard.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/macos-vo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/macos-vo.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/misc.rst -------------------------------------------------------------------------------- /ja/source/checks/examples/nvda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/examples/nvda.rst -------------------------------------------------------------------------------- /ja/source/checks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/checks/index.rst -------------------------------------------------------------------------------- /ja/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/conf.py -------------------------------------------------------------------------------- /ja/source/docutils.conf: -------------------------------------------------------------------------------- 1 | [general] 2 | footnote_backlinks = False 3 | -------------------------------------------------------------------------------- /ja/source/explanations/axe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/axe.rst -------------------------------------------------------------------------------- /ja/source/explanations/check-contrast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/check-contrast.rst -------------------------------------------------------------------------------- /ja/source/explanations/check-tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/check-tools.rst -------------------------------------------------------------------------------- /ja/source/explanations/color-only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/color-only.rst -------------------------------------------------------------------------------- /ja/source/explanations/contrast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/contrast.rst -------------------------------------------------------------------------------- /ja/source/explanations/dynamic_content-auto-updated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/dynamic_content-auto-updated.rst -------------------------------------------------------------------------------- /ja/source/explanations/dynamic_content-hover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/dynamic_content-hover.rst -------------------------------------------------------------------------------- /ja/source/explanations/dynamic_content-maintain-dom-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/dynamic_content-maintain-dom-tree.rst -------------------------------------------------------------------------------- /ja/source/explanations/dynamic_content-status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/dynamic_content-status.rst -------------------------------------------------------------------------------- /ja/source/explanations/form-dynamic-content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/form-dynamic-content.rst -------------------------------------------------------------------------------- /ja/source/explanations/form-errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/form-errors.rst -------------------------------------------------------------------------------- /ja/source/explanations/form-labeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/form-labeling.rst -------------------------------------------------------------------------------- /ja/source/explanations/grayscale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/grayscale.rst -------------------------------------------------------------------------------- /ja/source/explanations/image-text-alternative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/image-text-alternative.rst -------------------------------------------------------------------------------- /ja/source/explanations/image-visual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/image-visual.rst -------------------------------------------------------------------------------- /ja/source/explanations/images_of_text-text-alternative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/images_of_text-text-alternative.rst -------------------------------------------------------------------------------- /ja/source/explanations/images_of_text-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/images_of_text-usage.rst -------------------------------------------------------------------------------- /ja/source/explanations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/index.rst -------------------------------------------------------------------------------- /ja/source/explanations/input_device-various.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/input_device-various.rst -------------------------------------------------------------------------------- /ja/source/explanations/keyboard-notrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/keyboard-notrap.rst -------------------------------------------------------------------------------- /ja/source/explanations/link-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/link-text.rst -------------------------------------------------------------------------------- /ja/source/explanations/magnification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/magnification.rst -------------------------------------------------------------------------------- /ja/source/explanations/markup-component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/markup-component.rst -------------------------------------------------------------------------------- /ja/source/explanations/markup-semantics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/markup-semantics.rst -------------------------------------------------------------------------------- /ja/source/explanations/mobile-a11y-basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/mobile-a11y-basics.rst -------------------------------------------------------------------------------- /ja/source/explanations/multimedia-autoplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/multimedia-autoplay.rst -------------------------------------------------------------------------------- /ja/source/explanations/multimedia-content-access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/multimedia-content-access.rst -------------------------------------------------------------------------------- /ja/source/explanations/multimedia-perceivable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/multimedia-perceivable.rst -------------------------------------------------------------------------------- /ja/source/explanations/nu-html-checker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/nu-html-checker.rst -------------------------------------------------------------------------------- /ja/source/explanations/page-navigation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/page-navigation.rst -------------------------------------------------------------------------------- /ja/source/explanations/page-orientation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/page-orientation.rst -------------------------------------------------------------------------------- /ja/source/explanations/page-structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/page-structure.rst -------------------------------------------------------------------------------- /ja/source/explanations/screen-reader-check-android-talkback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/screen-reader-check-android-talkback.rst -------------------------------------------------------------------------------- /ja/source/explanations/screen-reader-check-ios-voiceover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/screen-reader-check-ios-voiceover.rst -------------------------------------------------------------------------------- /ja/source/explanations/screen-reader-check-macos-voiceover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/screen-reader-check-macos-voiceover.rst -------------------------------------------------------------------------------- /ja/source/explanations/screen-reader-check-nvda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/screen-reader-check-nvda.rst -------------------------------------------------------------------------------- /ja/source/explanations/screen-reader-check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/screen-reader-check.rst -------------------------------------------------------------------------------- /ja/source/explanations/tab-order-check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/tab-order-check.rst -------------------------------------------------------------------------------- /ja/source/explanations/target-size.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/target-size.rst -------------------------------------------------------------------------------- /ja/source/explanations/text-custom-css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/text-custom-css.rst -------------------------------------------------------------------------------- /ja/source/explanations/text-lang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/text-lang.rst -------------------------------------------------------------------------------- /ja/source/explanations/text-wording.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/text-wording.rst -------------------------------------------------------------------------------- /ja/source/explanations/timing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/explanations/timing.rst -------------------------------------------------------------------------------- /ja/source/img/a11y-tree-aria-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/a11y-tree-aria-label.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-1.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-2.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-3.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-4.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-6.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-8.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-9.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-pager.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-settings-best-practices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-settings-best-practices.png -------------------------------------------------------------------------------- /ja/source/img/axe/axe-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/axe/axe-settings.png -------------------------------------------------------------------------------- /ja/source/img/faq/d0002/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/faq/d0002/01.png -------------------------------------------------------------------------------- /ja/source/img/faq/d0002/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/faq/d0002/02.png -------------------------------------------------------------------------------- /ja/source/img/faq/d0002/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/faq/d0002/03.png -------------------------------------------------------------------------------- /ja/source/img/faq/d0002/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/faq/d0002/04.png -------------------------------------------------------------------------------- /ja/source/img/faq/d0002/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/faq/d0002/05.png -------------------------------------------------------------------------------- /ja/source/img/grayscale/mac-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/grayscale/mac-settings-1.png -------------------------------------------------------------------------------- /ja/source/img/grayscale/mac-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/grayscale/mac-settings-2.png -------------------------------------------------------------------------------- /ja/source/img/grayscale/win-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/grayscale/win-settings-1.png -------------------------------------------------------------------------------- /ja/source/img/grayscale/win-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/grayscale/win-settings-2.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-settings-fnkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-settings-fnkey.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-settings-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-settings-keyboard.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-util-commander-quicknav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-util-commander-quicknav.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-util-commander-trackpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-util-commander-trackpad.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-util-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-util-general.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-util-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-util-visual.png -------------------------------------------------------------------------------- /ja/source/img/macvo/macvo-welcome-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/macvo/macvo-welcome-dialog.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-browse_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-browse_mode.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-format.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-general.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-mouse.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-speech.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-settings-vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-settings-vision.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvda-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvda-welcome.png -------------------------------------------------------------------------------- /ja/source/img/nvda/nvdacheat-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/nvdacheat-desktop.png -------------------------------------------------------------------------------- /ja/source/img/nvda/win10-settings-speech-recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/img/nvda/win10-settings-speech-recognition.png -------------------------------------------------------------------------------- /ja/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/index.rst -------------------------------------------------------------------------------- /ja/source/info/axe-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/info/axe-rules.rst -------------------------------------------------------------------------------- /ja/source/info/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/info/index.rst -------------------------------------------------------------------------------- /ja/source/info/priority.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/info/priority.rst -------------------------------------------------------------------------------- /ja/source/info/wcag21-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/info/wcag21-mapping.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202004.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202004.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202005.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202005.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202005.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202005.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202006.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202006.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202007.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202007.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202008.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202008.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202009.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202009.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202010.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202010.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2020/202011.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2020/202011.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202101.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202101.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202101.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202101.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202102.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202102.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202103.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202103.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202104.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202104.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202105.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202105.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202106.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202106.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202107.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202107.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202110.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202110.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202110.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202110.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202110.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202110.2.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202111.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202111.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2021/202112.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2021/202112.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202201.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202201.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202201.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202201.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202202.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202202.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202203.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202203.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202205.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202205.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202209.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202209.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202209.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202209.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2022/202210.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2022/202210.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202301.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202301.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202302.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202302.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202303.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202303.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202303.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202303.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202303.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202303.2.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202304.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202304.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202304.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202304.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202305.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202305.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202306.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202306.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202306.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202306.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202307.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202307.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202308.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202308.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202309.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202309.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202309.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202309.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202310.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202310.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202311.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202311.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202311.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202311.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202312.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202312.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2023/202312.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2023/202312.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202401.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202401.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202403.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202403.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202403.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202403.1.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202404.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202404.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202405.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202405.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202408.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202408.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202409.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202409.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2024/202411.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2024/202411.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2025/202504.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2025/202504.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2025/202508.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2025/202508.0.rst -------------------------------------------------------------------------------- /ja/source/intro/ChangeLog/2025/202510.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/ChangeLog/2025/202510.0.rst -------------------------------------------------------------------------------- /ja/source/intro/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/contributing.rst -------------------------------------------------------------------------------- /ja/source/intro/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/history.rst -------------------------------------------------------------------------------- /ja/source/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/index.rst -------------------------------------------------------------------------------- /ja/source/intro/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/intro.rst -------------------------------------------------------------------------------- /ja/source/intro/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/ja/source/intro/usage.rst -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/.flake8 -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft src/freee_a11y_gl/data 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/README.md -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/conftest.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/docs/API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/docs/API_REFERENCE.md -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/docs/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/docs/CONFIGURATION.md -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/pyproject.toml -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/run_tests.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/localization_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/localization_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/message_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/message_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/path_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/path_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/tool_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/tool_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/validation_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config/validation_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/config_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/config_main.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/constants.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/data/__init__.py: -------------------------------------------------------------------------------- 1 | """Data package for freee_a11y_gl.""" 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/data/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/data/config.yaml -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/data/messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/data/messages.yaml -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/error_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/error_recovery.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/exceptions.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/info_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/info_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/initializer.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/logging_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/message_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/message_catalog.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | """Mixins for freee_a11y_gl models.""" 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/mixins/template_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/mixins/template_mixin.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/axe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/axe.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/base.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/check.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/content.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/article.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/faq/tag.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/models/reference.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/relationship_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/relationship_manager.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/settings.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/source.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/validation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/validation_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/version_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/process_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/process_yaml.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/rst_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_processor/rst_processor.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/src/freee_a11y_gl/yaml_validator.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | # Core module tests 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_error_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_error_recovery.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_exceptions.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_info_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_info_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_initializer.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_initializer_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_initializer_validation.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_logging_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_message_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_message_catalog.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_message_config_error_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_message_config_error_paths.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_path_config_error_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_path_config_error_paths.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_settings.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_source.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_validation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_validation_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_version_utils.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_yaml_validation_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_yaml_validation_config.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/core/test_yaml_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/core/test_yaml_validator.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/managers/__init__.py: -------------------------------------------------------------------------------- 1 | # Managers tests 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/managers/test_relationship_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/managers/test_relationship_manager.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for mixins.""" 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/mixins/test_template_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/mixins/test_template_mixin.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/__init__.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/base_test.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/faq/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/faq/test_tag.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_axe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_axe.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_base.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_check.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_content.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_faq_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_faq_article.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_guideline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_guideline.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/models/test_info_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/models/test_info_ref.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/yaml_processor/__init__.py: -------------------------------------------------------------------------------- 1 | # YAML processor tests 2 | -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/yaml_processor/test_process_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/yaml_processor/test_process_yaml.py -------------------------------------------------------------------------------- /tools/lib/freee_a11y_gl/tests/yaml_processor/test_rst_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/lib/freee_a11y_gl/tests/yaml_processor/test_rst_processor.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/.coveragerc -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft src/yaml2rst/templates 2 | -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/README.md -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/docs/API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/docs/API_REFERENCE.md -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/docs/TEMPLATE_CUSTOMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/docs/TEMPLATE_CUSTOMIZATION.md -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/pyproject.toml -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/pytest.ini -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/run_tests.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/__main__.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/__init__.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/base_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/common_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/common_generators.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generator_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generator_base.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/__init__.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/category_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/category_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/check_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/check_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/faq_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/faq_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/makefile_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/makefile_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/reference_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/reference_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/wcag_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/content_generators/wcag_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/file_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/generators/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/generators/mixins.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/initializer.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/path.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/template_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/template_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/template_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/template_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/template_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/template_resolver.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/axe-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/axe-rules.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/checks/allchecks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/checks/allchecks.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/checks/examples-tool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/checks/examples-tool.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/checks/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/checks/implementation.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/checks/procedure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/checks/procedure.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/faq/article-index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/faq/article-index.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/faq/article.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/faq/article.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/faq/index.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/faq/tag-index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/faq/tag-index.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/faq/tagpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/faq/tagpage.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/gl-category.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/gl-category.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/incfiles.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/incfiles.mk -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/info_to_faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/info_to_faq.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/info_to_gl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/info_to_gl.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/misc-defs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/misc-defs.txt -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/priority-diff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/priority-diff.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/templates/wcag21-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/templates/wcag21-mapping.rst -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/src/yaml2rst/yaml2rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/src/yaml2rst/yaml2rst.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/README.md -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/conftest.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/functional/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/functional/test_cli.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/integration/test_e2e_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/integration/test_e2e_generation.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/integration/test_template_customization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/integration/test_template_customization.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_base_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_category_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_category_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_check_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_check_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_common_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_common_generators.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_content_generator_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_content_generator_base.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_faq_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_faq_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_file_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_initializer.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_makefile_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_makefile_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_mixins.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_path.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_reference_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_reference_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_template_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_template_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_template_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_template_export.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_template_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_template_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_template_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_template_resolver.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_wcag_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_wcag_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2rst/tests/unit/test_yaml2rst_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2rst/tests/unit/test_yaml2rst_main.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/.gitignore -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/yaml2sheet/*.sample 2 | -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/README.md -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/pyproject.toml -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/pytest.ini -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/__init__.py: -------------------------------------------------------------------------------- 1 | """Generate checklist in Google Sheets from YAML data.""" 2 | 3 | __version__ = "0.2.0" 4 | -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/__main__.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/auth.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/batch_update_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/batch_update_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/cell_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/cell_data.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/column_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/column_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/column_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/column_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/condition_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/condition_formatter.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/config.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/config.ini.sample -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/config.toml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/config.toml.sample -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/config.yaml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/config.yaml.sample -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/config_loader.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/data_processor.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/result_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/result_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/row_data_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/row_data_builder.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_api_client.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_content_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_content_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_formatter.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_structure.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/sheet_structure_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/sheet_structure_builder.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/spreadsheet_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/spreadsheet_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/target_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/target_config.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/types.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/utils.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/src/yaml2sheet/yaml2sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/src/yaml2sheet/yaml2sheet.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/README.md -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/conftest.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/fixtures/config/invalid_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/fixtures/config/invalid_config.yaml -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/fixtures/config/valid_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/fixtures/config/valid_config.yaml -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test___main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test___main__.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_auth.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_batch_update_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_batch_update_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_cell_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_cell_data.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_column_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_column_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_condition_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_condition_formatter.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_config_loader.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_data_processor.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_main.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_row_data_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_row_data_builder.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_sheet_content_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_sheet_content_manager.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_sheet_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_sheet_formatter.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_sheet_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_sheet_generator.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_sheet_structure_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_sheet_structure_builder.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tools/scripts/yaml2sheet/tests/unit/test_yaml2sheet_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/tools/scripts/yaml2sheet/tests/unit/test_yaml2sheet_main.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freee/a11y-guidelines/HEAD/version.py --------------------------------------------------------------------------------