From: Simon McVittie <smcv@debian.org>
Date: Thu, 31 Jan 2019 19:58:30 +0000 (+0000)
Subject: respond
X-Git-Tag: 3.20190207~32
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/3c66dca6eabcb18e96359a5930ee6e57a1e86d9c?ds=inline

respond
---

diff --git a/doc/bugs/permalink_not_set_for_comments.mdwn b/doc/bugs/permalink_not_set_for_comments.mdwn
index 2e74a2622..b6ef5cb31 100644
--- a/doc/bugs/permalink_not_set_for_comments.mdwn
+++ b/doc/bugs/permalink_not_set_for_comments.mdwn
@@ -23,3 +23,18 @@ two underscores. I think that is the root of the bug. --[[Joey]]
 > preprocessed again, not immediately. That's ok for notifyemail,
 > but other uses of permalink might need a wiki rebuild to get the bug fix.
 > --[[Joey]]
+>
+>> I'm not sure that I see how the regexp was wrong? It's looking for,
+>> for example,
+>>
+>>     foo/comment_1_eaab671848ee6129f6fe9399474eeac0._comment
+>>        sccccccccdu
+>>
+>> where
+>>
+>> * *s* marks the literal `/`
+>> * *cccc* marks `comments_pagename`
+>> * *d* marks `\d+` (one or more digits)
+>> * *u* marks the literal `_`
+>>
+>> --[[smcv]]