summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/kramdown/atlassian_document_format/strike_sup_sub_mark.json
blob: 21d364d642f3cd2b035d0a4c4fcb717a5f89f7b4 (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
{
  "version": 1,
  "type": "doc",
  "content": [
    {
      "type": "paragraph",
      "content": [
        {
          "type": "text",
          "text": "This is "
        },
        {
          "type": "text",
          "text": "stricken",
          "marks": [
            {
              "type": "strike"
            }
          ]
        },
        {
          "type": "text",
          "text": " and "
        },
        {
          "type": "text",
          "text": "superscripted",
          "marks": [
            {
              "type": "subsup",
              "attrs": {
                "type": "sup"
              }
            }
          ]
        },
        {
          "type": "text",
          "text": " and "
        },
        {
          "type": "text",
          "text": "subscripted",
          "marks": [
            {
              "type": "subsup",
              "attrs": {
                "type": "sub"
              }
            }
          ]
        }
      ]
    }
  ]
}