File: html_classes.html

package info (click to toggle)
python-markdown2 2.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,492 kB
  • sloc: python: 6,201; perl: 1,493; php: 865; makefile: 37
file content (68 lines) | stat: -rw-r--r-- 1,473 bytes parent folder | download | duplicates (2)
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
<table class="table table-striped">
<thead class="table-light">
<tr>
  <th>Header 1</th>
  <th><em>Header</em> 2</th>
</tr>
</thead>
<tbody>
<tr>
  <td><code class="codesyntaxcolor">Cell 1</code></td>
  <td><a href="http://example.com">Cell 2</a> link</td>
</tr>
<tr>
  <td>Cell 3</td>
  <td><strong>Cell 4</strong></td>
</tr>
</tbody>
</table>

<table class="table table-striped">
    <thead class="table-light">
        <tr>
            <th>Year</th>
            <th>Temperature (low)</th>
            <th>Temperature (high)</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1900</td>
            <td>-10</td>
            <td>25</td>
        </tr>
        <tr>
            <td>1910</td>
            <td>-15</td>
            <td>30</td>
        </tr>
        <tr>
            <td>1920</td>
            <td>-10</td>
            <td>32</td>
        </tr>
    </tbody>
</table>

<p class="col-xs-3 custom-paragraph-class">For example:</p>

<pre class="syntaxcolor"><code class="codesyntaxcolor">if cond:
    print doit()
</code></pre>

<p class="col-xs-3 custom-paragraph-class"><img src="http://www.google.com/images/logo.gif" alt="the google logo" class="custom-image-class" />
Unordered list:</p>

<ul class="custom-unordered-list-class">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

<p class="col-xs-3 custom-paragraph-class">Ordered list:</p>

<ol class="custom-ordered-list-class">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>