-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
187 lines (161 loc) · 5.95 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
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
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Plain Text Total Editor is a versatile text editing app for Android, allowing users to create and edit documents in multiple formats including TXT, HTML, CSS, and more.">
<meta name="keywords"
content="Plain Text Total Editor, Android text editor, text editing app, edit TXT, HTML editor, CSS editor, JavaScript editor">
<meta name="author" content="juanse77">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Plain Text Total Editor - User Manual">
<meta property="og:description"
content="Discover how to use Plain Text Total Editor, a powerful text editing app for Android that supports multiple formats like TXT, HTML, CSS, JavaScript, and more.">
<meta property="og:image" content="./img/ic_launcher-big.png">
<meta property="og:url" content="https://plain-text-total-editor.com">
<meta property="og:type" content="website">
<meta property="og:locale" content="es_ES">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Plain Text Total Editor - User Manual">
<meta name="twitter:description"
content="Learn to use Plain Text Total Editor for Android, your go-to app for editing and creating documents in TXT, HTML, CSS, and more.">
<meta name="twitter:image" content="./img/ic_launcher-big.png">
<meta name="twitter:site" content="@juanseraar77">
<title>Plain Text Total Editor - Android App Manual</title>
<link rel="icon" type="image/png" href="./img/ic_launcher.png">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
padding: 10px;
max-width: 1000px;
margin: 0 auto;
}
header,
footer,
article {
background-color: #fff;
border: 1px solid #ddd;
padding: 20px 25px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header {
margin-bottom: 10px;
}
/* Estilos del Encabezado */
header h1 {
font-size: 24px;
}
header p {
font-size: 14px;
}
section h2 {
font-size: 20px;
}
section p {
font-size: 16px;
color: #555;
}
section {
margin-top: 30px;
}
/* Corregir la etiqueta incorrecta 'smaill' a 'small' */
small {
font-size: smaller;
}
#main-content {
margin-top: 0;
}
a {
color: #FF6347;
cursor: pointer;
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header,
footer {
background-color: #FF6347;
color: white;
}
header h1 a,
header h1,
footer p a,
footer p {
color: white;
}
</style>
</head>
<body>
<header>
<h1>
Plain Text Total Editor - User Manual
</h1>
</header>
<article>
<section id="main-content">
<h2>General Description:</h2>
<p>
<a href="https://github.com/juanse77/plain-text-total-editor">
Plain Text Total Editor</a>
is designed to create and edit plain text files.
You can create files from scratch or open them in editing mode.
</p>
</section>
<section>
<h2>Application Behavior:</h2>
<p>
The formats it accepts are: TXT, HTML, CSS, JavaScript, JSON, Python, Perl, C, C++, and MarkDown.
The application does not perform validations on the structure of the document.
Its operation is that of a basic notepad-type editor.
The program can be used in write or read mode activating the 'edit switch'.
</p>
</section>
<section>
<h2>Reading and Writting:</h2>
<p>
The application can read documents in any path accessible from the device.
Documents once edited can be saved. The files will be automatically saved in the <i>Download/notes</i> folder,
taking the name assigned in the application's text field. During the saving process, the file name
extension will be checked.
If the extension matches one of those accepted by the application, the file will be stored with that
name.
If no extension is assigned, or the extension is not supported, the file will be created with a 'txt'
extension.
If a file with that name already exists, it will be rewritten.
</p>
</section>
<section>
<h2>License:</h2>
<p>
This project is licensed under the MIT License.
</p>
</section>
<section>
<h2>Privacy Policy:</h2>
<p>
You can check the privacy policy in our <a href="./privacy-policy.html">Privacy Policy</a> page.
</p>
</section>
<section>
<h2>Donate:</h2>
<p>
If you like the app, please <a href="https://buymeacoffee.com/total.plain.text.editor">
support us with a coffee</a> 😊
</p>
</section>
</article>
<footer style="margin-top: 10px;">
<p style="text-align: center; margin: 0;">
<small>
<a href="https://github.com/juanse77/plain-text-total-editor">
© 2024 Plain Text Total Editor
</a>
</small>
</p>
</footer>
</body>