Zoë Blade <zoe@xxxxxxxxxxxxxxx> writes: Hmmmm, the pattern has too many question marks to make a simple panda brain spin. > "^((\\.|((int|est|ext)?\\.?|i(nt)?\\.?/e(xt)?\\.?) ).+)$" it can start with a dot, or match "something" at the beginning, followed by a SP (is a tab allowed there instead of SP, I have to wonder). One problem I noticed immediately: this allows a line that begins with "...", which I learned in http://fountain.io/syntax when I wrote $gmane/274127 is explicitly excluded. A line that begin with a dot followed by a non-dot is a forced scene heading. Now disecting that "something" (i.e. not a forced scene heading), which is this part ... > ((int|est|ext)?\\.?|i(nt)?\\.?/e(xt)?\\.?) ... that gives us largely two choices: - It can begin with zero or one int/est/ext and can optionally be followed by a dot, or - It can be one of (i, int), optionally followed by a dot, followed by slash, followed by one of (e, ext), optionally followed by a dot. Second problem. Doesn't the early part of this "something" pattern allow an empty string to match by having zero "int" and zero "."? With this edit to the test vector (add either one of these two, removing the other, before you run this test twice), you can see that these over-eager matches in action. ---------------------------------------------------------------- t/t4018/fountain-scene | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/t4018/fountain-scene b/t/t4018/fountain-scene index 6b3257d..94f0513 100644 --- a/t/t4018/fountain-scene +++ b/t/t4018/fountain-scene @@ -1,4 +1,7 @@ EXT. STREET RIGHT OUTSIDE - DAY + An indented line is WRONG. +...we do not want ellipses. + CHARACTER You didn't say the magic phrase, "ChangeMe". ---------------------------------------------------------------- Perhaps the pattern is trying to be too clever for its own good. I'd prefer to see us doing simple, stupid and obviously correct. That "syntax" page says: You can "force" a Scene Heading by starting the line with a single period. ... Note that only a single leading period followed by an alphanumeric character will force a Scene Heading. This allows the writer to begin Action and Dialogue elements with ellipses ... which would give us the first part, i.e. the line may start with a dot and then an alnum \\.[a-z0-9] And then A line beginning with any of the following, followed by either a dot or a space, is considered a Scene Heading (unless the line is preceded by an exclamation point !). Case insensitive. INT EXT EST INT./EXT INT/EXT I/E which translates to (int|ext|est|int\\.?/ext|i/e)[. ] So taking these all together, something like this? ^((\\.[a-z0-9]|(int|ext|est|int\\.?/ext|i/e)[. ]).*)$ I personally prefer to make it slightly lenient to exclude dot instead of forcing US-ASCII view of alnum, i.e. ^((\\.[^.]|(int|ext|est|int\\.?/ext|i/e)[. ]).*)$ I'll queue a SQUASH??? on top while waiting for a response. Thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html