-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (83 loc) · 2.47 KB
/
index.html
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
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="description" content="Create code snippets for Visual Studio the easy way. Write, validate and preview your snippets with this simple application.">
<title>Snippety</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="src/index.css">
<script type="module" src="src/index.ts"></script>
</head>
<body>
<div id="page-wrapper">
<main>
<section class="hero-section">
<h1>
Snippety
</h1>
<p id="subtitle">
Create code snippets for Visual Studio the easy way.
</p>
<a class="button accent" href="editor.html">
Get started
</a>
</section>
<section class="sub-section">
<h2>
What is Snippety?
</h2>
<p>
Snippety is an application for creating and editing Visual Studio snippet files.
</p>
</section>
<section class="sub-section">
<h2>
Why use Snippety?
</h2>
<ul>
<li>
Quickly create snippets without writing XML
</li>
<li>
Snippets are validated so they work first time
</li>
<li>
See live previews of your snippets
</li>
<li>
None of your data is sent to the server
</li>
<li>
Drag and drop snippet files to open them quickly
</li>
</ul>
</section>
<section class="sub-section">
<h2>
How do I use my snippets in Visual Studio?
</h2>
<p>
Save your snippets in a folder that Visual Studio knows contains user-defined snippets.
</p>
<p>
The default folder for user-defined snippets in Visual Studio 2022
is <span class="folder-path">%USERPROFILE%\Documents\Visual Studio 2022\Code Snippets</span>
</p>
</section>
<section class="sub-section">
<h2>
Sound good?
</h2>
<a class="button accent" href="editor.html">
Create a new snippet
</a>
</section>
</main>
<footer>
Created by Jack Griffiths. <a href="https://github.com/JackGriffiths/snippety">View the source code on GitHub.</a>
</footer>
</div>
</body>
</html>