Using a single tag like
<codequote code goes here> will not work, because the trailing delimiter is a single-character. You would have to escape whatever character is used when it appears in the code, which defeats the whole purpose of the code tag.
<code> if ($x > 7) { print "yay!\n"; }</code>
<c if ($x > 7) { print "yay!\n"; }>