📄 zeditor.js — Full build (CDN-ready, IIFE format)
📄 zeditor.min.js — Minified version (recommended for production)
📄 zeditor.es.js — ES Module format (for bundlers)
📄 zeditor.css — Editor styles
📄 zeditor.min.css — Minified styles
📄 README.md — Quick start guide
📄 LICENSE — MIT License
📄 example.html — Working example page
How to Use on Hostinger / Any Server
1. Extract zeditor-v1.0.4.zip
2. Upload the folder to your server (e.g., public_html/zeditor/)
3. Link the files in your HTML:
<link rel="stylesheet" href="/zeditor/zeditor.min.css">
<script src="/zeditor/zeditor.min.js"></script>
<div id="editor"></div>
<script>
const editor = new Zeditor('#editor', { height: 450 });
</script>