From 78a3ef4a48f5c0d513832b41e31fc2cfbab7e1ec Mon Sep 17 00:00:00 2001 From: jutty Date: Thu, 25 Dec 2025 23:54:09 -0300 Subject: [PATCH] Fix anchors not applying destination resolution --- src/syntax/content/parser/token/anchor.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/syntax/content/parser/token/anchor.rs b/src/syntax/content/parser/token/anchor.rs index 059814e..ac9a488 100644 --- a/src/syntax/content/parser/token/anchor.rs +++ b/src/syntax/content/parser/token/anchor.rs @@ -25,7 +25,11 @@ impl Parseable for Anchor { ) }; - format!(r#"{}"#, destination, &self.text) + format!( + r#"{}"#, + Anchor::resolve_destination(destination), + &self.text + ) } }