-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
110 lines (101 loc) · 4.49 KB
/
terms.html
File metadata and controls
110 lines (101 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - Markdown Pro</title>
<style>
:root {
color-scheme: light dark;
--bg: #0f172a;
--panel: #111827;
--text: #e5e7eb;
--muted: #9ca3af;
--accent: #60a5fa;
--border: rgba(255,255,255,0.12);
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f8fafc;
--panel: #ffffff;
--text: #0f172a;
--muted: #475569;
--accent: #2563eb;
--border: rgba(15,23,42,0.12);
}
}
body {
margin: 0;
font-family: Arial, sans-serif;
line-height: 1.7;
background: var(--bg);
color: var(--text);
}
main {
max-width: 900px;
margin: 0 auto;
padding: 2rem 1.25rem 4rem;
}
.card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 14px;
padding: 1.5rem;
margin-top: 1rem;
}
h1, h2 { line-height: 1.2; }
.muted { color: var(--muted); }
a { color: var(--accent); }
ul { padding-left: 1.25rem; }
</style>
</head>
<body>
<main>
<h1>Terms of Service</h1>
<p class="muted">Last updated: March 7, 2026</p>
<section class="card">
<h2>Acceptance of terms</h2>
<p>By using Markdown Pro, you agree to these Terms of Service. If you do not agree, do not use the application.</p>
</section>
<section class="card">
<h2>Description of service</h2>
<p>Markdown Pro is a browser-based markdown editor that allows users to create, edit, preview, manage, and export markdown documents. Some features may optionally integrate with Google Drive when a user chooses to connect a Google account.</p>
</section>
<section class="card">
<h2>User responsibility</h2>
<ul>
<li>You are responsible for the content you create, edit, store, upload, or export using the app.</li>
<li>You are responsible for maintaining backups of important content.</li>
<li>You are responsible for the Google account and permissions you choose to connect.</li>
<li>You agree not to use the service in a way that violates applicable law or third-party rights.</li>
</ul>
</section>
<section class="card">
<h2>Google Drive integration</h2>
<p>Google Drive access is optional. If you connect Google Drive, you authorize the app to interact with your Drive account according to the permissions granted by you through Google's consent flow. Your use of Google services is also subject to Google's own terms and policies.</p>
</section>
<section class="card">
<h2>No warranty</h2>
<p>Markdown Pro is provided on an "as is" and "as available" basis, without warranties of any kind to the extent permitted by law. This includes no guarantee that the service will always be uninterrupted, error free, or suitable for every use case.</p>
</section>
<section class="card">
<h2>Limitation of liability</h2>
<p>To the extent permitted by law, the operator of Markdown Pro is not liable for any indirect, incidental, consequential, special, or punitive damages, or for any loss of data, content, or business opportunity arising from use of the app.</p>
</section>
<section class="card">
<h2>Changes</h2>
<p>These terms may be updated from time to time. Continued use of the app after changes become effective constitutes acceptance of the updated terms.</p>
</section>
<section class="card">
<h2>Contact</h2>
<p>For questions about these terms, contact: <a href="mailto:ds@sudoall.com">ds@sudoall.com</a></p>
<p>Site: <a href="https://markdownpro.eyesondash.com/">https://markdownpro.eyesondash.com/</a></p>
</section>
<section class="card">
<p><a href="./about.html">About Markdown Pro</a></p>
<p><a href="./privacy.html">Privacy Policy</a></p>
<p><a href="./index.html">Open the app</a></p>
</section>
</main>
</body>
</html>