PHP Markdown \n 问题
我使用 http://michelf.com/projects/php-markdown/我的 Markdown 库,我的问题是,如果我编辑并删除 \n\n
功能会起作用吗?
因为我拥有的用户很可能不允许运行 JavaScript,因此我不能指望预览是动态生成的,因此他们会使用 \n
而不是 \n\n
来分配错误。
所以问题是:库是否必须使用 < code>\n\n 用于 reg ex 操作?
I'm using http://michelf.com/projects/php-markdown/ for my markdown library and my question is that if i edit and remove the \n\n
functionality would this work
Because the users that i have, are quite probably not allowed to run JavaScript therefore i cant count on the preview to be generated dynamically therefore they will make allot of mistakes using \n
instead of \n\n
So the question is: is it essential for the library to use the \n\n
for the reg ex manipulation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在做了一些研究并查看了 markdown 转换之后,我注意到它可以通过这样的方式完成:
比如说我们有文本:
纯文本标记中的输出将是:
所以要替换
\n< /code> 只能在
标签内完成
After doing some research and looking at the markdown convertion, ive noticed that it can be done in such way:
Say for example we have text:
The output of this in Pure text Markup will be:
So to replace the
\n
must only be done inside the<p>
tags