在markdown中如何在不将其作为代码的情况下输入逗号。我应该补充一点,这是在降价页面的变量部分。
示例:
array: [
line one without comma,
line with comma here, still the same line,
new line
]
所以,如果我要循环使用,我会得到类似的东西:
line one without comma
line with comma here
still the same line
new line
答案 0 :(得分:1)
在搞乱了一段时间并尝试了很多不同的事情后,我只是尝试将线条包裹在" "它结束了工作。因此,如果您想将逗号作为数组字符串元素的一部分包含,则只需这样做:
array: [
line one without comma,
"line with comma here, still the same line",
new line
]
我的新输出如下:
line one without comma
line with comma here, still same line
new line