PHP Markdown \n 问题

发布于 2024-08-13 20:22:28 字数 348 浏览 6 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

最冷一天 2024-08-20 20:22:28

在做了一些研究并查看了 markdown 转换之后,我注意到它可以通过这样的方式完成:

比如说我们有文本:

asdf
asdf
asdf

asdf
asdf
asdf

纯文本标记中的输出将是:

<p>asdf
asdf
asdf</p>

<p>
asdf
asdf
asdf</p>

所以要替换 \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:

asdf
asdf
asdf

asdf
asdf
asdf

The output of this in Pure text Markup will be:

<p>asdf
asdf
asdf</p>

<p>
asdf
asdf
asdf</p>

So to replace the \n must only be done inside the <p> tags

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