An open API service indexing awesome lists of open source software.

https://github.com/kkent030315/ida2md

IDA format to the markdown table conversion using python
https://github.com/kkent030315/ida2md

Last synced: 7 months ago
JSON representation

IDA format to the markdown table conversion using python

Awesome Lists containing this project

README

          

# ida2md
IDA format to the markdown table conversion using python

# Example

Input:

```
Address Ordinal-Name Library
0000000180078F18 AccessCheck api-ms-win-security-base-l1-1-0
0000000180078A28 ActivateActCtx api-ms-win-core-sidebyside-l1-1-0
0000000180077750 AddConsoleAliasA api-ms-win-core-console-l3-2-0
...
```

Output (Markdown table style):

```
|Address|Ordinal-Name|Library|
|----|----|----|
|180078F18|AccessCheck|api-ms-win-security-base-l1-1-0|
|180078A28|ActivateActCtx|api-ms-win-core-sidebyside-l1-1-0|
|180077750|AddConsoleAliasA|api-ms-win-core-console-l3-2-0|
...
```

# Known Issues

- the item in a row must not be contain whitespace.
- it is not possible to detect if the item is word or not automatically it should take action manually