-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
63 lines (61 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DocDown</title>
<link rel="stylesheet" href="./vendor/css/photon.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./index.css" media="screen" charset="utf-8">
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
</head>
<body>
<!-- <div class="header-arrow"></div> -->
<div class="window">
<header class="toolbar toolbar-header">
<div class="title">
DocDown
</div>
<div class="toolbar-actions pull-right">
<div class="btn-group">
<button id="help_button" class="btn btn-default">
<span class="icon icon-help" title="Help"></span>
</button>
<button id="settings_button" class="btn btn-default">
<span class="icon icon-cog" title="Preferences"></span>
</button>
<button id="quit_button" class="btn btn-default">
<span class="icon icon-cancel" title="Quit"></span>
</button>
</div>
</div>
</header>
<div class="window-content" style="padding:10px;">
<div id="drag-file-container">
<div id="drag-file">
<p>
⚡️📝⚡️
</p>
<p>
Drag some<br />Markdown<br />files here!
</p>
<p>
⚡️📖⚡️
</p>
</div>
<button type="button" class="btn btn-large btn-primary" id="convert_again_button">Convert last converted file again</button>
</div>
<div id="help_section">
<p>
DocDown is a menu bar utility to convert files written in the lightweight Markdown syntax into academia-ready Word documents. Drop a file with the .txt, .md, or .markdown extension into DocDown, or export a file into it from an application like Ulysses, and it will export a Word file into your chosen directory.
</p>
<p>
Before you can start using DocDown, you will need to set up some preferences, accessed via the <button disabled id="settings_button" class="btn btn-default"><span class="icon icon-cog" title="Preferences"></span></button> button. Need more help? Visit the <a id="external_link" style="color:inherit" href="https://github.com/lowercasename/docdown">DocDown website</a> to get set up.
</p>
<p>
Happy converting!
</p>
</div>
</div>
</div>
</body>
<script src="./index-renderer.js"></script>
</html>