Update README.md
Browse files
README.md
CHANGED
@@ -1,13 +1,31 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PdfToc2MindMap
|
2 |
+
|
3 |
+
Simple tool to convert PDF table of contents to popular mind map formats
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
# Installation
|
8 |
+
|
9 |
+
Automatic installation of dependencies:
|
10 |
+
|
11 |
+
```sh
|
12 |
+
git clone https://github.com/mananatee/PdfToc2MindMap.git
|
13 |
+
pip install --process-dependency-links ./PdfToc2MindMap
|
14 |
+
```
|
15 |
+
|
16 |
+
Manual installation of dependencies:
|
17 |
+
|
18 |
+
```sh
|
19 |
+
# Install XMind Python SDK
|
20 |
+
git clone https://github.com/andrii-z4i/xmind-sdk-python.git
|
21 |
+
python xmind-sdk-python/setup.py install
|
22 |
+
|
23 |
+
# Install PDF miner (https://github.com/pdfminer/pdfminer.six)
|
24 |
+
pip install pdfminer.six
|
25 |
+
```
|
26 |
+
|
27 |
+
# TODO
|
28 |
+
|
29 |
+
- [ ] support multiple mindmap formats
|
30 |
+
- [ ] add unit tests
|
31 |
+
- [ ] test with table of contents created by more pdf editors (currently only tested with PDF X-Change Editor)
|