Pure js cross-browser WYSIWYM editor with a focus on the clean separation of content and styling.
$("#doc").wymeditor()
is such picture...
dist/wymeditor
folder to my main app folder, where my XHTML file is situated
head
: <script src="wymeditor/jquery.wymeditor.min.js" type="text/javascript" />
<script src="js/jquery-2.1.4.min.js" type="text/javascript" />
My XHTML have this piece of code: ```
<form>
<textarea id="doc"></textarea>
</form>
```
src/wymeditor
to wymeditor
in my app folder, nothing changes
src
has more advanced things, including core.js
, that, I think, is very important in setting my editor.
src
and dist
by necessity, cause one loads core modules and at the same time second loads jQuery module. Why are they seprated, and need I unite them actually?