Thursday, June 04, 2026 3:27:57 AM
> project show esm_website_v1
The unexpected heart of the ESM ecosystem. What started as a simple Rails dashboard has evolved into the command center for thousands of gaming communities, proving that sometimes the best infrastructure projects are the ones you never planned to build.
Details
> markdown.js
import DOMPurify from "dompurify";
import { marked } from "marked";

export default class Markdown {
  static toHTML(markdown) {
    const html = marked.parse(markdown);

    return DOMPurify.sanitize(html, {
      USE_PROFILES: { html: true },
      FORBID_TAGS: ["p", "h4", "h5", "h6"],
    });
  }
}
All opinions represented herein are my own
- © 2024 - 2026 itsthedevman
- build 4294fb2