forked from dgileadi/thunderbird-render-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
49 lines (39 loc) · 1.6 KB
/
Copy pathoptions.html
File metadata and controls
49 lines (39 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form>
<legend>Render Markdown By Sanchezluys:</legend>
<div>
<input type="radio" id="all-plain-text" name="scope" value="all-plain-text">
<label for="all-plain-text">For all plain text messages</label>
</div>
<div>
<input type="radio" id="markdown-header-detected" name="scope" value="markdown-header-detected">
<label for="markdown-header-detected">Only for messages with a markdown content type
</label>
</div>
<hr>
<div>
<label for="sender-email">Remitente específico:</label>
<input type="email" id="sender-email" name="sender-email">
</div>
<div>
<input type="checkbox" id="enable-sender-filter" name="enable-sender-filter">
<label for="enable-sender-filter">Activar filtro por remitente</label>
</div>
<p>
<small>Messages with a markdown content type are those having a content-type of
<code>text/markdown</code>, <code>text/x-markdown</code> or <code>text/plain</code> plus
<code>markup=markdown</code>
<a href="https://blog.freron.com/2011/thoughts-on-writing-emails-using-markdown/">a la MailMate</a>.
<code>GitHub Sanchezluys</code>
<a href="https://github.com/sanchezluys/thunderbird-render-markdown">Repositorio</a>.
</small>
</p>
</form>
<script src="options.js"></script>
</body>
</html>