Skip to content

Commit 8921631

Browse files
committed
Updated links.
1 parent 2549221 commit 8921631

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A separate [command line program](preprocess-cl.lua) is available too.
2121
- [Usage](#usage)
2222
- [Library](#preprocess-files-using-the-library)
2323
- [Command Line](#preprocess-files-from-the-command-line)
24-
- [Documentation](http://luapreprocess.refreezed.com/docs/)
24+
- [Documentation](http://refreezed.com/luapreprocess/docs/)
2525
- [Help](#help)
2626

2727

@@ -138,7 +138,7 @@ end
138138
print("Lines of code processed: "..info.lineCount)
139139
```
140140

141-
See the [website](http://luapreprocess.refreezed.com/docs/)
141+
See the [website](http://refreezed.com/luapreprocess/docs/)
142142
or the top of [preprocess.lua](preprocess.lua) for documentation.
143143

144144

@@ -162,15 +162,15 @@ lua preprocess-cl.lua --outputpaths [options] inputpath1 outputpath1 [inputpath2
162162

163163
If a filepath is, for example, `C:/MyApp/app.lua2p` then LuaPreprocess will write the processed file to `C:/MyApp/app.lua`.
164164

165-
See the [website](http://luapreprocess.refreezed.com/docs/command-line/),
165+
See the [website](http://refreezed.com/luapreprocess/docs/command-line/),
166166
or the top of [preprocess-cl.lua](preprocess-cl.lua)
167167
and [preprocess.lua](preprocess.lua), for the options and more documentation.
168168

169169

170170

171171
## Documentation
172172

173-
- [Website](http://luapreprocess.refreezed.com/docs/)
173+
- [Website](http://refreezed.com/luapreprocess/docs/)
174174
- Library: See the top of [preprocess.lua](preprocess.lua)
175175
- Command line: See the top of [preprocess-cl.lua](preprocess-cl.lua)
176176

@@ -179,10 +179,10 @@ and [preprocess.lua](preprocess.lua), for the options and more documentation.
179179
## Help
180180

181181
Got a question?
182-
If the [documentation](http://luapreprocess.refreezed.com/docs/) doesn't have the answer,
182+
If the [documentation](http://refreezed.com/luapreprocess/docs/) doesn't have the answer,
183183
look if someone has asked the question in the [issue tracker](https://github.com/ReFreezed/LuaPreprocess/issues?q=is%3Aissue),
184184
or [create a new issue](https://github.com/ReFreezed/LuaPreprocess/issues/new).
185185

186-
Also check out the online [syntax highlighter](http://luapreprocess.refreezed.com/highlight/) tool to help visualize errors in code.
186+
Also check out the online [syntax highlighter](http://refreezed.com/luapreprocess/highlight/) tool to help visualize errors in code.
187187

188188

preprocess-cl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ exec lua "$0" "$@"
1010
--= Requires preprocess.lua to be in the same folder!
1111
--=
1212
--= License: MIT (see the bottom of this file)
13-
--= Website: http://luapreprocess.refreezed.com/
13+
--= Website: http://refreezed.com/luapreprocess/
1414
--=
1515
--= Tested with Lua 5.1, 5.2, 5.3 and 5.4.
1616
--=

preprocess.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
--= by Marcus 'ReFreezed' Thunström
55
--=
66
--= License: MIT (see the bottom of this file)
7-
--= Website: http://luapreprocess.refreezed.com/
8-
--= Documentation: http://luapreprocess.refreezed.com/docs/
7+
--= Website: http://refreezed.com/luapreprocess/
8+
--= Documentation: http://refreezed.com/luapreprocess/docs/
99
--=
1010
--= Tested with Lua 5.1, 5.2, 5.3, 5.4 and LuaJIT.
1111
--=
@@ -68,7 +68,7 @@
6868
local font = !!(isDeveloper and "loadDevFont()" or "loadUserFont()")
6969
7070
-- See the full documentation for additional features (like macros):
71-
-- http://luapreprocess.refreezed.com/docs/extra-functionality/
71+
-- http://refreezed.com/luapreprocess/docs/extra-functionality/
7272
7373
----------------------------------------------------------------
7474
@@ -125,7 +125,7 @@
125125
!func()
126126
127127
-- For the full documentation, see:
128-
-- http://luapreprocess.refreezed.com/docs/
128+
-- http://refreezed.com/luapreprocess/docs/
129129
130130
--============================================================]]
131131

0 commit comments

Comments
 (0)