{{example.description if example.description else example.summary}}
- Category: {{example.category}}
- Summary: {{example.summary}}
- View on GitHub
% if example.keywords:
- Keywords:
% for keyword in example.keywords:
{{keyword}}
% endfor
% endif
% if example.shortcuts:
- Shortcut{{'s' if len(example.shortcuts) > 1 else ''}}:
% for shortcut in example.shortcuts:
{{shortcut}}
% endfor
% endif
% if example.imports:
- Imports
% for imported in example.imports:
- {{imported}}
% endfor
% endif
% if example.uses:
- APIs used
% for use in example.uses:
- {{use}}
% endfor
% endif
% if example.see_also:
- See also:
% for see in example.see_also:
- {{see}}
% endfor
% endif
% if example.author:
- Author: {{example.author}}
% endif