[
  {
    "text": "  \n\nhello",
    "tokens": [
      {
        "type": "newline"
      },
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello"
          }
        ]
      }
    ]
  },

  {
    "text": "hello  \nworld",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello"
          },
          {
            "type": "linebreak"
          },
          {
            "type": "text",
            "text": "world"
          }
        ]
      }
    ]
  },

  {
    "text": "hello **world**",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello "
          },
          {
            "type": "strong",
            "children": [
              {
                "type": "text",
                "text": "world"
              }
            ]
          }
        ]
      }
    ]
  },
  {
    "text": "hello `world`",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello "
          },
          {
            "type": "codespan",
            "text": "world"
          }
        ]
      }
    ]
  },
  {
    "text": "hello\n\n---\n\nworld",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello"
          }
        ]
      },
      {
        "type": "thematic_break"
      },
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "world"
          }
        ]
      }
    ]
  },

  {
    "text": "1. list",
    "tokens": [
      {
        "type": "list",
        "ordered": true,
        "level": 1,
        "children": [
          {
            "type": "list_item",
            "level": 1,
            "children": [
              {
                "type": "block_text",
                "children": [
                  {
                    "type": "text",
                    "text": "list"
                  }
                ]
              }
            ]
          }
        ]
      }
    ]
  },

  {
    "text": "2. list",
    "tokens": [
      {
        "type": "list",
        "ordered": true,
        "level": 1,
        "start": 2,
        "children": [
          {
            "type": "list_item",
            "level": 1,
            "children": [
              {
                "type": "block_text",
                "children": [
                  {
                    "type": "text",
                    "text": "list"
                  }
                ]
              }
            ]
          }
        ]
      }
    ]
  },

  {
    "text": "hello [lepture](https://lepture.com/)",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "hello "
          },
          {
            "type": "link",
            "link": "https://lepture.com/",
            "title": null,
            "children": [
              {
                "type": "text",
                "text": "lepture"
              }
            ]
          }
        ]
      }
    ]
  },

  {
    "text": "show ![alt](src)",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "text",
            "text": "show "
          },
          {
            "type": "image",
            "src": "src",
            "alt": "alt",
            "title": null
          }
        ]
      }
    ]
  },

  {
    "text": "<em>em</em>",
    "tokens": [
      {
        "type": "paragraph",
        "children": [
          {
            "type": "inline_html",
            "text": "<em>"
          },
          {
            "type": "text",
            "text": "em"
          },
          {
            "type": "inline_html",
            "text": "</em>"
          }
        ]
      }
    ]
  },

  {
    "text": "# heading",
    "tokens": [
      {
        "type": "heading",
        "level": 1,
        "children": [
          {
            "type": "text",
            "text": "heading"
          }
        ]
      }
    ]
  },

  {
    "text": "```py\nprint()\n```",
    "tokens": [
      {
        "type": "block_code",
        "info": "py",
        "text": "print()\n"
      }
    ]
  },

  {
    "text": "<div>1</div>",
    "tokens": [
      {
        "type": "block_html",
        "text": "<div>1</div>"
      }
    ]
  }
]
