From 70c3b059a503e6dc168cd2f3db29c810a326488e Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sun, 26 Apr 2026 19:53:05 -0700 Subject: [PATCH] fix member references --- src/config/io/markdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/io/markdown.ts b/src/config/io/markdown.ts index c3ae93c..9d2bcd4 100644 --- a/src/config/io/markdown.ts +++ b/src/config/io/markdown.ts @@ -36,7 +36,7 @@ const remarkParseAtTypes: RemarkPlugin<[]> = ) { const node = rawNode as Md.Literal; node.value = node.value.replace( - /@@(?([A-Z]\w*\.)*([A-Z]\w*))?((?[a-z]\w*)((?\(\))|(?\(s\)))?)?(?=[$.,;:)\s]|$)/g, + /@@(?([A-Z]\w*\.)*([A-Z]\w*))?(\.(?[a-z]\w*)((?\(\))|(?\(s\)))?)?(?=[$.,;:)\s]|$)/g, (_full, ...args) => { type Capture = { path: string | undefined;