takumi 2.3.2

Render UI component trees to images.
Documentation
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>text_transform_all</title>
    <link rel="stylesheet" href="../shared.css" />
  </head>
  <body style="width: 1200px; height: 630px">
    <div style="display: flex; width: 100%; height: 100%; background-color: rgb(240, 240, 240)">
      <span style="display: flex; width: 100%; font-size: 28px; text-transform: none"
        >None: The quick Brown Fox</span
      ><span style="display: flex; width: 100%; font-size: 28px; text-transform: uppercase"
        >Uppercase: The quick Brown Fox</span
      ><span style="display: flex; width: 100%; font-size: 28px; text-transform: lowercase"
        >Lowercase: The QUICK Brown FOX</span
      ><span style="display: flex; width: 100%; font-size: 28px; text-transform: capitalize"
        >Capitalize: the quick brown fox</span
      >
    </div>
  </body>
</html>