MyBB Community Forums

Full Version: [MyCode] Inline code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This short MyCode allow to use ` symbol to display inline code (as it's done here).

Regular Expression
(?U-s)`(.+)`

Replacement
<code class="inline-code">$1</code>

css
.inline-code {
	background: #00bcd4;
	padding: 1px;
	border: solid 1px #EEE;
	border-radius: 3px;
	word-wrap: break-word;
	font-family: Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;
	font-size: 12px;
}

Note the modifiers at the begining of the regexp: U (makes ungreedy) and -s (to force the single-line)