Question: is there any way to keep every html entities as-is?
Consider the following markdown:
```
stuff Á stuff
```
The `HtmlRenderer` returns:
```
stuff Á stuff
```
If I use `\Á` it returns:
```
stuff Á stuff
```
Is there any config to make it return as below?
```
stuff Á stuff
```
In other words, don't change any HTML Entity at all?
issue