Gets symlink attributes.
- Implicit link to luafilesystem.symlinkattributes
+ Implicit link to luafilesystem.symlinkattributes
@@ -371,7 +371,7 @@
Changes the working directory.
On Windows, if a drive is specified, it also changes the current drive. If
only specifying the drive, it will only switch drive, but not modify the path.
- Implicit link to luafilesystem.chdir
+ Implicit link to luafilesystem.chdir
diff --git a/docs/manual/01-introduction.md.html b/docs/manual/01-introduction.md.html
index f8759281..480f4840 100644
--- a/docs/manual/01-introduction.md.html
+++ b/docs/manual/01-introduction.md.html
@@ -168,7 +168,7 @@ Purpose
perverse, this matches the intended use better.
The only important external dependence of Penlight is
-LuaFileSystem
+LuaFileSystem
(lfs), and if you want dir.copyfile to work cleanly on Windows, you will need
either alien or be using
LuaJIT as well. (The fallback is to call the equivalent
diff --git a/docs/manual/06-data.md.html b/docs/manual/06-data.md.html
index 62c775f4..88b2a81b 100644
--- a/docs/manual/06-data.md.html
+++ b/docs/manual/06-data.md.html
@@ -1264,7 +1264,7 @@
Parsing and Working with Configuration Files
Generating XML with 'xmlification'
This feature is inspired by the htmlify
function used by
-Orbit to simplify HTML generation,
+Orbit to simplify HTML generation,
except that no function environment magic is used; the tags
function returns a
set of constructors for elements of the given tag names.
diff --git a/docs_topics/01-introduction.md b/docs_topics/01-introduction.md
index 102caa9f..8aba2c84 100644
--- a/docs_topics/01-introduction.md
+++ b/docs_topics/01-introduction.md
@@ -41,7 +41,7 @@ the order, so that the function is passed the value and then the key. Although
perverse, this matches the intended use better.
The only important external dependence of Penlight is
-[LuaFileSystem](http://keplerproject.github.com/luafilesystem/manual.html)
+[LuaFileSystem](http://lunarmodules.github.com/luafilesystem/manual.html)
(`lfs`), and if you want `dir.copyfile` to work cleanly on Windows, you will need
either [alien](http://alien.luaforge.net/) or be using
[LuaJIT](http://luajit.org) as well. (The fallback is to call the equivalent
diff --git a/docs_topics/06-data.md b/docs_topics/06-data.md
index 3ca8a3a5..b95d6dbe 100644
--- a/docs_topics/06-data.md
+++ b/docs_topics/06-data.md
@@ -960,7 +960,7 @@ Getting the names of the providers per-country is straightforward:
#### Generating XML with 'xmlification'
This feature is inspired by the `htmlify` function used by
-[Orbit](http://keplerproject.github.com/orbit/) to simplify HTML generation,
+[Orbit](http://keplerproject.github.io/orbit/) to simplify HTML generation,
except that no function environment magic is used; the `tags` function returns a
set of _constructors_ for elements of the given tag names.
diff --git a/lua/pl/path.lua b/lua/pl/path.lua
index 600bf057..89df095f 100644
--- a/lua/pl/path.lua
+++ b/lua/pl/path.lua
@@ -45,12 +45,12 @@ local function err_func(name, param, err, code)
end
--- Lua iterator over the entries of a given directory.
--- Implicit link to [`luafilesystem.dir`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#dir)
-- @function dir
path.dir = lfs.dir
--- Creates a directory.
--- Implicit link to [`luafilesystem.mkdir`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#mkdir)
-- @function mkdir
path.mkdir = function(d)
local ok, err, code = lfs.mkdir(d)
@@ -61,7 +61,7 @@ path.mkdir = function(d)
end
--- Removes a directory.
--- Implicit link to [`luafilesystem.rmdir`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#rmdir)
-- @function rmdir
path.rmdir = function(d)
local ok, err, code = lfs.rmdir(d)
@@ -72,7 +72,7 @@ path.rmdir = function(d)
end
--- Gets attributes.
--- Implicit link to [`luafilesystem.attributes`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#attributes)
-- @function attrib
path.attrib = function(d, r)
local ok, err, code = attrib(d, r)
@@ -83,7 +83,7 @@ path.attrib = function(d, r)
end
--- Get the working directory.
--- Implicit link to [`luafilesystem.currentdir`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#currentdir)
-- @function currentdir
path.currentdir = function()
local ok, err, code = currentdir()
@@ -94,7 +94,7 @@ path.currentdir = function()
end
--- Gets symlink attributes.
--- Implicit link to [`luafilesystem.symlinkattributes`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#symlinkattributes)
-- @function link_attrib
path.link_attrib = function(d, r)
local ok, err, code = link_attrib(d, r)
@@ -107,7 +107,7 @@ end
--- Changes the working directory.
-- On Windows, if a drive is specified, it also changes the current drive. If
-- only specifying the drive, it will only switch drive, but not modify the path.
--- Implicit link to [`luafilesystem.chdir`](https://keplerproject.github.io/luafilesystem/manual.html#reference)
+-- Implicit link to [`luafilesystem.dir`](https://lunarmodules.github.io/luafilesystem/manual.html#chdir)
-- @function chdir
path.chdir = function(d)
local ok, err, code = lfs.chdir(d)