I'm using the syntaxhighlighter module to add color to blocks of code. I had to use the following tweak in style.css to make sure syntaxhighlighted code blocks don't get messed up (spacing issues caused by "display: block" instead of "display: inline")

Maybe you can include this in your style.css by default? Maybe it's not that important to others?

/** Fix issue with syntax highlighter **/
.syntaxhighlighter code {
  display: inline;
}

Comments

ravis’s picture

Assigned: Unassigned » ravis
Status: Active » Closed (fixed)

thank you @agileadam for pointing the issue and providing the solution.
Will add this fix in next release.