File: with_blocks.html

package info (click to toggle)
ruby-kramdown 2.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 2,896 kB
  • sloc: ruby: 6,462; makefile: 10
file content (38 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (8)
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
<dl>
  <dt>kram</dt>
  <dd>this is some
text</dd>
  <dd>
    <p>this is some
more text</p>
  </dd>
  <dt>kram</dt>
  <dd>
    <blockquote>
      <p>blockquote</p>
    </blockquote>
  </dd>
  <dt>kram</dt>
  <dd>
    <pre><code>code
</code></pre>
  </dd>
  <dt>kram</dt>
  <dd>
    <dl>
      <dt>kram</dt>
      <dd>down</dd>
    </dl>
  </dd>
  <dt>kram</dt>
  <dd>
    <h1>header</h1>
  </dd>
  <dt>kram</dt>
  <dd>
    <ul>
      <li>list</li>
      <li>items</li>
    </ul>
  </dd>
</dl>