2

不知何故,我打破了填充段落。我不确定如何调试它。这是行为:我有一个 html 文件,其中包含 100 个字符的长行。我想填补这条线,所以我点击了可信赖的 Mq。没有什么。我检查了填充列变量。正如我预期的那样,它设置为 79。我将缓冲区置于文本模式。还是不行。我尝试基本模式。依然没有。值得注意的是,在 python 模式下,我确实得到了预期的行为。有什么建议吗?

4

1 回答 1

1

我想通了(knida)。在您将文本放入某些标记之前,似乎换行不起作用。例如,在 HTML 模式下,这一行本身不会换行:

This is a long line.  Why won't it wrap?  Who knows.  Maybe today is the day that I will start learning lisp.

...而且这条线也不会换行:

<p>This is a long line.  Why won't it wrap?  Who knows.  Maybe today is the day that I will start learning lisp.

...但是这一行确实换行了:

<p>This is a long line.  And this line does wrap.  I guess it has something to do with the HTML tags.</p>
于 2013-09-27T17:08:31.400 回答