本文介绍了WMD - 如何获取生成的'Markdown HTML代码'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以及我得到WMD,但我无法学习如何获得生成的HTML \Markdown Code ....我想将它发送到数据库...这就是为什么我使用PHP ....
well i got WMD but i am unable to learn how to get the generated HTML\Markdown Code.... i want to send it to the DB... thats why i am using PHP....
<script src='wmd.js'></script>
<form name="formname" method='POST'>
<textarea id="myTextarea" style="width: 500px; height: 200px;">
*This* example sets WMD's options programmatically.
</textarea>
<input type="submit" name="sub" value="submit">
</form>
<!--Preview Can Be Seen Here-->
<div class="wmd-preview" id="wmd"></div>
<?php
if( isset( $_POST['sub'] ) )
{
$generated_HTML = "How to get it here";
}
?>
现在任何人都可以告诉我如何获得生成的HTML ...
now can anyone please tell me how to get the generated HTML...
推荐答案
WMD编辑器只是一个客户端文本编辑器,支持输入markdown格式的文本。要将降价转换为HTML,您需要一个降价解析器。
The WMD editor is just a client-side text editor that supports the input of markdown-formatted text. To convert markdown to HTML you'll need a markdown parser.
快速谷歌告诉我至少有一个可用:
A quick google tells me there's at least one available: http://michelf.com/projects/php-markdown/
这篇关于WMD - 如何获取生成的'Markdown HTML代码'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!