我有RDoc
的代码和评论,如下所示:
# first line comment
# second line comment
def foo
end
当我按rdoc foo.rb
输出文档时,HTML文件中会忽略换行符。
要添加换行符,我可以这样写:
# first line comment<br>
# second line comment
或
# first line comment
#
# second line comment
但我觉得两种方式都不够简单。
还有其他简单的方法可以在RDoc
中添加换行符吗?
答案 0 :(得分:1)
只需在行尾添加两个或多个空格即可。
#first comment
#second comment
def foo
end
第一行在comment
之后有两个空格。
答案 1 :(得分:0)
在常用文字中添加有关添加换行符的答案: 使用全白空间进行标题
"=== " # <= the quoted part
至少这适用于github。