Open albert-github opened 4 years ago
In the main README.md file we see the usage of the tag Location tag. We see (at least twice):
Location
<Location /> SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler </Location>
The <Location /> is a bit strange to me, I think this should be <Location>
<Location />
<Location>
In the file there is also the line:
The <Location> section routes all requests to the Mason handler
but this renders like:
The section routes all requests to the Mason handler
due to the fact that <Location> is seen as an, unknown, HTML tag. I think a good solution might be:
The `<Location>` section routes all requests to the Mason handler
Added https://github.com/houseabsolute/HTML-Mason/pull/36 to fix this.
In the main README.md file we see the usage of the tag
Location
tag. We see (at least twice):The
<Location />
is a bit strange to me, I think this should be<Location>
In the file there is also the line:
but this renders like:
due to the fact that
<Location>
is seen as an, unknown, HTML tag. I think a good solution might be: