在文本区域中进行 Markdown 实时预览?
是否有任何 Javascript Markdown 编辑工具栏或库可以在文本区域中显示实时预览并隐藏格式标记(**、___ 等),类似于 TinyMCE 的 实现?
如果没有,我将如何在 jQuery 中实现它?
我目前正在使用 MarkItUp,它仅在文本区域之后显示预览,或在弹出窗口中。
这篇文章提到“BlueCloth”听起来很接近,但尽管我对一般实现感兴趣RoR 版本在现阶段不是很有用(我正在使用 Python/Zope)。
我知道 Markdown 的大部分优点在于它的简单文本格式字符,但该网站相当非技术性,我主要使用 Markdown Python 库,因为它具有“邪恶”的 html 标记功能。
更新:为了回应评论,我想如果键入,我会很高兴显示格式标记,但如果使用工具栏则不会(即我假设 GUI 用户是技术含量较低的用户) 。
或者,其他工具栏有“源”视图,这可能是一个选项。
Are there any Javascript Markdown editing toolbars or libraries that show the live preview within the textarea and hide the formatting marks (**, ___ etc), similar to TinyMCE's implementation?
If not, how would I go about implementing this in jQuery?
I'm currently using MarkItUp, which only shows the preview after the textarea, or in a pop-up.
This post refering to 'BlueCloth' sounds close, but although im interested in general implementation a RoR version isn't very useful at this stage (I'm using Python/Zope).
I'm aware that most of the beauty of Markdown is it's simple text formatting characters, but the site in question is fairly non-technical and I'm largely using the Markdown Python library for it's 'evil' html stipping abilities.
UPDATE: In response to comments, I suppose I'd be happy for the formatting marks to display if typed, but not if the toolbar is used (i.e. I'm assuming GUI users are less technical users).
Or, other toolbars have a 'source' view, which might be an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您需要在文本区域中直接支持 Markdown 而无需额外的 GUI,那么 textarea-markdown 可能会有所帮助
if you need markdown support right in textarea with no additional GUI, then textarea-markdown might be helpful
我找到了这个库,
这是 js 文件。
非常容易使用,您只需在
script
标记中添加库,然后使用marked.parse()
函数示例
运行代码片段并在
中编写一些内容文本区域
I found this library,
and here is the js file.
very easy to use, you just add the library in
script
tag, and usemarked.parse()
functionExample
Run the snippet and write something in
textarea
CKEditor 可能太重了,但它很好。
CKEditor might be too heavy, but it is nice.
实现它的唯一方法是使用
iframe
。The only way you can achieve it is using an
iframe
.