aboutsummaryrefslogtreecommitdiff
path: root/lpeg.html
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2026-04-03 12:57:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2026-04-03 12:57:39 -0300
commit089112f883540c4434e9e8e96de50a75f2b15f7e (patch)
tree9b53e70dffe3b524a42f103914002d0474f3c14c /lpeg.html
parent1cc484a05cf9c7da8c859f3f52ea5a85009c4509 (diff)
downloadlpeg-master.tar.gz
lpeg-master.tar.bz2
lpeg-master.zip
Added 'https' to URLs in the doc filesHEADmaster
Diffstat (limited to 'lpeg.html')
-rw-r--r--lpeg.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/lpeg.html b/lpeg.html
index bd54294..8120781 100644
--- a/lpeg.html
+++ b/lpeg.html
@@ -4,7 +4,7 @@
4<head> 4<head>
5 <title>LPeg - Parsing Expression Grammars For Lua</title> 5 <title>LPeg - Parsing Expression Grammars For Lua</title>
6 <link rel="stylesheet" 6 <link rel="stylesheet"
7 href="//www.inf.puc-rio.br/~roberto/lpeg/doc.css" 7 href="https://www.inf.puc-rio.br/~roberto/lpeg/doc.css"
8 type="text/css"/> 8 type="text/css"/>
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
10</head> 10</head>
@@ -15,7 +15,7 @@
15 15
16<div id="product"> 16<div id="product">
17 <div id="product_logo"> 17 <div id="product_logo">
18 <a href="//www.inf.puc-rio.br/~roberto/lpeg/"> 18 <a href="https://www.inf.puc-rio.br/~roberto/lpeg/">
19 <img alt="LPeg logo" src="lpeg-128.gif"/></a> 19 <img alt="LPeg logo" src="lpeg-128.gif"/></a>
20 20
21 </div> 21 </div>
@@ -55,7 +55,7 @@
55<p> 55<p>
56<em>LPeg</em> is a pattern-matching library for Lua, 56<em>LPeg</em> is a pattern-matching library for Lua,
57based on 57based on
58<a href="//bford.info/packrat/"> 58<a href="https://bford.info/packrat/">
59Parsing Expression Grammars</a> (PEGs). 59Parsing Expression Grammars</a> (PEGs).
60This text is a reference manual for the library. 60This text is a reference manual for the library.
61For those starting with LPeg, 61For those starting with LPeg,
@@ -64,10 +64,10 @@ Mastering LPeg</a> presents a good tutorial.
64For a more formal treatment of LPeg, 64For a more formal treatment of LPeg,
65as well as some discussion about its implementation, 65as well as some discussion about its implementation,
66see 66see
67<a href="//www.inf.puc-rio.br/~roberto/docs/peg.pdf"> 67<a href="https://www.inf.puc-rio.br/~roberto/docs/peg.pdf">
68A Text Pattern-Matching Tool based on Parsing Expression Grammars</a>. 68A Text Pattern-Matching Tool based on Parsing Expression Grammars</a>.
69You may also be interested in my 69You may also be interested in my
70<a href="//vimeo.com/1485123">talk about LPeg</a> 70<a href="https://vimeo.com/1485123">talk about LPeg</a>
71given at the III Lua Workshop. 71given at the III Lua Workshop.
72</p> 72</p>
73 73
@@ -1387,11 +1387,11 @@ and the new term for each repetition.
1387<h2><a name="download"></a>Download</h2> 1387<h2><a name="download"></a>Download</h2>
1388 1388
1389<p>LPeg 1389<p>LPeg
1390<a href="//www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.1.0.tar.gz">source code</a>.</p> 1390<a href="https://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.1.0.tar.gz">source code</a>.</p>
1391 1391
1392<p> 1392<p>
1393Probably, the easiest way to install LPeg is with 1393Probably, the easiest way to install LPeg is with
1394<a href="//luarocks.org/">LuaRocks</a>. 1394<a href="https://luarocks.org/">LuaRocks</a>.
1395If you have LuaRocks installed, 1395If you have LuaRocks installed,
1396the following command is all you need to install LPeg: 1396the following command is all you need to install LPeg:
1397<pre>$ luarocks install lpeg</pre> 1397<pre>$ luarocks install lpeg</pre>