@require(symbol) @def header_level(): @( if symbol.extension_attributes.get('is_section_head', False): return '2' elif symbol.extension_attributes.get('order_by_section', False): return '4' else: return '3' ) @end @(level = header_level()) @def header(): @symbol.link.title @end @header() @def content(): @end @content() @if symbol.comment: \ @for tag_name, tag in symbol.comment.tags.items(): \ @if tag_name not in ['returns', 'topic']:

@tag.name\ @if tag.description: : @tag.description @end

@end @end @end