Q: Are special characters escaped?
A: Yes. <, >, &, and quotes are HTML-entity encoded so the output is safe to inline anywhere.
Q: Does the output include styling?
A: No — only semantic markup. Provide a CSS class matching your existing stylesheet or framework.
Q: What if my CSV has quoted commas?
A: PapaParse handles RFC 4180 quoting, so fields like "Smith, John" convert correctly to a single cell.
Q: Is my data uploaded?
A: No. The conversion happens entirely in your browser.
Q: Can I use this with Bootstrap or Tailwind classes?
A: Yes. Any class string you enter is copied verbatim into the output's class attribute — use framework-specific classes like table table-striped (Bootstrap) or min-w-full divide-y (Tailwind). You can also chain multiple classes by separating them with spaces.