-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (165 loc) · 4.54 KB
/
index.html
File metadata and controls
178 lines (165 loc) · 4.54 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<title>Markdownify</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="title" content="Markdownify" />
<meta name="description" content="⚡Creating markdown made easy!!
💾Load and Save Markdown to Indexed DB
🚀Copy/Download Markdown with one-click
🌟Auto Save for Markdowns
🌓Dark/Light Mode
🎎Resizable Split UI
📬Spellcheck
🔌 No Internet
📖 OpenSource" />
<link rel="icon" type="image/jpeg" href="images/markdownify-logo.jpg" />
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet" />
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet" />
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<section class="home">
<img src="images/markdownify-logo.jpg" width="90px" />
<h2>MarkDownify</h2>
<p>
The only markdown editor you will ever need
</p>
<p>
<a class="btn primary" href="app/index.html" target="_BLANK" rel="noreferrer noopener">
Use now!</a>
<a class="btn" href="https://github.com/rainboestrykr/markdownify" target="_BLANK" rel="noreferrer noopener">
Github Repo</a>
</p>
<p class="social">
<a href="https://github.com/rainboestrykr/markdownify" target="_BLANK" rel="noreferrer noopener">
<img alt="GitHub stars" src="https://img.shields.io/github/stars/visualway/markdownify?style=social" />
</a>
</p>
</section>
<div class="live-preview">
<div class="preview">
<img src="images/mockup.png" width="100%" alt="Markdownify App Screenshot" />
</div>
</div>
<section class="powered">
<span></span>
<a href="https://www.producthunt.com/posts/markdownify-2?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-markdownify-2"
target="_blank"><img
src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=313769&theme=light"
alt="Markdownify - A markdown editor in your browser | Product Hunt" style="width: 250px; height: 54px;"
width="250" height="54" /></a>
</section>
<div class="container">
<section class="feature">
<div>
<img src="images/img6.jpg" />
</div>
<div class="ta-start">
<h2>Upload markdown files from disk to edit on the web</h2>
</div>
</section>
<section class="feature">
<div class="ta-start">
<h2>Save/Download Markdown</h2>
<p>
Easily Save and download markdowns in html format, All your markdowns are saved to Indexed DB and
are accessible in
offline mode.
</p>
</div>
<div>
<img src="images/img1.jpg" />
</div>
</section>
<section class="feature">
<div>
<img src="images/img2.jpg" />
</div>
<div class="ta-start">
<h2>Copy markdown</h2>
<p>
Copy complete markdowns in one click.
</p>
</div>
</section>
<section class="feature">
<div class="ta-start">
<h2>Dark/Light Mode</h2>
<p>
Choose from light or dark mode to match your vibe.
</p>
</div>
<div>
<img src="images/img3.png" />
</div>
</section>
<section class="feature">
<div>
<img src="images/img4.jpg" />
</div>
<div class="ta-start">
<h2>Spellcheck</h2>
<p>
Shows recommendations for grammar and spelling for better accessibility.
</p>
</div>
</section>
<section class="feature">
<div class="ta-start">
<h2>Code Highligting</h2>
<p>
Beautiful syntax highlighting for your code snippets!
</p>
</div>
<div>
<img src="images/img5.jpg" />
</div>
</section>
</div>
<section class="h-100">
<div class="features">
<div>
<div class="icon-holder">
<i class="em em-point_up_2"></i>
</div>
Live Preview
</div>
<div>
<div class="icon-holder">
<i class="em em-rocket"></i>
</div>
Copy/Download Markdown
</div>
<div>
<div class="icon-holder">
<i class="em em-star2"></i>
</div>
Save
</div>
<div>
<div class="icon-holder">
<i class="em em-first_quarter_moon"></i>
</div>
Dark/Light Mode
</div>
<div>
<div class="icon-holder">
<i class="em em-book"></i>
</div>
OpenSource
</div>
</div>
</section>
<footer>
Made with <i class="em em-sparkling_heart"></i> by <a href="https://abhiraj.dev">Abhiraj</a>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.24.1/feather.min.js"></script>
<script>
feather.replace();
</script>
</body>
</html>