-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 4.29 KB
/
index.html
File metadata and controls
98 lines (86 loc) · 4.29 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EETWRVM0YS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-EETWRVM0YS');
</script>
<meta charset="UTF-8" />
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎭</text></svg>" />
<link rel="apple-touch-icon" sizes="180x180" href="./icon_180x180.png">
<link rel="icon" type="image/png" sizes="32x32" href="./icon_32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icon_16x16.png">
<link rel="manifest" href="./site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CCEditor - Online AI Character Card Editor | Multi-Format Support</title>
<meta name="description"
content="CCEditor: A free, open-source online editor for AI character cards. Supports multiple formats (v1, v2, v3), multi-language UI, local history, and direct URL loading. Ideal for SillyTavern and AI enthusiasts." />
<meta name="keywords"
content="character card editor, ai character, cceditor, sillytavern, prompt editor, character definition, online editor, open source, v1 card, v2 card, v3 card, ai tools, character creation" />
<meta name="author" content="lenML" />
<link rel="canonical" href="https://lenml.github.io/CCEditor/" />
<meta property="og:title" content="CCEditor - Online AI Character Card Editor" />
<meta property="og:description"
content="Create and edit AI character cards with CCEditor. Supports multiple formats, languages, and features a VSCode-like editor. Free and open-source." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lenml.github.io/CCEditor/" />
<meta property="og:image" content="https://lenml.github.io/CCEditor/share_screenshot.jpg" />
<meta property="og:site_name" content="CCEditor" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="zh_CN" />
<meta property="og:locale:alternate" content="ja_JP" />
<meta property="og:locale:alternate" content="ko_KR" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CCEditor - Online AI Character Card Editor" />
<meta name="twitter:description"
content="CCEditor: A free, open-source online editor for AI character cards. Supports multiple formats (v1, v2, v3), multi-language UI, and more." />
<meta name="twitter:image" content="https://lenml.github.io/CCEditor/share_screenshot.jpg" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "CCEditor",
"applicationCategory": "DesignApplication",
"operatingSystem": "Web Browser",
"description": "An online character card editor for AI character definitions. Supports multiple formats (v1, v2, v3), multi-language UI, local history, built-in code editor, export options, and direct card loading via URL.",
"url": "https://lenml.github.io/CCEditor/",
"screenshot": "https://lenml.github.io/CCEditor/share_screenshot.jpg",
"softwareVersion": "1.0.7",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "lenML",
"name": "lenML",
"url": "https://github.com/lenML"
},
"keywords": "character card editor, ai character, cceditor, sillytavern, prompt editor, character definition, online editor, open source",
"inLanguage": ["en", "zh", "ja", "ko"],
"license": "https://spdx.org/licenses/AGPL-3.0-only.html"
}
</script>
</head>
<body>
<div id="root">
<noscript>
<h1>CCEditor - AI Character Card Editor</h1>
<p>
CCEditor is an online tool for creating and editing AI character cards.
It supports multiple formats, languages, and offers a built-in code editor.
Please enable JavaScript to use CCEditor.
</p>
<p>
Visit our project on <a href="https://github.com/lenML/CCEditor">GitHub</a>.
</p>
</noscript>
</div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>