Skip to content

Commit 6e5142d

Browse files
extra space
1 parent 6789129 commit 6e5142d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/common/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ export async function processPermalinks(
10931093
) => {
10941094
try {
10951095
// Extract the original URL from attributes
1096-
const hrefMatch = attributes.match(/ href="([^"]+)"/);
1096+
const hrefMatch = attributes.match(/href="([^"]+)"/);
10971097
const originalUrl = hrefMatch ? hrefMatch[1] : '';
10981098

10991099
// Check if file exists locally
@@ -1155,7 +1155,7 @@ export async function processDiffLinks(
11551155
) => {
11561156
try {
11571157
// Extract the original URL from attributes
1158-
const hrefMatch = attributes.match(/ href="([^"]+)"/);
1158+
const hrefMatch = attributes.match(/href="([^"]+)"/);
11591159
const originalUrl = hrefMatch ? hrefMatch[1] : '';
11601160

11611161
// Look up filename from hash
@@ -1175,4 +1175,4 @@ export async function processDiffLinks(
11751175
// Return original HTML if processing fails
11761176
return bodyHTML;
11771177
}
1178-
}
1178+
}

0 commit comments

Comments
 (0)