Skip to content

Commit 3775cfa

Browse files
authored
Merge pull request #1794 from rokoucha/support-webp-in-image-node
Handle .webp URL as an Image
2 parents 7fd7482 + 8c95ef1 commit 3775cfa

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

src/block/node/ImageNode.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ import type { NodeCreator } from "./creator.ts";
55
import type { ImageNode, PlainNode } from "./type.ts";
66

77
const srcFirstStrongImageRegExp =
8-
/\[https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg)(?:\?[^\]\s]+)?(?:\s+https?:\/\/[^\s\]]+)?\]/i;
8+
/\[https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg|webp)(?:\?[^\]\s]+)?(?:\s+https?:\/\/[^\s\]]+)?\]/i;
99
const linkFirstStrongImageRegExp =
10-
/\[https?:\/\/[^\s\]]+\s+https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg)(?:\?[^\]\s]+)?\]/i;
10+
/\[https?:\/\/[^\s\]]+\s+https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg|webp)(?:\?[^\]\s]+)?\]/i;
1111
const srcFirstStrongGyazoImageRegExp =
1212
/\[https?:\/\/(?:[0-9a-z-]+\.)?gyazo\.com\/[0-9a-f]{32}(?:\/raw)?(?:\s+https?:\/\/[^\s\]]+)?\]/;
1313
const linkFirstStrongGyazoImageRegExp =
1414
/\[https?:\/\/[^\s\]]+\s+https?:\/\/(?:[0-9a-z-]+\.)?gyazo\.com\/[0-9a-f]{32}(?:\/raw)?\]/;
1515

1616
const isImageUrl = (text: string): boolean =>
17-
/^https?:\/\/[^\s\]]+\.(png|jpe?g|gif|svg)(\?[^\]\s]+)?$/i.test(text) ||
17+
/^https?:\/\/[^\s\]]+\.(png|jpe?g|gif|svg|webp)(\?[^\]\s]+)?$/i.test(text) ||
1818
isGyazoImageUrl(text);
1919

2020
const isGyazoImageUrl = (text: string): boolean =>

src/block/node/StrongImageNode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createNodeParser } from "./creator.ts";
44
import type { NodeCreator } from "./creator.ts";
55
import type { PlainNode, StrongImageNode } from "./type.ts";
66

7-
const strongImageRegExp = /\[\[https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg)\]\]/i;
7+
const strongImageRegExp = /\[\[https?:\/\/[^\s\]]+\.(?:png|jpe?g|gif|svg|webp)\]\]/i;
88
const strongGyazoImageRegExp =
99
/\[\[https?:\/\/(?:[0-9a-z-]+\.)?gyazo\.com\/[0-9a-f]{32}\]\]/;
1010

tests/line/__snapshots__/image.test.ts.snap

+13-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ exports[`image > HTTP jpeg image with special and japanese chars 1`] = `
116116
]
117117
`;
118118

119-
exports[`image > HTTPS svg and GIF image with link 1`] = `
119+
exports[`image > HTTPS svg, GIF and WebP image with link 1`] = `
120120
[
121121
{
122122
"indent": 0,
@@ -142,6 +142,18 @@ exports[`image > HTTPS svg and GIF image with link 1`] = `
142142
],
143143
"type": "line",
144144
},
145+
{
146+
"indent": 0,
147+
"nodes": [
148+
{
149+
"link": "https://example.com",
150+
"raw": "[https://example.com/image.webp https://example.com]",
151+
"src": "https://example.com/image.webp",
152+
"type": "image",
153+
},
154+
],
155+
"type": "line",
156+
},
145157
]
146158
`;
147159

tests/line/__snapshots__/strongImage.test.ts.snap

+11
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,16 @@ exports[`strongImage > Simple strong image 1`] = `
9494
],
9595
"type": "line",
9696
},
97+
{
98+
"indent": 0,
99+
"nodes": [
100+
{
101+
"raw": "[[https://example.com/image.webp]]",
102+
"src": "https://example.com/image.webp",
103+
"type": "strongImage",
104+
},
105+
],
106+
"type": "line",
107+
},
97108
]
98109
`;

tests/line/image.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ describe("image", () => {
2424
).toMatchSnapshot();
2525
});
2626

27-
it("HTTPS svg and GIF image with link", () => {
27+
it("HTTPS svg, GIF and WebP image with link", () => {
2828
expect(
2929
parse(
3030
`
3131
[https://example.com/image.svg https://example.com/]
3232
[https://example.com/ https://example.com/image.GIF]
33+
[https://example.com/image.webp https://example.com]
3334
`.trim(),
3435
{
3536
hasTitle: false,

tests/line/strongImage.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ describe("strongImage", () => {
1010
[[https://example.com/image.JPG]]
1111
[[https://example.com/image.svg]]
1212
[[https://example.com/image.GIF]]
13+
[[https://example.com/image.webp]]
1314
`.trim(),
1415
{
1516
hasTitle: false,

0 commit comments

Comments
 (0)