digitalmars.D.bugs - "(" and ")" cause problems in ddoc comments
- BCS <BCS pathlink.com> Aug 11 2006
- Walter Bright <newshound digitalmars.com> Aug 11 2006
Stray, unnested parentheses can cause odd effects in ddoc comments. This can be fixed by using ( and ) but this is a bit clunky. What would be nice would be to have a special character sequence to handle them, something like &lp; and &rp;
Aug 11 2006
BCS wrote:Stray, unnested parentheses can cause odd effects in ddoc comments. This can be fixed by using ( and ) but this is a bit clunky. What would be nice would be to have a special character sequence to handle them, something like &lp; and &rp;
I use a macro: Macros: LPAREN = ( RPAREN = ) and use like: $(LPAREN) $(RPAREN)
Aug 11 2006








Walter Bright <newshound digitalmars.com>