Package: ronn Version: 0.9.1-1 I had to downgrade ronn as the new version fails to render the code blocks.
Here attached you'll find: * the file code_blocks.7.ronn (a file provided with ronn-ng) * the nice troff output produced by nroff 0.8.0: code_blocks.7 * the wrong troff produced by nroff 0.9.1: code_blocks.7.wrong (in the same way I cannot use the new version to update the man pages of my projects like https://github.com/rd235/libstropt/tree/master/man) Let me know if you can reproduce the bug. Thank you in advance for your efforts to fix the bug. renzo
Example Code Blocks =================== ## Basic code block ``` Hello, world! ``` ## Language-identified code blocks ```html <html> <head> <title>Hello, world!</title> </head> <body> Hello, world! </body> </html> ``` ## Interspersed code blocks and text Some text. ``` Some code. ``` Here's some <pre> text. <pre> This is pre text. </pre> Some more text. ``` Some more code. ```
.\" generated with Ronn-NG/v0.8.0 .\" http://github.com/apjanke/ronn-ng/tree/0.8.0 .TH "CODE_BLOCKS" "7" "July 2020" "" "" .SH "Basic code block" .nf Hello, world! .fi .SH "Language\-identified code blocks" .nf <html> <head> <title>Hello, world!</title> </head> <body> Hello, world! </body> </html> .fi .SH "Interspersed code blocks and text" Some text\. .IP "" 4 .nf Some code\. .fi .IP "" 0 .P Here\'s some <pre> text\. .IP "" 4 .nf This is pre text\. .fi .IP "" 0 .P Some more text\. .IP "" 4 .nf Some more code\. .fi .IP "" 0
.\" generated with Ronn-NG/v0.9.1 .\" http://github.com/apjanke/ronn-ng/tree/0.9.1 .TH "CODE_BLOCKS" "7" "July 2020" "" .SH "Basic code block" \fBHello, world!\fR .SH "Language\-identified code blocks" ```htmlHello, world! .P ``` .SH "Interspersed code blocks and text" Some text\. .P \fBSome code\.\fR .P Here\'s some <pre> text\. .IP "" 4 .nf This is pre text\. .fi .IP "" 0 .P Some more text\. .P \fBSome more code\.\fR