|
20 | 20 | "name": "Python: Export Page",
|
21 | 21 | "type": "debugpy",
|
22 | 22 | "request": "launch",
|
23 |
| - "program": "${workspaceFolder}/confluence_to_markdown/main.py", |
| 23 | + "program": "${workspaceFolder}/confluence_markdown_exporter/main.py", |
24 | 24 | "justMyCode": false,
|
25 |
| - "args": ["page", "<page_id>", "scratch"], |
| 25 | + "args": ["page", "<page-id>", "scratch"], |
26 | 26 | "console": "integratedTerminal",
|
27 | 27 | "cwd": "${workspaceFolder}",
|
28 | 28 | "env": {
|
29 |
| - "PYTHONPATH": "${workspaceRoot}" |
| 29 | + "PYTHONPATH": "${workspaceRoot}", |
| 30 | + "DEBUG": "true" |
| 31 | + } |
| 32 | + }, |
| 33 | + { |
| 34 | + "name": "Python: Export Page with Descendants", |
| 35 | + "type": "debugpy", |
| 36 | + "request": "launch", |
| 37 | + "program": "${workspaceFolder}/confluence_markdown_exporter/main.py", |
| 38 | + "justMyCode": false, |
| 39 | + "args": ["page-with-descendants", "<page-id>", "scratch"], |
| 40 | + "console": "integratedTerminal", |
| 41 | + "cwd": "${workspaceFolder}", |
| 42 | + "env": { |
| 43 | + "PYTHONPATH": "${workspaceRoot}", |
| 44 | + "DEBUG": "true" |
30 | 45 | }
|
31 | 46 | },
|
32 | 47 | {
|
33 | 48 | "name": "Python: Export Space",
|
34 | 49 | "type": "debugpy",
|
35 | 50 | "request": "launch",
|
36 |
| - "program": "${workspaceFolder}/confluence_to_markdown/main.py", |
| 51 | + "program": "${workspaceFolder}/confluence_markdown_exporter/main.py", |
37 | 52 | "justMyCode": false,
|
38 |
| - "args": ["space", "<space_key>", "scratch"], |
| 53 | + "args": ["space", "<space-key>", "scratch"], |
39 | 54 | "console": "integratedTerminal",
|
40 | 55 | "cwd": "${workspaceFolder}",
|
41 | 56 | "env": {
|
42 |
| - "PYTHONPATH": "${workspaceRoot}" |
| 57 | + "PYTHONPATH": "${workspaceRoot}", |
| 58 | + "DEBUG": "true" |
| 59 | + } |
| 60 | + }, |
| 61 | + { |
| 62 | + "name": "Python: Export All Spaces", |
| 63 | + "type": "debugpy", |
| 64 | + "request": "launch", |
| 65 | + "program": "${workspaceFolder}/confluence_markdown_exporter/main.py", |
| 66 | + "justMyCode": false, |
| 67 | + "args": ["all-spaces", "scratch"], |
| 68 | + "console": "integratedTerminal", |
| 69 | + "cwd": "${workspaceFolder}", |
| 70 | + "env": { |
| 71 | + "PYTHONPATH": "${workspaceRoot}", |
| 72 | + "DEBUG": "true" |
43 | 73 | }
|
44 | 74 | }
|
45 | 75 | ]
|
|
0 commit comments