Welcome to mirror list, hosted at ThFree Co, Russian Federation.

basic.html « email « gitlab « lib « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 807b23c46e343ec5ddaf2161c1400923d1a332b8 (plain)
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
<html>
  <title>Ignored Title</title>
  <body>
    <h1>Hello, World!</h1>

    This is some e-mail content.
    Even though it has whitespace and newlines, the e-mail converter
    will handle it correctly.

    <p><em>Even</em> mismatched tags.</p>

    <div>A div</div>
    <div>Another div</div>
    <div>A div<div><strong>within</strong> a div</div></div>

    <p>Another line<br />Yet another line</p>

    <a href="http://foo.com">A link</a>
    
    <p><details><summary>One</summary>Some details</details></p>
    
    <p><details><summary>Two</summary>Some details</details></p>

    <img class="header__logoSize_110px" src="http://img.png" hspace="0" vspace="0" border="0" 
         style="display:block; width:138px; max-width:138px;" width="138" alt="Miro">

    <table>
      <thead>
        <tr>
          <th>Col A</th>
          <th>Col B</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>
            Data A1
          </td>
          <td>
            Data B1
          </td>
        </tr>
        <tr>
            <td>
              Data A2
            </td>
            <td>
              Data B2
            </td>
        </tr>
        <tr>
          <td>
            Data A3
          </td>
          <td>
            Data B4
          </td>
        </tr>
      </tbody>
      <tfoot>
        <tr>
            <td>
              Total A
            </td>
            <td>
              Total B
            </td>
        </tr>
      </tfoot>
    </table>
  </body>
</html>