fregante
fregante
### Description See context for the Sanitizer API in https://fullystacked.net/innerhtml-alternatives/ ### Fail ```js main.innerHTML = 'Mambo Nº2' ``` ```js console.log(main.innerHTML); ``` ### Pass ```js main.setHTML('Mambo Nº2') ``` ```js console.log(main.getHTML()); ```...
There are currently 21 unreleased commits: https://github.com/natemoo-re/clack/compare/@clack/[email protected] Please release a new version, I'd like to use p.tasks()
This is one of the URLs listed on MDN: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs ``` data:text/html,alert('hi'); ``` And it just fails due to `
### Please avoid duplicates - [X] I checked [all open feature requests](https://github.com/nock/nock/issues?q=is%3Aissue+is%3Aopen+label%3Afeature) and none of them matched my request. ### Context I'm trying to migrate from axios/axios-mock-adapter to fetch/nock and...
Codepen won't let me log in today. I wrote this partial demo and I'll finish it when they let me again ```html onAbort(, , , ) linkControllers(, , ) new...
I'd like to perform additional tasks before creating the tag or maybe use a separate action to create and submit it. Example: ```yml Version: steps: - uses: actions/checkout@v2 - name:...
Some commits don't need to be released as their own version, so there could be a way to ignore them. For example this can be done via `ignore` an option...
There's no need to have a release for just one commit (for example if there's a cronjob running the day after a manual release). - A `maxCommit` option (currently: 1)...
Since #7, if `git config user.email` is empty, the action will set `user.email` and `user.name`. This is persisted even after the step. Ideally instead this should not happen. I tried...
I'm manually doing content detection: ```ts const response = await ky .post(tokenURL, { body: formData, }) switch (response.headers.get("Content-Type")) { case "application/json": { const parsed: AuthData = await response.json(); // etc...