I'm trying to add a "lang" attribute to the HTML produced by my shiny app that was added by this feature PR - Added lang attribute for accessibility and search-engine parsers by schloerke · Pull Request #3087 · rstudio/shiny · GitHub
Added the
lang
argument toshinyApp()
that specifies document-level language within the app for the accessibility of screen readers and search-engine parsers.
However my code is set up using the two file approach (of ui.R and server.R) and I have nowhere in my code that calls shinyApp()
- where would I set this option or do I need to restructure my codebase?
Thanks!
...