Markdown 雨果诗歌风格

Markdown 雨果诗歌风格,markdown,hugo,Markdown,Hugo,我想和雨果一起展示诗歌 内容文件: So some text with some rhyme and another strophe enter code here <pre>So some text with some rhyme and another strophe enter code here</pre> So some text with some rhyme and another strophe enter cod

我想和雨果一起展示诗歌

内容文件:

So some text
with some rhyme

and another strophe
enter code here
<pre>So some text
with some rhyme

and another strophe
enter code here</pre>
    So some text
    with some rhyme

    and another strophe
    enter code here
我想用这些换行符来显示这一点

仅仅使用.Content会发生什么?同一strophe中的行不换行

在那里换行会发生什么?{{replace.Content\n{safeHTML}?两个冲程之间有四条新线

现在,我很困惑。我想知道要找回原来的新词有那么难


事实上,我正在与降价处理器抗争。难道我不能说:不,不要标记这个吗?

鉴于这个答案也使用标记,这里有一种方法可以做到:

<p>So some text<br>
with some rhyme<br>
<br>
and another strophe<br>
enter code here</p>
您可以将通用HTML放入标记文档中,并按原样呈现:

所以一些文字 押韵 还有一次中风
在此处输入代码

鉴于此答案也使用降价,您可以使用以下一种方法:

<p>So some text<br>
with some rhyme<br>
<br>
and another strophe<br>
enter code here</p>
您可以将通用HTML放入标记文档中,并按原样呈现:

所以一些文字 押韵 还有一次中风
在此处输入代码

有多种解决方案。您可以使用本机标记换行符、原始HTML或代码块

减价换行符 最简单的解决方案是使用本机标记在行尾的两个空格生成换行符

在以下示例中,已将空格替换为点,以便于演示:

So·some·text··
with·some·rhyme

and·another·strophe··
enter·code·here
它生成的以下HTML与另一个答案建议的原始HTML几乎相同

<p>So some text<br>
with some rhyme</p>
<p>and another strophe<br>
enter code here</p>
其呈现为:

您已经知道,它呈现为:


有多种解决方案。您可以使用本机标记换行符、原始HTML或代码块

减价换行符 最简单的解决方案是使用本机标记在行尾的两个空格生成换行符

在以下示例中,已将空格替换为点,以便于演示:

So·some·text··
with·some·rhyme

and·another·strophe··
enter·code·here
它生成的以下HTML与另一个答案建议的原始HTML几乎相同

<p>So some text<br>
with some rhyme</p>
<p>and another strophe<br>
enter code here</p>
其呈现为:

您已经知道,它呈现为:


从Hugo 0.60.0开始,CommonMark兼容的Goldmark库用于呈现标记。如果要渲染,可以使用两个或多个空格,或在行尾使用反斜杠

输入:

输出:


从Hugo 0.60.0开始,CommonMark兼容的Goldmark库用于呈现标记。如果要渲染,可以使用两个或多个空格,或在行尾使用反斜杠

输入:

输出:


我宁愿不这样做——原因很明显。添加内容时出错会导致问题。如果我能自动完成某件事,我不想按常规去做。我宁愿不这样做——原因很明显。添加内容时出错会导致问题。如果我能自动完成某件事,我就不想按常规去做。
So some text\
with some rhyme

and another strophe\
enter code here
<p>So some text<br>with some rhyme</p>
<p>and another strophe<br>enter code here</p>