有没有办法将代码块作为带有doxygen markdown的blockquote?这在引用参考书籍等时非常有用。我尝试了以下内容,但它不会以固定宽度的字体打印代码。
> Put the following line in your program:
>
> printf("Hello, world.");
我希望看起来像(我使用SO的降价作为插图):
在你的程序中添加以下行:
printf("Hello, world.");
答案 0 :(得分:6)
根据markdown的doxygen手册,块引用行中的最后>
后面必须跟一个空格,以便将该行视为块引用。在上面的示例中,没有空格,因此代码不会被视为块引用。如果你把它指定为(注意第2行的额外空格):
> Put the following line in your program:
>
> printf("Hello, world.");
应该正确呈现。