Andrew Fong
Andrew Fong
> Are there any instructions anywhere on how to run the script from the command line? Yes, if you're comfortable with the command line: * Download this file: https://raw.githubusercontent.com/fongandrew/pptx-note-remover/master/drop_pptx_here.py *...
@aourednik (or anyone else) can you share a PPTX that's being corrupted by the cleaning process? I don't have access to MS Office these days and am testing with Google...
Thank you for the fix @aourednik. New bundle here: https://github.com/fongandrew/pptx-note-remover/raw/master/dist/drop_pptx_here.app.zip Note that macOS will probably still complain about the app being unsigned but if you can get it running as...
@aourednik One oddity is that when I run the script on your test file, the "clean" file is actually slightly larger? But the notes are gone. 🤷 Might be some...
I've put in a request for Apple to notarize the app, so hopefully you don't have to go into System Preferences, but that may take a little while.
As of 👆, it seems *some* of the pseudo-class issues are fixed but not entirely. Notably, the combination of `:is` and `:not` don't seem to work as expected. That is...
I see `nwsapi` references `modal` here:https://github.com/dperini/nwsapi/commit/28605b6123f8d2d82ddbbc8bcf037921146d4aa1 But JSDOM doesn't seem to recognize `:modal` even with an up-to-date `nwsapi`.
I'm not familiar with the API of `nwsapi` so maybe I'm doing something wrong, but this suggests the issue is within `nwsapi`? Should I report it there? ``` const {...
FWIW, I get the same issue with `unknown pseudo-class selector ':popover-open'`, so it seems like support for a lot of these visibility selectors is just not there?
As a partial workaround, you can add `&` to the safelist and do something like this: ``` .text { font-size: 1rem; @media (max-width: 768px) { & { font-size: var(--mobile-text-size); }...