. tests/functions.sh title "inline code" rc=0 MARKDOWN_FLAGS= try 'format for code block html' \ ' this is code' \ '
this is
code
'
try 'mismatched backticks' '```tick``' '`tick
``tick```
' try 'unclosed single backtick' '`hi there' '`hi there
' try 'unclosed double backtick' '``hi there' '``hi there
' try 'triple backticks' '```hi there```' 'hi there
hi there
hi there
a```b
a\
>
`
`` `
`` `
printf "%s: \n", $1;
'
try 'backslashes in code(2)' '`printf "%s: \n", $1;`' \
'printf "%s: \n", $1;