Peter Hentges
Peter Hentges
The default behavior of injecting the `div.modaal-wrapper` at the end of the `body` has the side-effect of removing the content therein from any ARIA landmarks defined on the page. This...
Within the "Text" panel of the accessibility content we get the very helpful content of what a screen reader might read. Seeing the handy "speaking-person" icon I expected to be...
### Minimal, reproducible example ```TypeScript const express = require('express'); const puppeteer = require('puppeteer'); const app = express(); const port = 3000; app.use(express.text({ type: 'text/html', limit: '10mb' })); app.post('/generate-pdf', async (req,...