From e0905ff94a3623f6383278bf2ea740c65b616105 Mon Sep 17 00:00:00 2001 From: Adam Zapletal Date: Thu, 9 Jan 2025 02:12:13 -0600 Subject: [PATCH] Fix broken docs links on quirks page (#3111) --- www/content/QUIRKS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/content/QUIRKS.md b/www/content/QUIRKS.md index 33c00281e..faff3b501 100644 --- a/www/content/QUIRKS.md +++ b/www/content/QUIRKS.md @@ -11,7 +11,7 @@ This is a "quirks" page, based on [SQLite's "Quirks, Caveats, and Gotchas In SQL ## Attribute Inheritance -Many attributes in htmx are [inherited](/@docs#inheritance): child elements can receive behavior from attributes located +Many attributes in htmx are [inherited](@/docs.md#inheritance): child elements can receive behavior from attributes located on parent elements. As an example, here are two htmx-powered buttons that inherit their [target](@/attributes/hx-target.md) from a parent @@ -33,7 +33,7 @@ and it becomes more difficult to understand what an element is doing. It is also possible to inadvertently change the behavior of elements by adding attributes to parents. Some people prefer to disable inheritance in htmx entirely, using the `htmx.config.disableInheritance` -[configuration variable](/@docs.md#config). +[configuration variable](@/docs.md#config). Here is a `meta` tag configuration that does so: @@ -49,7 +49,7 @@ The [`hx-swap`](@/attributes/hx-swap.md) attribute allows you to control how a s Many people prefer to use the `outerHTML` strategy as the default instead. You can change this behavior using the `htmx.config.defaultSwapStyle` -[configuration variable](/@docs.md#config). +[configuration variable](@/docs.md#config). Here is a `meta` tag configuration that does so: