@ifsymattr tag
This tag starts a new conditional group which must be ended by an @end if tag. The group will be processed only if the symbol attributes of specified identifier matches the requested attribute constraints.
This tag is mainly used in template files provided by mkdoc when using the bootstrap option.
See also @else tag.
Syntax [link]
@ifsymattr {<identifier>} {[!]<symbol attr> [[!]<symbol attr> ...] }
...
[ @else
... ]
@end if
See @foreach tag syntax for a list of valid symbol attributes.
Example [link]
@ifsymattr {@id@} {visible !experimental}
@debug The @name@ symbol which appears in the documentation is not experimental.
@end if