Update to clarify question
I'm trying to use RegEx to find text within single backticks (i.e. inline code in Markdown format). I'm doing this to implement a RegEx-based Markdown parser in Xojo. I've tried a few patterns but they all seem to return all (or part of) the content of text within a code fence (triple backticks).
Given this Markdown
This is `inline code` (obviously).
Here is a code fence:
```
Some code
blah blah
```
Another `example for you`.
another fence:
```json
{"title":"Hello World!"}
```
I want to find the following matches:
`inline code`
`example for you`
Using this RegEx pattern: `(.*?)`
Matches the inline code correctly but also matches the first two backticks of each code fence.
Can someone help me to figure out how to only match the content between single backticks but exclude from the match empty space between two backticks?