-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_metadata.html
More file actions
20 lines (20 loc) · 1003 Bytes
/
Copy pathtest_metadata.html
File metadata and controls
20 lines (20 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page - GitHub Repository</title>
<meta name="description" content="This is a test page for testing metadata extraction. It should show up in the hover card.">
<meta property="og:title" content="Open Graph Test Title">
<meta property="og:description" content="Open Graph description for social media sharing">
<meta property="og:image" content="https://example.com/test-image.jpg">
<link rel="icon" href="https://github.com/favicon.ico">
<link rel="shortcut icon" href="https://github.com/favicon.ico">
<link rel="apple-touch-icon" href="https://github.com/apple-touch-icon.png">
</head>
<body>
<h1>Test Page Header</h1>
<p>This is a test paragraph that should be extracted as a fallback description if no meta description is found.</p>
<p>Another paragraph to test content extraction.</p>
</body>
</html>