├── .gitignore ├── Readme.md ├── WCAG ├── R │ ├── bar_functions.R │ ├── functions.R │ ├── line_functions.R │ ├── plot_functions.R │ ├── prep_functions.R │ └── ui_functions.R ├── WCAG_penguins.R ├── readme.md └── textures │ ├── alignedring_black.png │ ├── alignedring_white.png │ ├── backhatch_black.png │ ├── backhatch_white.png │ ├── basket_black.png │ ├── basket_white.png │ ├── diamond_black.png │ ├── diamond_white.png │ ├── hatch_black.png │ ├── hatch_white.png │ ├── ringoffset_black.png │ ├── ringoffset_white.png │ ├── spot_black.png │ ├── spot_white.png │ ├── x_black.png │ └── x_white.png ├── presentation scripts ├── LHD-AoS-script.md ├── ShinyConf 2025 outline.md ├── ShinyConf 2025 workshop prereqs.pdf ├── ShinyConf Presentation 2025.pptx ├── equity_week_outline.md ├── readme.md └── ~$ShinyConf Presentation 2025.pptx ├── resources ├── Accessibility_tools.md ├── DT_datatable.md └── R_accessibility_packages.md ├── shiny-a11y-app.Rproj ├── texture-sound ├── R │ ├── functions.R │ └── ui_functions.R ├── Readme.md ├── sonify_penguins.R └── www │ ├── braille.jpg │ └── culmen.png └── walkthrough ├── Readme.md ├── app_to_fix.R ├── basic_app.R └── fixed_app.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/Readme.md -------------------------------------------------------------------------------- /WCAG/R/bar_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/bar_functions.R -------------------------------------------------------------------------------- /WCAG/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/functions.R -------------------------------------------------------------------------------- /WCAG/R/line_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/line_functions.R -------------------------------------------------------------------------------- /WCAG/R/plot_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/plot_functions.R -------------------------------------------------------------------------------- /WCAG/R/prep_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/prep_functions.R -------------------------------------------------------------------------------- /WCAG/R/ui_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/R/ui_functions.R -------------------------------------------------------------------------------- /WCAG/WCAG_penguins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/WCAG_penguins.R -------------------------------------------------------------------------------- /WCAG/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/readme.md -------------------------------------------------------------------------------- /WCAG/textures/alignedring_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/alignedring_black.png -------------------------------------------------------------------------------- /WCAG/textures/alignedring_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/alignedring_white.png -------------------------------------------------------------------------------- /WCAG/textures/backhatch_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/backhatch_black.png -------------------------------------------------------------------------------- /WCAG/textures/backhatch_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/backhatch_white.png -------------------------------------------------------------------------------- /WCAG/textures/basket_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/basket_black.png -------------------------------------------------------------------------------- /WCAG/textures/basket_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/basket_white.png -------------------------------------------------------------------------------- /WCAG/textures/diamond_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/diamond_black.png -------------------------------------------------------------------------------- /WCAG/textures/diamond_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/diamond_white.png -------------------------------------------------------------------------------- /WCAG/textures/hatch_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/hatch_black.png -------------------------------------------------------------------------------- /WCAG/textures/hatch_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/hatch_white.png -------------------------------------------------------------------------------- /WCAG/textures/ringoffset_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/ringoffset_black.png -------------------------------------------------------------------------------- /WCAG/textures/ringoffset_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/ringoffset_white.png -------------------------------------------------------------------------------- /WCAG/textures/spot_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/spot_black.png -------------------------------------------------------------------------------- /WCAG/textures/spot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/spot_white.png -------------------------------------------------------------------------------- /WCAG/textures/x_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/x_black.png -------------------------------------------------------------------------------- /WCAG/textures/x_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/WCAG/textures/x_white.png -------------------------------------------------------------------------------- /presentation scripts/LHD-AoS-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/LHD-AoS-script.md -------------------------------------------------------------------------------- /presentation scripts/ShinyConf 2025 outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/ShinyConf 2025 outline.md -------------------------------------------------------------------------------- /presentation scripts/ShinyConf 2025 workshop prereqs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/ShinyConf 2025 workshop prereqs.pdf -------------------------------------------------------------------------------- /presentation scripts/ShinyConf Presentation 2025.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/ShinyConf Presentation 2025.pptx -------------------------------------------------------------------------------- /presentation scripts/equity_week_outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/equity_week_outline.md -------------------------------------------------------------------------------- /presentation scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/readme.md -------------------------------------------------------------------------------- /presentation scripts/~$ShinyConf Presentation 2025.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/presentation scripts/~$ShinyConf Presentation 2025.pptx -------------------------------------------------------------------------------- /resources/Accessibility_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/resources/Accessibility_tools.md -------------------------------------------------------------------------------- /resources/DT_datatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/resources/DT_datatable.md -------------------------------------------------------------------------------- /resources/R_accessibility_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/resources/R_accessibility_packages.md -------------------------------------------------------------------------------- /shiny-a11y-app.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/shiny-a11y-app.Rproj -------------------------------------------------------------------------------- /texture-sound/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/R/functions.R -------------------------------------------------------------------------------- /texture-sound/R/ui_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/R/ui_functions.R -------------------------------------------------------------------------------- /texture-sound/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/Readme.md -------------------------------------------------------------------------------- /texture-sound/sonify_penguins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/sonify_penguins.R -------------------------------------------------------------------------------- /texture-sound/www/braille.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/www/braille.jpg -------------------------------------------------------------------------------- /texture-sound/www/culmen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/texture-sound/www/culmen.png -------------------------------------------------------------------------------- /walkthrough/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/walkthrough/Readme.md -------------------------------------------------------------------------------- /walkthrough/app_to_fix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/walkthrough/app_to_fix.R -------------------------------------------------------------------------------- /walkthrough/basic_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/walkthrough/basic_app.R -------------------------------------------------------------------------------- /walkthrough/fixed_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidy-MN/shiny-a11y-apps/HEAD/walkthrough/fixed_app.R --------------------------------------------------------------------------------