Skip to content

Commit 70ca440

Browse files
askebladandreasabel
authored andcommitted
validate
1 parent 961d991 commit 70ca440

File tree

1 file changed

+17
-20
lines changed

1 file changed

+17
-20
lines changed

www/index.html

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="ISO-8859-1"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!DOCTYPE html
33
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
44
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -7,9 +7,9 @@
77
<head>
88
<title>Alex</title>
99
</head>
10-
10+
<body>
1111
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
12-
collapse; font-family: Arial" bordercolor="#111111" width="800" align="center">
12+
collapse; font-family: Arial" width="800" align="center">
1313
<tr>
1414
<td width="100%" style="font-size: 24pt; padding-bottom: 0px" bgcolor="#77aaFF">
1515
Alex: A lexical analyser generator for Haskell</td>
@@ -33,7 +33,7 @@
3333
<p>Alex is a tool for generating lexical analysers
3434
in Haskell, given a description of the tokens to be recognised
3535
in the form of regular expressions. It is similar to the tool
36-
<quote>lex</quote> or <quote>flex</quote> for C/C++.</p>
36+
<q>lex</q> or <q>flex</q> for C/C++.</p>
3737
</td>
3838
</tr>
3939
<tr style="border-bottom: 1px dotted">
@@ -42,7 +42,7 @@
4242
</tr>
4343
<tr>
4444
<td width="100%" style="padding-left: 10px; padding-top: 5px">
45-
<p>Documentation is hosted on <a href="https://haskell-alex.readthedocs.io">Read the Docs</a>.
45+
<p>Documentation is hosted on <a href="https://haskell-alex.readthedocs.io">Read the Docs</a>.</p>
4646
<ul>
4747
<li><a href="https://haskell-alex.readthedocs.io">Online (HTML)</a></li>
4848
<li><a href="https://haskell-alex.readthedocs.io/_/downloads/en/latest/pdf/">PDF</a></li>
@@ -58,31 +58,29 @@
5858
<td width="100%" style="padding-left: 10px; padding-top: 5px">
5959

6060
<p>From <a href="https://hackage.haskell.org/package/alex">Hackage</a> via
61-
<a href="https://www.haskell.org/cabal/"><code>cabal-install</code></a>:
61+
<a href="https://www.haskell.org/cabal/"><code>cabal-install</code></a>:</p>
6262
<pre>
6363
cabal install alex
6464
</pre>
65-
</p>
6665

6766
<p>From <a href="https://www.stackage.org/package/alex">Stackage</a> via
68-
<a href="https://haskellstack.org"><code>stack</code></a>, e.g.:
67+
<a href="https://haskellstack.org"><code>stack</code></a>, e.g.:</p>
6968
<pre>
7069
stack install --resolver nightly alex
7170
</pre>
72-
</p>
7371

7472
<p>Alex might also be pre-packaged for your OS (unconfirmed as of 2022-04-06):</p>
7573

76-
<UL>
77-
<LI>Ubuntu users: packages should be available from the universe repository.</LI>
78-
<LI>Debian GNU/Linux users: packages are available <a href="http://packages.debian.org/alex">here</a>.</LI>
79-
<LI>RPMs for other versions of Linux can be built directly from the source, using <tt>rpmbuild -ta</tt>.</LI>
80-
<LI>FreeBSD/x86 users: Alex is in the ports tree, so either <tt>pkg_add -r
74+
<ul>
75+
<li>Ubuntu users: packages should be available from the universe repository.</li>
76+
<li>Debian GNU/Linux users: packages are available <a href="http://packages.debian.org/alex">here</a>.</li>
77+
<li>RPMs for other versions of Linux can be built directly from the source, using <tt>rpmbuild -ta</tt>.</li>
78+
<li>FreeBSD/x86 users: Alex is in the ports tree, so either <tt>pkg_add -r
8179
hs-alex</tt>, or install it from the ports tree in
82-
<tt>/usr/ports/devel/hs-alex</tt>.</LI>
80+
<tt>/usr/ports/devel/hs-alex</tt>.</li>
8381
<li>OpenBSD users: Alex is in the -current ports tree, you can
8482
install it from <tt>/usr/ports/devel/alex</tt>.</li>
85-
</UL>
83+
</ul>
8684

8785
</td>
8886
</tr>
@@ -96,16 +94,15 @@
9694
href="http://www.haskell.org/alex/doc/html/license.html">BSD-style
9795
license</a>.
9896
The current sources are on <a href="https://github.com/haskell/alex">github</a>,
99-
get the latest version with:
100-
<pre>&nbsp;&nbsp;&nbsp;git clone https://github.com/haskell/alex</pre>
101-
</p>
97+
get the latest version with:</p>
98+
<pre>&nbsp;&nbsp;&nbsp;git clone https://github.com/haskell/alex.git</pre>
10299

103100
<p>Contribute by opening <a href="https://github.com/haskell/alex/issues">issues</a>
104101
which can be followed up by <a href="https://github.com/haskell/alex/pulls">pull requests</a>.</p>
105102
</td>
106103
</tr>
107104
</table>
108-
<hr>
105+
<hr></hr>
109106
<p style="font-family: Arial">Source of this page:
110107
<a href="https://github.com/haskell/alex/blob/master/www/index.html"><code>index.html</code></a>,
111108
deployed 2022-04-06.</p>

0 commit comments

Comments
 (0)