如何从 WMD 编辑器获取简单的纯文本?

发布于 2024-09-05 01:22:08 字数 337 浏览 13 评论 0原文

我可以从 WMD 编辑器获取 Markdown 和 HTML 格式的文本。 根据我的要求,我还需要从 WMD 编辑器获取纯文本。我想用一个简单的例子来解释它。

在 Stack Overflow 中,我们在 WMD 编辑器中输入描述时将看到 Markdown 文本。在预览中我们可以看到 格式的文本。在问题页面中,如果没有 Markdown 和格式化文本,我们就可以看到两行问题描述。

我需要实现同样的功能。我需要做什么?

I'm able to get Markdown and HTML formated text from the WMD editor. In my requirement I also need to get plain text from the WMD Editor. I would like to explain it with a simple example.

In Stack Overflow we will see Markdown text while typing a description in the WMD editor. In the preview we are able to see the <b>formatted text. In the Question Page, without this Markdown and formatted text we are able to see the question description in two lines.

I need to achieve same kind of functionality. What do I need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分開簡單 2024-09-12 01:22:08

WMD(或至少 wmd-new,因为 WMD 似乎已被放弃)使用 jQuery,因此获得纯文本输出的最简单方法是:

$('#wmd-preview').text()

假设您使用标准 div id预览。这甚至可以像 Stack Overflow 中写的那样工作。

WMD (or at least wmd-new, since WMD seems abandoned) uses jQuery, so the easiest way to get the plain text output is:

$('#wmd-preview').text()

assuming you're using the standard div id for the preview. This even works as written in Stack Overflow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文