/usr/share/sqwebmail/wikifmt.html is in sqwebmail 0.68.2-1ubuntu7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content="Bluefish 2.0.2" />
<meta http-equiv="content-type" content=
"text/html; charset=us-ascii" />
<title>HTML formatting conventions</title>
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
</head>
<body>
<h1>HTML Formatting conventions</h1>
<p>Enter the following formatting codes to get the results on the
right. Use the "Preview" button to verify correct formatting.</p>
<p><b>Note:</b> "Display HTML E-mail" must be enabled in the
Preferences screen.</p>
<table border="0" cellpadding="16">
<tbody>
<tr valign="top">
<td style="font-family: monospace, arial new">This is
''italic'' and '''bold''' text. This is _underlined_text_.
The underlined text begins with an underscore that follows
a space, and ends with an underscore that's followed by a
space, tab, comma, semicolon, colon, or a
period.<br /></td>
<td>
<p>This is <i>italic</i> and <b>bold</b> text. This is
<u>underlined text</u>. The underlined text begins with
an underscore that follows a space, and ends with an
underscore that's followed by a space, tab, comma,
semicolon, colon, or a period.</p>
</td>
</tr>
<tr>
<td colspan="2">
<hr />
</td>
</tr>
<tr valign="top">
<td style="font-family: monospace, arial new">
<p>= Heading 1</p>
</td>
<td>
<h1>Heading 1</h1>
</td>
</tr>
<tr valign="top">
<td style="font-family: monospace, arial new">
<p>== Heading 2</p>
</td>
<td>
<h2>Heading 2</h2>
</td>
</tr>
<tr valign="top">
<td style="font-family: monospace, arial new">
<p>=== Heading 3</p>
</td>
<td>
<h3>Heading 3</h3>
</td>
</tr>
<tr valign="top">
<td style="font-family: monospace, arial new">This is an
ordinary paragraph.<br />
<br />
Lines of text indented by spaces are shown in fixed
width font.<br /></td>
<td>
<p>This is an ordinary paragraph.<br /></p>
<p><tt> Lines of text indented by spaces are shown
in fixed width font.</tt><br /></p>
</td>
</tr>
<tr>
<td colspan="2">
<hr />
</td>
</tr>
<tr valign="top" style="font-family: monospace, arial new">
<td>Let's make a bulleted list:<br />
<br />
* Item 1. Itemized lists are created by prefixing a line
with the "asterisk" character. This begins a list.<br />
<br />
* Item 2. Of the same list.<br />
<br />
Let's make a numbered list:<br />
<br />
# Numbered list are created by beginning the line of text
with a # character.<br />
<br />
# This is the second entry in the ordered list.<br />
<br />
#* Sublists are created by adding additional characters.
This is the first entry of the bulleted sublist.<br />
<br />
#* This is the second entry of the bulleted sublist.<br />
<br />
# The original numbered list continues with this
entry.<br />
<br />
#+ Repeating the same list character followed by a + adds a
paragraph to the list entry.<br /></td>
<td>
<p>Let's make a bulleted list:<br /></p>
<ul>
<li>Item 1. Itemized lists are created by prefixing a
line with the "asterisk" character. This begins a
list.<br /></li>
<li>Item 2. Of the same list.<br /></li>
</ul>
<p>Let's make a numbered list:<br /></p>
<ol>
<li>
<p>Numbered list are created by beginning the line of
text with a # character.</p>
</li>
<li>
<p>This is the second entry in the ordered list.</p>
<ul>
<li>
<p>Sublists are created by adding additional
characters. This is the first entry of the
bulleted sublist.</p>
</li>
<li>
<p>This is the second entry of the bulleted
sublist.</p>
</li>
</ul>
</li>
<li>
<p>The original numbered list continues with this
entry.</p>
<p>Repeating the same list character followed by a +
adds a paragraph to the list entry.</p>
</li>
</ol>
</td>
</tr>
</tbody>
</table>
</body>
</html>
|