如何设置 WMD 文本区域的值
当我以正常方式设置 WMD 文本区域的值时,它会显示转义的 HTML。
<textarea><b>kur</b></textarea>
这显示
<b>kur</b>
而不是 kur
编辑:最终将 markdown 发送到服务器并使用 PHP Markdown 将其转换为 HTML 并将两者存储在数据库中。
这样做有任何漏洞吗? 我应该检查 HTML 中是否有任何内容吗?
谢谢你!
When I set the value of the WMD textarea the normal way it display escaped HTML.
<textarea><b>kur</b></textarea>
this displays
<b>kur</b>
instead of kur
EDIT: Ended up sending the markdown to the server and using PHP Markdown to convert it to HTML and storing both in the DB.
Are there any vulnerabilities doing it this way?
Should I check the HTML for anything?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一个类似的问题,相信你可以从中得到答案。
你可以吗在
尝试一下。
Here is a similar question, I believe you can get your answer from there.
Can you have an html list inside a <textarea> and it look like a list?
Give it a go.