spotify_playlist_maker 0.2.4

A Rust package to automate Spotify playlist creation
Documentation
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Spotify Playlist Maker</title>
    <link rel="stylesheet" href="styles.css" />
    <script src="/main.js" defer></script>
  </head>
  <body>
    <main class="container">
      <header>
        <h1>Spotify Playlist Maker</h1>
        <p class="subtitle">Name your playlist, add songs (one per line), then create.</p>
      </header>
      <section class="editor">
        <label for="playlist-name">Playlist Name</label>
        <input id="playlist-name" type="text" placeholder="Playlist Name" />

        <label for="songs" style="margin-top: 16px;">Songs</label>
        <textarea id="songs" rows="12" spellcheck="false"
          placeholder="System of a Down - Holy Mountains&#10;Tool - 46 &amp; 2&#10;Rage Against the Machine - Killing in the Name"></textarea>

        <div class="row">
          <button id="save" class="secondary" type="button">Save list</button>
          <button id="run" class="primary" type="button">Create playlist</button>
        </div>
      </section>
      <section class="status">
        <pre id="out"></pre>
      </section>
    </main>
  </body>
</html>