Hi,

Sometimes, we might need to highlight the some piece of code that we type in our response(apart from the actual code snippet). So in that case, wouldn't it be useful if make a bbcode available for inline code?

Here's a screenshot of what am suggesting:



The CSS code I used:
HTML Code:
span.inline-code{
  background: rgb(119, 119, 119);
  padding: 0 5px;
  color: white;
  font-family: 'Courier New';
  border: 1px solid rgb(82, 82, 82);
}
You could setup a BBCODE so that it will be replaced with <span class="inline-code">xxxxx</span>

What do you think?