getCursor(); // Get the match and extract relevant parts $fullMatch = $inlineContext->getFullMatch(); $meta = $this->redisCacheService->getMetadata($fullMatch); // Create a new inline node for the custom link $inlineContext->getContainer()->appendChild(new NostrMentionLink($meta->name, $fullMatch)); // Advance the cursor to consume the matched part (important!) $cursor->advanceBy(strlen($fullMatch)); return true; } }