N
Nikolai Weibull
I have two suggestions for RDoc fixes:
1. Object#[] doesn't get documented, at least not in C sources.
2. Could the parser perhaps drop folding-markers from the source? An
example comment with a folding-marker would be:
/* {{{1
*
* call-seq:
* ...
*/
The documentation looks rediculous when these are included. A
solutions is to separate the marker from the documentation:
/* {{{1 */
/*
* call-seq:
* ...
*/
but it still seems, to me, that RDoc could take care of removing
them.
A regex to match folding-markers with could be expressed like:
/(?:{{{|}}})\d*/
It's pretty standard.
Perhaps a good solution to #2 is to allow project-specific inclusions of
parsers. What do you think?,
nikolai
1. Object#[] doesn't get documented, at least not in C sources.
2. Could the parser perhaps drop folding-markers from the source? An
example comment with a folding-marker would be:
/* {{{1
*
* call-seq:
* ...
*/
The documentation looks rediculous when these are included. A
solutions is to separate the marker from the documentation:
/* {{{1 */
/*
* call-seq:
* ...
*/
but it still seems, to me, that RDoc could take care of removing
them.
A regex to match folding-markers with could be expressed like:
/(?:{{{|}}})\d*/
It's pretty standard.
Perhaps a good solution to #2 is to allow project-specific inclusions of
parsers. What do you think?,
nikolai