Modify ↓
Opened 17 years ago
Last modified 9 years ago
#1882 assigned enhancement
TracLinks in doxygen-comments?
Reported by: | Owned by: | Committo-Ergo-Sum | |
---|---|---|---|
Priority: | normal | Component: | DoxygenPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
It would be very nice, if TracLinks from the doxygen-output is parsed. eg:
/** * This is a simple function. ([wiki:function/simplefunction details]) * * @param string input * @return string output * ......... */
Attachments (0)
Change History (6)
comment:1 Changed 17 years ago by
Owner: | changed from Radek Bartoň to Christian Boos |
---|
comment:2 Changed 9 years ago by
Owner: | changed from Christian Boos to Committo-Ergo-Sum |
---|---|
Status: | new → assigned |
comment:3 Changed 9 years ago by
comment:4 Changed 9 years ago by
comment:5 Changed 9 years ago by
It would be good if you ran a PEP8 style checker. There are a number of minor issues in the codebase. I'll fix some of them if I find time.
Note: See
TracTickets for help on using
tickets.
I'm not sure there is a simple way to handle this. There's a function in
trac.wiki.formatter
for formatting a link,However, you'll need to parse the text to be formatted from the Doxygen markup, for which you might need to write some regular expression. You probably want to look at formatter.py and parser.py.