[DOC] Fix doc/regexp.rdoc links

- Rename regexp.rdoc to exclude from "Pages".  This file is for to be
  included in the "class Regexp" document, but it also appeared as a
  separate page duplicately.
- Fix links on case-sensitive filesystems.
- Fix to use rdoc-ref instead of converted HTML page names.
This commit is contained in:
Nobuyoshi Nakada 2023-11-14 13:53:59 +09:00
parent e020eb26f0
commit caa9881fde
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465
5 changed files with 42 additions and 43 deletions

View file

@ -76,7 +76,7 @@
# - <tt>\n</tt> (_n_ a non-negative integer) refers to <tt>$n</tt>.
# - <tt>\k<name></tt> refers to the named capture +name+.
#
# See rdoc-ref:regexp.rdoc for details.
# See Regexp for details.
#
# Note that within the string +replacement+, a character combination
# such as <tt>$&</tt> is treated as ordinary text, and not as
@ -93,7 +93,7 @@
# - <tt>\\+</tt> corresponds to <tt>$+</tt>,
# which contains last capture group.
#
# See rdoc-ref:regexp.rdoc for details.
# See Regexp for details.
#
# Note that <tt>\\\\</tt> is interpreted as an escape, i.e., a single backslash.
#