5

我使用 Hakyll 生成一些文档,我注意到它有一种奇怪的方式来关闭它生成的代码中的 HTML 标记。

有一个页面,他们说您必须像他们一样生成标记,否则您的页面布局在某些情况下会被破坏,但我现在找不到。

我创建了一个小测试页面(下面的代码),其中有一个带有“正常”HTML 标记的红色层和一个带有类似于 hakyll 生成的标记的黄色层。

我看不出两个 div 在 Firefox 中的任何区别。

谁能解释他们说的是否属实?

<html>
<body>
<!-- NORMAL STYLE -->
<div style="background: red">
<p>Make available the code from the library you added to your application. Again, the way to do this varies between languages (from adding import statements in python to adding a jar to the classpath for java)</p>
<p>Create an instance of the client and, in your code, make calls to it through this instance's methods.</p>
</div>
<!-- HAKYLL STYLE -->
<div style="background: yellow"
><p
>Make available the code from the library you added to your application. Again, the way to do this varies between languages (from adding import statements in python to adding a jar to the classpath for java)</p
><p
>Create an instance of the client and, in your code, make calls to it through this instance's methods.</p
></div
>
</body>
<html>
4

3 回答 3

5

生成 HTML 代码的实际上是pandoc 。Pandoc问题跟踪器中有一个很好的解释:

http://code.google.com/p/pandoc/issues/detail?id=134

原因是因为 HTML 标记之间的任何空格(包括换行符和制表符)都会导致浏览器在这些元素之间插入空格字符。在机器逻辑上将这些空格排除在外要容易得多,因为这样您就不需要考虑 HTML 文本格式可能会干扰浏览器添加额外空格的可能方式。

于 2010-10-08T18:10:23.707 回答
0

我整理了一下它,它修复了不寻常的换行符。

于 2012-01-02T23:10:55.747 回答
0

有时去除两个标签之间的空白会产生影响,尤其是在处理内联元素时。

于 2010-10-08T17:59:57.087 回答