foxblock
foxblock
Fixed MSVC error messages "C4576: a parenthesized type followed by an initializer list is a non-standard explicit type conversion syntax" i.e. (Vector2) -> RAYGUI_CLITERAL(Vector2) "C4838: conversion from 'int' to 'float'...
GuiTextBox() handling of text that is longer than the control is not great unfortunately. The standard `GuiDrawText` shortens the text using dots as ellipsis, which makes navigating with arrow keys...
Options edge_path, edge_driver_path and user_agent were never passed to scrape_posts function. I tried to reduce the amount of duplicate code and move setting of all defaults to parse_args function to...
Fixes #317 #318 #319 Some minor fixes allow links to headings in the same document `[[#heading]]` and links to documents with a & in the filename. A bigger rewrite replaces...
Links to files with an ampersand & in them will show up as a link to the 404 page in the rendered result.
**Problem:** You can create links to headings in the same document in Obsidian by using `[[#heading]]` These will not be turned into clickable links and will just show up as...
**Problem:** Due to the way links are created using a [regex replace](https://github.com/oleeskild/digitalgarden/blob/main/.eleventy.js#L277), having any text inside a code block with the format `[[what|ever]]` will trigger it and replace that text...
Clickable tags are created for any string starting with a hash, even if that string is inside a markdown code area (\`#like-this\`). This is a problem with pages about C-style...