From dafb98ef231e846c822c326d78459e76ae1fcfdd Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Tue, 8 Oct 2024 10:35:58 -0700 Subject: [PATCH] fix hyperlink --- dev/src/Command/ListBrokenXrefsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/src/Command/ListBrokenXrefsCommand.php b/dev/src/Command/ListBrokenXrefsCommand.php index 703a1f4d1c29..1033f8acbbf1 100644 --- a/dev/src/Command/ListBrokenXrefsCommand.php +++ b/dev/src/Command/ListBrokenXrefsCommand.php @@ -53,7 +53,7 @@ protected function execute(InputInterface $input, OutputInterface $output) if (preg_match(self::BROKEN_REFS_REGEX, $line, $matches)) { list(, $component, $file, $ref, $brokenText) = $matches; $link = sprintf( - '=HYPERLINK("https://github.com/googleapis/googleapis/blob/master/%s", "%s")', + '"=HYPERLINK(""https://github.com/googleapis/googleapis/blob/master/%s"", ""%s"")"', $file, $file );