Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion q2doc/directives/describe_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def format_record(cls, name, plugin):
ast.append(md.heading_ast(2, 'Actions', id=False))
rows = []
for name, action in plugin.actions.items():
if name.startswith('_'): continue
plugin_name = md.cross_reference_ast(name.replace('_','-'), action_to_id(action))
if action.deprecated:
plugin_name = md.text_ast(plugin_name, style='delete')
Expand Down Expand Up @@ -77,4 +78,4 @@ def get_options(cls):
def apply_options(cls, ast, node, depth=1):
heading = ast[0]
heading['depth'] = depth
return ast
return ast