DOC: Add RFC references for the path-strip-dot(dot)? normalizers

This is RFC 3986#6.2.2.3.
diff --git a/doc/configuration.txt b/doc/configuration.txt
index bdb5b78..343f2b4 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -6050,7 +6050,8 @@
 
   The following normalizers are available:
 
-  - path-strip-dot: Removes "/./" segments within the "path" component.
+  - path-strip-dot: Removes "/./" segments within the "path" component
+      (RFC 3986#6.2.2.3).
 
       Example:
       - /.            -> /
@@ -6058,7 +6059,9 @@
       - /a/./a        -> /a/a
       - /.well-known/ -> /.well-known/ (no change)
 
-  - path-strip-dotdot: Normalizes "/../" segments within the "path" component.
+  - path-strip-dotdot: Normalizes "/../" segments within the "path" component
+      (RFC 3986#6.2.2.3).
+
       This merges segments that attempt to access the parent directory with
       their preceding segment. Empty segments do not receive special treatment.
       Use the "path-merge-slashes" normalizer first if this is undesired.