将表格与 RedCloth 一起使用会插入大量额外的
每桌之前

发布于 2024-10-17 01:37:20 字数 241 浏览 4 评论 0原文

例如,我正在使用 RedCloth 中的表格,

|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

但我得到了很多
< /code> 然后是表格...

发生了什么事以及如何解决这个问题?

I am using the tables in RedCloth, for example

|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

But I get a lot of <br/> and then the table....

What is going on and how can I fix this?

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

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

发布评论

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

评论(1

一生独一 2024-10-24 01:37:20

当使用其主页上的 redcloth.org“尝试”框进行格式化时,该表不会生成任何
。然而,像这样的东西:

a
|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

产生:

<p>a<br />
|cat|yeah|what|<br />
|beery|true|fly|<br />
|baru|false|mirror|</p>

所以我猜你在表格之前有一个段落,没有空白链接分隔它们。添加空行:

a

|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

产生可能是所需的结果:

<p>a</p>
<table>
    <tr>
        <td>cat</td>
        <td>yeah</td>
        <td>what</td>
    </tr>
    <tr>
        <td>beery</td>
        <td>true</td>
        <td>fly</td>
    </tr>
    <tr>
        <td>baru</td>
        <td>false</td>
        <td>mirror</td>
    </tr>
</table>

That table doesn't produce any <br/>s when formatted using the redcloth.org "try it" box on their homepage. However, something like this:

a
|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

produces:

<p>a<br />
|cat|yeah|what|<br />
|beery|true|fly|<br />
|baru|false|mirror|</p>

So I would guess that you have a paragraph right before the tables without a blank link separating them. Adding an empty line:

a

|cat|yeah|what|
|beery|true|fly|
|baru|false|mirror|

Produces what is probably the desired result:

<p>a</p>
<table>
    <tr>
        <td>cat</td>
        <td>yeah</td>
        <td>what</td>
    </tr>
    <tr>
        <td>beery</td>
        <td>true</td>
        <td>fly</td>
    </tr>
    <tr>
        <td>baru</td>
        <td>false</td>
        <td>mirror</td>
    </tr>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文