File: nested-block.yml

package info (click to toggle)
markdown-callouts 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 420 kB
  • sloc: python: 195; sh: 17; makefile: 15
file content (21 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
input: |
  > TEST: foo
  >
  > > TEST: bar
output: |-
  <div class="admonition test">
    <p class="admonition-title">
      Test
    </p>
    <p>
      foo
    </p>
    <div class="admonition test">
      <p class="admonition-title">
        Test
      </p>
      <p>
        bar
      </p>
    </div>
  </div>