2019-05-29, 02:16 PM
This short MyCode allow to use ` symbol to display inline code (as it's done here).
Regular Expression
Replacement
css
Note the modifiers at the begining of the regexp: U (makes ungreedy) and -s (to force the single-line)
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)