Changes between Version 3 and Version 9 of Ticket #414
- Timestamp:
- 08/07/24 04:38:03 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #414
- Property Status new → assigned
- Property Milestone 1.3.x → 2.0.0
-
Ticket #414 – Description
v3 v9 1 1 There are quite a few cases which we probably don't handle as well as we could (sometimes it's not totally clear what the behaviour should be), so let's make a list here and see if we can find resolutions, or decide the current behaviour is fine. 2 2 3 With FLAG_SYNONYM th ese causereparsing so parse as {{{foo abc def}}} (we just ignore ~ unless the next character is a word character, so without the "foo:" prefix, ~ is just ignored):3 With FLAG_SYNONYM this causes reparsing so parse as {{{foo abc def}}} (we just ignore ~ unless the next character is a word character, so without the "foo:" prefix, ~ is just ignored): 4 4 5 5 {{{ 6 6 ~foo:(abc def) 7 ~foo:"abc def"8 7 }}} 9 8 10 Assuming "foo" is set as a non-boolean prefix, the first should probably parse as synonyms for the two terms, so the same as:9 Assuming "foo" is set as a non-boolean prefix, it should probably parse as synonyms for the two terms, so the same as: 11 10 12 11 {{{ 13 12 ~foo:abc ~foo:def 14 13 }}} 15 16 And the second should probably do a multi-word synonym expansion.