Volodymyr Agafonkin
Volodymyr Agafonkin
Given this input: ```html A, B ``` The Turndown output is: ```md [A][1], [B][2] [1]: foo [2]: foo ``` It would be nice if Turndown could deduplicate link references, like...
In theory, it shouldn't be much of a trouble to add support for other trace formats. The common ones I've seen are: - [ ] Perf traces (`perf report`) -...
Use case: open `tooltips-on-hover.html`, try to click on a link inside a tooltip. The tooltip hides before you can click a link. This is bad for usability. cc @tmcw
> @mourner now that you're here... are you planning on adding a "module" export to `Earcut`'s `package.json`? π @mrdoob Yes! And very soon. Started a branch recently here: https://github.com/mapbox/earcut/tree/modernize The...
Currently `make` takes WAY too long to compile everything (5β10 minutes for a Travis/Appveyor job), and almost all the time is spent compiling [fixture objects](https://github.com/mapbox/earcut.hpp/tree/master/test/fixtures), one for each target (bench,...
This would make it easier to use in tiled environments, as an alternative to mesh stitching.
Browsing through the code, it seems that in this state it can't satisfy an extremely common use case of **making a custom build for one particular projection**. All projections share...
Hi @HrX03, can you explain why you picked the name **Leaflet** for an open source project when there's already a widely popular open source project with the same name, a...
Currently, the bulk loading algorithm partitions each node into approximately `sqrt(N) x sqrt(N)` child nodes. This becomes a problem if a node is not a perfect square β child nodes...
Reimplements KDBush to store the whole index along with its properties in a single array buffer for easy transfer and serialization. Closes #31. Closes #25. Closes #23. cc @hydrosquall Breaks...