I use <mark>...</mark> to highlight text in a Markdown document, such as the Google Python Style Guide. I am having difficulty higlighting code. For example, I want to highlight how to annotate with types:
```python
<mark>def func(a: int) -> List[int]:</mark>
```
but this pandoc command:
pandoc -s -t html5 -o "Google Python style guide.html" "Google Python style guide.md"
shows <mark> and </mark> as code and does not render an HTML highlight.
One solution is to use a pre tag, such as:
<pre><mark>def func(a: int) -> List[int]:</mark></pre>
which does render an HTML highlight.
Can Pandoc render the HTML higlights without having to convert all ```python blocks to pre tags?