Adriaan
Adriaan
Looks like that is expected behavior: https://github.com/lancedikson/bowser/issues/374
I use https://github.com/dworthen/js-yaml-front-matter for that, works only with strings though.
I'm using mdpdf to convert specific documentation pages to PDF. I don't have them locally on my server, but grab them from https://raw.githubusercontent.com/simpleanalytics/docs/master/_docs/10_general/10_what-we-collect.md for example. I do some front matter...
Any ideas on this @mlandauer?
> I realized the black only appears when you're logged in. (...) It (now) has a dark background when you're not logged in:  It doesn't bother me anyhow.
[Saiya](https://github.com/evecalm) wrote: > I just wrote a user script to remove the dark topbar yesterday, but now you just changed your way to approach that. That's funny. We(users) tell you...
I did a test in the past on Google Analytics with [Simple Analytics](https://simpleanalytics.com/?ref=github): https://blog.simpleanalytics.com/google-penalizes-you-for-using-google-analytics This is the Lighthouse score: Basically, you see that having Google Analytics costs you almost 10...
> It doesn't look like this repo is being updated anymore, is there a fork that is still active? As we can see in the [network tab](https://github.com/delgiudices/ChitChat/network) there are some...
> @adriaanvanrossum @WooDzu @sholladay can you say more about why you think this would be nice to have / what you would use it for / how often it comes...
I solved this by adding `window.jQuery` in [ProvidePlugin](https://webpack.js.org/plugins/provide-plugin/): ```js ... resolve: { alias: { jquery: require.resolve('jquery') } }, plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", "window.jQuery": "jquery" }), ],...