我有一個簡單的搜索表單,我希望使用Jade實現。Jade - 控制HTML輸出中的換行符
form
input(
type="text"
size="16"
placeholder="Enter your keywords")
input(
type="button"
value="Search")
輸出呈現爲:
<form>
<input type="text" size="16" placeholder="Enter your keywords">
<input type="button" value="Search">
</form>
這是完美的,只是斷行引起我的按鈕和搜索按鈕之間的空間。在文本框和按鈕之間不需要空格。我需要的代碼來呈現這樣的:
<form>
<input type="text" size="16" placeholder="Enter your keywords"><input type="button" value="Search">
</form>
但是我使用這個項目創建代碼,將需要在其HTML形式來閱讀,可以從我的項目不是簡單的刪除空白作爲一個整體。
有沒有一種方法可以按照指示輸出我的表單,同時在文檔的其餘部分保留白色間距和換行符?
這似乎適用於某些標籤,例如'blockquote'和'a',就像你在這裏的例子那樣,但是Jade v1.11.0會產生錯誤,並且在使用'input'標籤嘗試時會產生錯誤。 FWIW,上面的fusesource.org鏈接不起作用。該文檔也可在[這裏](http://scalate.github.io/scalate/documentation/jade-syntax.html#Whitespace_Removal:__code__gt___code__and__code__lt___code_)。 – matty 2015-07-13 00:06:58