mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example Syntax Highlighter for Lava</title>
  <link rel="stylesheet" href="styles.css">
  <style>
    /* Quick inline styles for demonstration: */
    body {
      font-family: sans-serif;
      margin: 2rem;
    }
    h1 {
      margin-bottom: 1rem;
    }
    pre {
      background: #f0f0f0;
      padding: 1rem;
      border: 1px solid #ccc;
      overflow-x: auto;
      line-height: 1.4;
    }

    /* Example highlight classes: */
    .af-string {
      color: #d14; /* a red-ish color */
    }
    .af-number {
      color: #1c00cf;
    }
    .af-placeholder {
      background-color: #cfc;
    }
    .af-operator {
      font-weight: bold;
    }
    .af-comment {
      color: #999;
      font-style: italic;
    }
    .af-builtin {
      color: #0086b3;
    }
    .af-keyword {
      color: #008800;
      font-weight: bold;
    }
    /* etc. for other classes */
  </style>
</head>
<body>
  <h1>Example Syntax Highlighter Demo (Lava)</h1>

  <p>This page loads a short script from the <code>examples</code> folder and highlights it using <code>syntax-highlighting.json</code>.</p>

  <!-- Code snippet from examples/net-ping.mu for illustration: -->
  <pre id="code-block">
extend("net")

net:ping([
  dest: "cube.nu11.uk",
  count: 5
], sput)

localhost_ping = net:ping("127.0.0.1", sput)

net:stop(localhost_ping)
  </pre>

  <!-- The main highlight logic: -->
  <script src="syntax.js"></script>
</body>
</html>