我試圖用Liquid模板語言將原始字符串轉換爲html。我想要做的是轉換這樣的:這個將文本轉換爲液體模板中的段落
Hello. This
is a text.
Please convert me.
:
<p>Hello. This<br />
is a text.</p>
<p>Please convert me.</p>
我試了一下
{{ mytextvariable | newline_to_br | replace: "<br />\n<br />", "</p><p>" | replace: "<p></p>", "" | prepend: '<p>' | append: '</p>' }}
,但是這給了我(注雙<br />
):
<p>Hello. This<br />
is a text.<br />
<br />
Please convert me.</p>
網站註釋
這將用於Shopify網站。
謝謝!這可能會奏效。我應該更具體。我在Shopify上使用Liquid。不要認爲他們允許我做新的過濾器。我會試着研究,看看他們是否做。 – iDev247 2012-08-13 17:47:18