Line wrapping for code blocks broken
-
Hi there,
In the template for code blocks (
public/templates/code.php
), you set a parameter that is supposed to indicate whether or not line wrapping should be used for a code block. In your code on line 25 you havewrapLine: <?php echo ( $wrapLines ) ? 'true' : 'false'; ?>
. I believe this should be:lineWrapping: <?php echo ( $wrapLines ) ? 'true' : 'false'; ?>
. This prop is documented here.Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Line wrapping for code blocks broken’ is closed to new replies.