houseabsolute / HTML-Mason

High-performance, dynamic web site authoring system
https://metacpan.org/release/HTML-Mason/
Other
9 stars 18 forks source link

Strange rendering of main README.md #29

Open albert-github opened 4 years ago

albert-github commented 4 years ago

In the main README.md file we see the usage of the tag Location tag. We see (at least twice):

<Location />
    SetHandler perl-script
    PerlHandler HTML::Mason::ApacheHandler
</Location>

The <Location /> is a bit strange to me, I think this should be <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
arunbear commented 4 weeks ago

Added https://github.com/houseabsolute/HTML-Mason/pull/36 to fix this.