Modify ↓
Opened 18 years ago
Closed 17 years ago
#2657 closed enhancement (fixed)
No comma in text
| Reported by: | Owned by: | David Roussel | |
|---|---|---|---|
| Priority: | normal | Component: | ColorMacro |
| Severity: | minor | Keywords: | escaping comma |
| Cc: | simon | Trac Release: | 0.10 |
Description
You can't color the , in a text.
i.e.
[[Color(red,The ColorMacro is great! You're able to supply your text with green, yellow, blue or red background.)]]
doesn't work as one might wish to. A possibility to escape special characters would be nice to have.
Attachments (0)
Change History (3)
comment:1 Changed 18 years ago by
comment:2 Changed 17 years ago by
| Cc: | simon added; anonymous removed |
|---|
closed ticket:2954 as a duplicate of this
Note: See
TracTickets for help on using
tickets.



change
args = tuple(args.split(","))into
args = tuple(args.split(",",2))Hopefully this makes it into the release soon :)