フォーム要素としてAloha HTML5 RTEを使いたいです。 http://aloha-editor.org/index.php
最終的には、「ContentEditable」属性に要約されます。通常は次のように適用されます
<section contenteditable="true" id="editable">
<h2>Go ahead, edit away!</h2>
<p>Here's a typical paragraph element</p>
<ol>
<li>and now a list</li>
<li>with only</li>
<li>three items</li>
</ol>
</section>
フォーム要素に同様の機能が必要なため、フォーマットされた HTML をフォームの名前と値のペアとしてサーバー側に送信できます。
実現可能ですか?どのように ?