Thomas Thomassen
Thomas Thomassen
> libvalhalla will prefer the tar path if both are present (as config & on disk). it's almost always preferable to use tar, bcs that'll be mmap'd (shared memory across...
Looking at pyvalhalla 3.2 source: https://github.com/valhalla/valhalla/blob/1a48cb0f133ce6a8f80471fa3b2c38bd342fc976/src/bindings/python/config.py#L19-L41 `tile_extract` had a the default `"valhalla_tiles.tar"` but `tile_dir` had none. (hm... wouldn't that still have made `tile_dir` required arg to `get_config`? I don't fully...
Gotcha. I'd like to setup `pytest` so we can write unit tests against the bindings. Though, I need to setup WSL and build valhalla there - since I'm on Windows...
I checked out a commit to before I upgraded to 3.6 and `config.py` that I was using before looked like this: ```py def get_config( tile_extract: Union[str, Path] = "valhalla_tiles.tar", tile_dir:...
Oh, never mind. I just realised Python treats empty strings as falsy 🫨 I think I understand the intent here how; it's trying to expand any relative paths to absolute...
When are these transient materials used? Seems like there might be an underlying issue/feature missing here.
I'm seeing this in 1.14 with a .md file I have included in my documentation. Even though I have a `Foo` anchor I get warnings for `[Foo](#foo)` markdown links saying...
I'm still seeing this with 1.14. Example.md: ```md # Example ## Index - [Basics](#basics) - [Events](#events) - [Functions](#functions) ## Basics Lorem ipsum dolor sit amet. ### Events Lorem ipsum dolor...
I also updated to 1.15 and see the same thing. ```sh doxygen --version 1.15.0 (7cca38ba5185457e6d9495bf963d4cdeacebc25a) ```
Ah! I didn't notice that. Yea, when I change the anchors to empty links it works. > Setting issue to enhancement 👍 Sounds good. Having the text the anchor refer...