Modify ↓
Opened 14 years ago
Last modified 5 years ago
#8429 new defect
Character subsets of words are matched as acronyms
Reported by: | Ryan J Ollos | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | AcronymsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Attachments (1)
Change History (4)
Changed 14 years ago by
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Summary: | Partial words are matched as acronyms → Character subsets of words are matched as acronyms |
---|
comment:3 Changed 5 years ago by
Owner: | Ryan J Ollos deleted |
---|
Note: See
TracTickets for help on using
tickets.
The plugin is designed so that
<acronym>[<id>]
can be matched, so it's not so straightforward to avoid matching WFMD. We could avoid these matches in the case that anID URL
is not specified for the acronym, however we'd still get false matches in some situations.For example, with the following definition,
||RFC ||Request For Comment $1 ||http://www.ietf.org/rfc.html ||http://www.ietf.org/rfc/rfc$1.txt||
we'd still match
RFCD
, when we only intend to match trailing numerics such asRFC2317
.I can think of a couple of options:
Let me know what you think.