Filip Stanis
Filip Stanis
Just a suggestion: I was looking to potentially use this project instead of `golang.org/x/net/webdav` and noticed the `FileSystem` interface is slightly different: 1. `go-webdav` doesn't pass a `Context` to its...
As of [#16975](https://github.com/ampproject/amphtml/pull/16975), amp-access no longer requires amp-analytics, so we should remove references to it from samples using amp-access.
*[ not actionable right now - this issue is a longer term plan ]* Since AMPHTML Email supports [a subset of AMP components](https://www.ampproject.org/docs/interaction_dynamic/amp-email-format#amp-components) which we already have samples for, many...
This can be done simply by calling [posthtml-uglify](https://github.com/Rebelmail/posthtml-uglify) inside `minifyCss`. Bonus is that it can share the whitelist with uncss if we add uncss per #36.
It seems one of the constructors for `PercussionOnsetDetector` has a `bufferOverlap` parameter, but it's not actually used anywhere: https://github.com/JorenSix/TarsosDSP/blob/d9583528b9573a97c220d19e6d9ab2929e9bd1c5/src/core/be/tarsos/dsp/onsets/PercussionOnsetDetector.java#L123-L127
The AMP4EMAIL format currently allows the `` tag to be in ``. However, this has no effect on emails, since they use a different mechanism to specify the subject and...
This would help us with integrating into other projects, such as [amp-toolbox](https://github.com/ampproject/amp-toolbox). Proposed valid invocations: ```js transform('https://example.com/', html) // uses DEFAULT config transform('https://example.com/', { config: 'VALIDATION' }) transform('https://example.com/', html, {...
Fixes #36
JSDom supports a custom resource loader, e.g: ``` class CustomResourceLoader extends jsdom.ResourceLoader { fetch(url, options) { console.log(`Loading ${url}...`); return super.fetch(url, options); } } const dom = new JSDOM(``, { resources:...