Hi!
I’ve got a post that has a code block, which includes the HTML-tag <!--more-->
.
When Hugo renders the page, the entire code block is blank, unless I ‘break’ that tag.
The part of the code block that breaks on rendering is this:
$($_item.encoded.'#cdata-section' -replace "<[/]?code>","``````" -replace "<!--more-->","" -replace "<[/]?strong>","**" -replace "<[/]?em>","_" -replace '>','>' -replace '<','<')
How can I make sure that the code block is rendered properly?