Problem with [code] shortcode.
Hi MuffinGroup, thank you for an excellent theme, I love it!
I'm experiencing some issues with the code tag in posts, as I'm trying to display some C++ code it also shows HTML tags like <br /> <p>. However everything works fine when using a code tag in the page. How can I fix this?
I'm experiencing some issues with the code tag in posts, as I'm trying to display some C++ code it also shows HTML tags like <br /> <p>. However everything works fine when using a code tag in the page. How can I fix this?
Comments
code items do not parse any code at all if all p or br tags won't be parsed as well.
Thanks!
example:
public void doSomething() {
something;
}
comes out like:
<p>
public void doSomething() { <br>
something;<br>
}<br>
<p>
So why there is code tag at all if it doesn't parse code? I think the problem is that it accidentally takes HTML tags also.. As I said before, it works perfectly when used in page, but when used in separate post it shows HTML tags.
Thanks!
Is there any way how I can present piece of code nicely? I could just write it in plain text, but I was looking to make it look nice..