多行换行符似乎对我不起作用:
就像是:
intro: |
We are happy that you are interested in
and
more
和 + more 需要在换行符上,但它失败了。
intro: |
| We are happy that you are interested in
| and
| more
或者
intro: |
We are happy that you are interested in \n
and
more <2 spaces >
another one
都失败了。
如何在 yaml 文本块中正确使用多行?
我在rails应用程序的HAML视图中使用它,比如
= t("mailer.beta_welcome.intro")
但是没有以这种方式打印换行符,我是否需要用 raw 或其他东西以不同的方式输出它?