Skip to content

Commit

Permalink
Tweak code block indentation (man).
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpfs committed Apr 19, 2016
1 parent a31c9ae commit 11832fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/man.js
Expand Up @@ -293,7 +293,7 @@ function code_block(node, entering) {
if(entering) {
var indent = 10;
if(this.depth) {
indent += 2 * (this.depth-1);
indent += 2 * this.depth;
}
this.out('\n.PP\n.in ' + indent + '\n');
node.literal = node.literal.replace(/\n$/, '');
Expand Down

0 comments on commit 11832fe

Please sign in to comment.