Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Haddock 支持空行,并支持REPL 示例。但我不知道如何在示例中显示空行。
例如,如果 'f' 打印出由空行分隔的两行
ghci> f Line1 Line 2
相应的黑线鳕示例
-- >>> f -- Line1 -- -- Line 2
只生成
>>> f Line1 2号线
>>> f Line1
2号线
换句话说,它在第一个空白行结束示例,并将后面的内容视为常规注释。
有没有办法在 Haddock REPL 示例中显示空白喜欢?
只需使用
<BLANKLINE>
应该工作。