I work on a dev tool that uses templates for generating files such as readmes and licenses.
Everything works fine apart from one instance of a <
character gets turned into a <
- the corresponding >
character works fine and appears as expected in the output.
Template file: https://raw.githubusercontent.com/Southclaws/pawn-package-template/master/README.md the the lines of interest are:
```pawn
#include <{{.Repo}}>
```
Where Repo
gets inserted with the expected result being
#include <sometext>
But what actually comes out is:
#include <sometext>
I can't figure out why this is happening from the docs. It seems like a bug to be honest because if it's looking for things to escape, surely it would turn >
into >
as well, right?