标记编辑器将输出显示为 html,并剥离标签
我正在使用 bbcode 格式的 rte。
http://markitup.jaysalvat.com/home/
一旦文本区域提交,我就会保存它具有 bbcode 格式。
但我需要两件事。
- 我现在如何将其显示为 html?
- 我如何在没有 bbcode 标签的情况下显示(即仅文本)
im using this rte in bbcode format.
http://markitup.jaysalvat.com/home/
once the textarea is submitted i'm saving it with bbcode format.
but i need 2 things.
- how do i now display it as html?
- how can i display without the bbcode tags (i.e just text)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 JavaScript 中转换,
在 C# 中转换、
在 PHP 中转换...
转换BBCode的方法有很多种。如果您想删除 BBCode,则必须使用正则表达式删除所有 [ ] 块。像这样的事情会做:(
来源)
Convert in javascript,
Convert in c#,
Convert in PHP...
There are a lot of ways to convert BBCode. If you want to get rid of the BBCode, you'll have to use a regular expression removing all the [ ] blocks. Something like this'll do:
(source)