My source code has three comments where Doxygen deletes @ signs from the
generated HTML:

/// [logIn setScopes:[NSArray
arrayWithObject:@"https://www.googleapis.com/auth/login";]];
@interface LogIn : NSObject

/// The default value is |@[@"https://www.xxx.com/auth/login";]|.
@property(nonatomic, copy) NSArray *scopes;

/// Such as |@"it"| or |@"pt-PT"|. Only set if different from system
default.
@property(nonatomic, copy) NSString *language;


The output is, respectively:

Source:    /// [logIn setScopes:[NSArray
arrayWithObject:@"https://www.xxx.com/
Generated:    [logIn setScopes:[NSArray arrayWithObject:"<a
href=&quot;https://www.xxx.com/
Should be:     [logIn setScopes:[NSArray arrayWithObject:@&quot;&lt;a
href=&quot;https://www.xxx.com/

Source:    /// The default value i
|@[@&quot;https://www.xxx.com/auth/login&quot;]|.
Generated:    The default value is |@[&quot;&lt;a
href=&quot;https://www.xxx.com/auth/login&quot;>
Should be:     The default value is |@[@" Source:     /// such as |@"it"| or
|@"pt-PT"|. 
Generated:     such as |"it"| or |@"pt-PT"|
Should be:      such as |@"it"| or |@"pt-PT"|


Is this a Doxygen bug?

In order to avoid altering the comments, my INPUT_FILTER is has only one
statement in it:  cat $1

Doxygen 1.8.8 <https://www.xxx.com/auth/login> 



--
View this message in context: 
http://doxygen.10944.n7.nabble.com/at-signs-in-doc-comments-are-deleted-from-output-tp7038.html
Sent from the Doxygen - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to