diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/.buffer.luadoc | 5 | ||||
-rw-r--r-- | core/.iconv.luadoc | 2 | ||||
-rw-r--r-- | core/.view.luadoc | 7 | ||||
-rw-r--r-- | core/file_io.lua | 2 | ||||
-rw-r--r-- | core/init.lua | 4 |
5 files changed, 9 insertions, 11 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 655c8820..7a70b5c4 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -8,9 +8,8 @@ -- to work with the global one. -- Many of these functions and fields are derived from buffer-specific -- functionality of the Scintilla editing component, and additional information --- can be found on the Scintilla website: --- [http://scintilla.org/ScintillaDoc.html]( --- http://scintilla.org/ScintillaDoc.html). +-- can be found on the +-- [Scintilla website](https://scintilla.org/ScintillaDoc.html). -- Note that with regard to Scintilla-specific functionality, this API is a -- _suggestion_, not a hard requirement. All of that functionality also exists -- in [`view`](), even if undocumented. diff --git a/core/.iconv.luadoc b/core/.iconv.luadoc index 189e83bc..addd7ebc 100644 --- a/core/.iconv.luadoc +++ b/core/.iconv.luadoc @@ -31,7 +31,7 @@ module('string') -- * Unicode: UTF-8, UCS-2, UCS-2BE, UCS-2LE, UCS-4, UCS-4BE, UCS-4LE, UTF-16, -- UTF-16BE, UTF-16LE, UTF-32, UTF-32BE, UTF-32LE, UTF-7, C99, JAVA. -- --- [GNU libiconv's encodings]: http://www.gnu.org/software/libiconv/ +-- [GNU libiconv's encodings]: https://www.gnu.org/software/libiconv/ -- @param text The text to convert. -- @param new The string encoding to convert to. -- @param old The string encoding to convert from. diff --git a/core/.view.luadoc b/core/.view.luadoc index 0cf59048..abd9dbd7 100644 --- a/core/.view.luadoc +++ b/core/.view.luadoc @@ -7,10 +7,9 @@ -- While you can work with individual view instances, it is often useful to work -- with just the global one. -- Many of these functions and fields are derived from view-specific --- functionality the Scintilla editing component, and additional information can --- be found on the Scintilla website: --- [http://scintilla.org/ScintillaDoc.html]( --- http://scintilla.org/ScintillaDoc.html) +-- functionality of the Scintilla editing component, and additional information +-- can be found on the +-- [Scintilla website](https://scintilla.org/ScintillaDoc.html). -- Note that with regard to Scintilla-specific functionality, this API is a -- _suggestion_, not a hard requirement. All of that functionality also exists -- in [`buffer`](), even if undocumented. diff --git a/core/file_io.lua b/core/file_io.lua index de90ec81..d45372ec 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -63,7 +63,7 @@ io.recent_files = {} -- * Unicode: UTF-8, UCS-2, UCS-2BE, UCS-2LE, UCS-4, UCS-4BE, UCS-4LE, UTF-16, -- UTF-16BE, UTF-16LE, UTF-32, UTF-32BE, UTF-32LE, UTF-7, C99, JAVA. -- --- [GNU iconv's encodings]: http://www.gnu.org/software/libiconv/ +-- [GNU iconv's encodings]: https://www.gnu.org/software/libiconv/ -- @usage io.encodings[#io.encodings + 1] = 'UTF-32' -- @class table -- @name encodings diff --git a/core/init.lua b/core/init.lua index ed2f66ba..4876e2cb 100644 --- a/core/init.lua +++ b/core/init.lua @@ -2,7 +2,7 @@ _RELEASE = 'Textadept 11.0 alpha 3' _COPYRIGHT = - 'Copyright © 2007-2020 Mitchell. See LICENSE.\nhttp://foicica.com/textadept' + 'Copyright © 2007-2020 Mitchell. See LICENSE.\nhttps://foicica.com/textadept' package.path = string.format('%s/core/?.lua;%s', _HOME, package.path) @@ -96,7 +96,7 @@ end) -- Whether or not Textadept is running in a terminal. -- Curses feature incompatibilities are listed in the [Appendix][]. -- --- [Appendix]: manual.html#curses-compatibility +-- [Appendix]: manual.html#terminal-version-compatibility module('_G')]] --[[ The tables below were defined in C. |