これ自体が実際の問題かどうかはわかりませんが、Epic Editorを使用して GAE アプリケーション (テンプレート エンジンとしてmakoを使用したwebpy ) にマークダウンを入力して保存しています。
フォームを送信すると、EpicEditor のコンテンツによって入力される非表示の入力要素がフォームにありましたが、すべての空白が に置き換えられました
。これは意図した機能ですか? EpicEditor サイトで同じコードを確認すると、代わりに明らかにスペースが返さ
れるので、何が違うのでしょうか?
<form>
<!-- form elements -->
<input id="content" name="content" type="hidden" value></input>
<div id="epiceditor"></div>
<button type="submit" name="submit" id="submit">submit</button>
</form>
<script type="text/javascript">
$('button#submit').click(function(){
var content = editor.getElement('editor').body.innerHTML; //all the spaces are returned as and breaks are <br>
$('input#content').html(content);
});
</script>
注: データ ストアの TextProperty フィールドにコンテンツをマークダウンとして保存し、marked.js を使用してコンテンツを取得するときに html タグを生成したい