takumi 2.2.2

Render UI component trees to images.
Documentation
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>inline_block_in_inline</title>
    <link rel="stylesheet" href="../shared.css" />
  </head>
  <body style="width: 1200px; height: 630px">
    <div
      style="
        display: block;
        background-color: rgb(255, 255, 255);
        width: 100%;
        font-size: 24px;
        text-wrap-mode: nowrap;
        white-space-collapse: preserve;
      "
    >
      <span style="display: inline">Start </span>
      <div
        style="display: block; background-color: rgb(200, 200, 255); width: 80%; font-size: 18px"
      >
        <span style="display: block">Block inside inline</span>
      </div>
      <span style="display: inline"> End</span>
    </div>
  </body>
</html>