-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.25 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/gitcat.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>repo2txt — Convert Repos to LLM-Ready Text</title>
<meta
name="description"
content="Convert GitHub repositories or local directories to plain text for LLM prompts. Fast, browser-based tool for AI-assisted development."
/>
<meta
name="keywords"
content="GitHub, repository, plain text, LLM, AI, code converter, developer tools"
/>
<meta name="author" content="Michael Farah" />
<!-- Open Graph / Social Media -->
<meta property="og:title" content="repo2txt — Convert Repos to LLM-Ready Text" />
<meta
property="og:description"
content="Convert GitHub repositories or local directories to plain text for LLM prompts"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/michael-farah/repo2txt-extension" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self'; object-src 'self'">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>