Mime Type: text/x-php
<?php

use GeminiFoundation\Gemtext;

require dirname(__DIR__) . '/vendor/autoload.php';

$parser = new Gemtext(<<<GEMTEXT
  # heading

  text

  * listitem 1
  * listitem 2

  ```formatted
  {
    "key": "value"
  }
  ```

  > quote

  => /link
  => /link link
  GEMTEXT);

var_dump($parser->parse());