Files
idapython-src/tools/examples_index_template.md
T
2022-01-17 11:28:09 +01:00

1.3 KiB

HTML version

IDAPython examples

% for category in sorted(examples):

Category: {{category}}

% for example in sorted(examples[category], key=lambda e: e.name):

{{example.name}}

{{example.summary}}

Source code

{{example.path}}

Category

{{example.category}}

Description

{{example.description if example.description else example.summary}}

% if example.shortcuts:

Shortcut{{'s' if len(example.shortcuts) > 1 else ''}}

{{' '.join(example.shortcuts)}}

% endif
% if example.keywords:

Keywords

{{' '.join(example.keywords)}}

% endif
% if example.imports:

Imports

  % for imported in example.imports:
  • {{imported}} % endfor

    % endif % if example.uses:

Uses

  % 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

% endfor # examples of a category % endfor # categories