Wraps the content inside backticks.
content
backticks
String inlineCode(String content) => content.contains('`') ? '``$content``' : '`$content`';