John P. Rouillard
John P. Rouillard
Some prior art may be: https://github.com/NYTimes/Emphasis It's no longer in use AFAICT but a discussion on it is at: https://open.blogs.nytimes.com/2011/01/11/emphasis-update-and-source/ Chrome has a chrome only "Copy link to highlight" right...
Does: https://github.com/LeaVerou/awesomplete/issues/17225 help?
Any plans to fix this?
Here is another example. The Totals graph tells me that there are 13 visits and 18 views: (I am UTC-4 timezone.) It looks like the bar on the totals graph...
Thanks for your reply. >"Unique visits" are counted per-path, rather than per-site. by Unique visits do you mean the visits number in the graph? Using the first example, I can...
Could you use events for that? Maybe add ``` window.mod_pagespeed_start = Number(new Date()); ``` at the top of the head section. Then add: ``` function g(){ let payload = 'load:'+...
> For example you can't select "show me all pageviews from Firefox" right now because adding > this would add gigabytes of extra indexed data. Isn't that something like: ```...
Might that improve if you add an index on browser_stats.browser_id or both browser_stats.path_id and paths.pathid? Looking at the current schema the only way I can see the inner join working...
Render I think is replaced with HTMLRenderer. Also I found escape_link is also missing. I am more worried about how to disable the [include directive](https://mistune.readthedocs.io/en/latest/directives.html#include). I am processing user supplied...
> > Render I think is replaced with HTMLRenderer. Also I found escape_link is also missing. > > Instead of directly instantiating and using HTMLRenderer, you should instead use [mistune.create_markdown](https://mistune.readthedocs.io/en/latest/api.html#mistune.create_markdown)....