-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (98 loc) · 3.23 KB
/
Copy pathindex.html
File metadata and controls
100 lines (98 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html lang="en">
<head>
<title>Reddit RSS API | Documentation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description"
content="A Deno-powered HTTP service that turns Reddit subreddit RSS feeds into structured JSON." />
<meta name="keywords"
content="reddit, rss, api, json, deno, documentation" />
<meta name="robots" content="index, follow" />
<meta name="author" content="sametcn99" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url"
content="https://reddit-rss-api.sametcn99.deno.net/" />
<meta property="og:title" content="Reddit RSS API | Documentation" />
<meta
property="og:description"
content="A Deno-powered HTTP service that turns Reddit subreddit RSS feeds into structured JSON with filtering, sorting, and merging."
/>
<meta property="og:image"
content="https://reddit-rss-api.sametcn99.deno.net/favicon.ico" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url"
content="https://reddit-rss-api.sametcn99.deno.net/" />
<meta property="twitter:title"
content="Reddit RSS API | Documentation" />
<meta
property="twitter:description"
content="A Deno-powered HTTP service that turns Reddit subreddit RSS feeds into structured JSON with filtering, sorting, and merging."
/>
<meta property="twitter:image"
content="https://reddit-rss-api.sametcn99.deno.net/favicon.ico" />
<style>
body {
margin: 0;
}
</style>
<script defer src="https://umami.sametcc.me/script.js"
data-website-id="276eaa1b-b400-4185-a887-3371fc7ee745"></script>
</head>
<body>
<div
id="migration-notice"
style="
background: #1a1a2e;
border-bottom: 1px solid #333;
padding: 8px 16px;
font-family:
system-ui,
-apple-system,
sans-serif;
color: #aaa;
font-size: 0.8rem;
line-height: 1.4;
display: flex;
align-items: center;
gap: 10px;
"
>
<span style="flex: 1">
<strong style="color: #e94560">We've moved!</strong>
This project migrated to Deno's new deploy platform. The old domain (<code>reddit-rss-api.deno.dev</code>) will lose access on
<strong>July 20, 2026</strong>. New home:
<a href="https://reddit-rss-api.sametcn99.deno.net/" style="color: #e94560">reddit-rss-api.sametcn99.deno.net</a>
</span>
<button
onclick="document.getElementById('migration-notice').remove()"
style="background: none; border: none; color: #666; cursor: pointer; font-size: 1.1rem; padding: 0 4px; line-height: 1"
title="Dismiss"
>
×
</button>
</div>
<script
id="api-reference"
data-url="/openapi.json"
data-configuration='{
"theme": "deepSpace",
"layout": "modern",
"showSidebar": true,
"searchHotKey": "k",
"defaultHttpClient": {
"targetKey": "shell",
"clientKey": "curl"
},
"spec": {
"url": "/openapi.json"
}
}'
></script>
<script
src="https://cdn.jsdelivr.net/npm/@scalar/api-reference"></script>
</body>
</html>