具有自定义预览的 WMD Markdown 编辑器
我想将 WMD 与 PHP Markdown Extra 结合使用。我不需要编辑器中的任何新按钮,但我需要实时预览来反映额外 Markdown 功能的使用,最值得注意的是 表格。
是否有 WMD 配置选项可以使用预览生成的服务器端?类似于 MarkItUp 的 previewParserPath
值?如果没有,我还有什么其他选择?
I'd like to use WMD with PHP Markdown Extra. I don't need any new buttons in the editor, but I need the live preview to reflect the use of the extra markdown features, most notably tables.
Is there a WMD configuration option to use a preview generated server-side? Similar to the previewParserPath
value for MarkItUp? If not, what are my other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在这里进行跨语言 Markdown 实现:http://code.google.com/p /mdown/
它是 showdown 的衍生版本,是 wmd 中使用的 Markdown 实现。
目前它的 99% 都可以在 PHP 和 JavaScript 中运行,但 JavaScript 版本中存在一个非严重的小错误。
我打算尽快添加 PHP Markdown Extra 的功能,这样它们就可以在 javascript 和 PHP 版本中使用。事实上,这就是我开始这个项目的全部原因......
所以,我想这并不是一个真正的答案,但如果你有耐心,这应该会在下周的某个时候准备好。或者,如果您想尝试自己添加它,我可以为您提供该项目的访问权限,您可以尝试一下。
I'm working on a cross-language markdown implementation here: http://code.google.com/p/mdown/
It's a derivative of showdown, which is the Markdown implementation used in wmd.
It's currently 99% working in PHP and javascript, with one small non-critical bug in the javascript version.
I intend to add the features from PHP Markdown Extra ASAP, so they'll be available in both the javascript and PHP versions. In fact this was the whole reason I started this project...
So, it's not really an answer I guess, but if you're patient this should be ready by some time next week. Or, if you want to try adding it yourself, I can give you access to the project and you can take a shot at it.