├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── _docs ├── 4.png └── sample_output │ ├── merged │ └── prime_book.pdf │ └── standalone │ ├── Projects 920be5e64bd04f34b3c4450ad3fcc80e.pdf │ └── Projects 920be5e64bd04f34b3c4450ad3fcc80e │ ├── FormAssist 24b55bd600aa4f048e9431834801137b.pdf │ ├── GitHub Project Bot 61319115f9f9431a8fe2d07496a2ca66.pdf │ ├── RISCV Heritage e72fa8c001c74632995ba936c3bb9761.pdf │ └── Train Ticketing 28204c1e64ea4f8d89f2ad69b1c5562f.pdf ├── assets ├── base.html ├── cover │ └── index.html ├── css │ ├── global.css │ └── notion_export_default.css ├── header │ └── index.html └── toc │ └── styles.xls ├── package.json ├── src ├── build_docs │ ├── build_merged_doc.ts │ └── build_standalone_docs.ts ├── index.ts ├── logger │ └── dev_logger.ts ├── notion_export │ └── html_export.ts ├── tests │ └── index.ts └── utils │ ├── build_current_session.ts │ ├── check_if_binary_exists_in_path.ts │ ├── config.ts │ ├── convert_html_to_ebook.ts │ ├── filesystem_utils.ts │ ├── notion_api_utils.ts │ └── process_html.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/README.md -------------------------------------------------------------------------------- /_docs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/4.png -------------------------------------------------------------------------------- /_docs/sample_output/merged/prime_book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/merged/prime_book.pdf -------------------------------------------------------------------------------- /_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e.pdf -------------------------------------------------------------------------------- /_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/FormAssist 24b55bd600aa4f048e9431834801137b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/FormAssist 24b55bd600aa4f048e9431834801137b.pdf -------------------------------------------------------------------------------- /_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/GitHub Project Bot 61319115f9f9431a8fe2d07496a2ca66.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/GitHub Project Bot 61319115f9f9431a8fe2d07496a2ca66.pdf -------------------------------------------------------------------------------- /_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/RISCV Heritage e72fa8c001c74632995ba936c3bb9761.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/RISCV Heritage e72fa8c001c74632995ba936c3bb9761.pdf -------------------------------------------------------------------------------- /_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/Train Ticketing 28204c1e64ea4f8d89f2ad69b1c5562f.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/_docs/sample_output/standalone/Projects 920be5e64bd04f34b3c4450ad3fcc80e/Train Ticketing 28204c1e64ea4f8d89f2ad69b1c5562f.pdf -------------------------------------------------------------------------------- /assets/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/base.html -------------------------------------------------------------------------------- /assets/cover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/cover/index.html -------------------------------------------------------------------------------- /assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/css/global.css -------------------------------------------------------------------------------- /assets/css/notion_export_default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/css/notion_export_default.css -------------------------------------------------------------------------------- /assets/header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/header/index.html -------------------------------------------------------------------------------- /assets/toc/styles.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/assets/toc/styles.xls -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/package.json -------------------------------------------------------------------------------- /src/build_docs/build_merged_doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/build_docs/build_merged_doc.ts -------------------------------------------------------------------------------- /src/build_docs/build_standalone_docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/build_docs/build_standalone_docs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger/dev_logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/logger/dev_logger.ts -------------------------------------------------------------------------------- /src/notion_export/html_export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/notion_export/html_export.ts -------------------------------------------------------------------------------- /src/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/tests/index.ts -------------------------------------------------------------------------------- /src/utils/build_current_session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/build_current_session.ts -------------------------------------------------------------------------------- /src/utils/check_if_binary_exists_in_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/check_if_binary_exists_in_path.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/convert_html_to_ebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/convert_html_to_ebook.ts -------------------------------------------------------------------------------- /src/utils/filesystem_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/filesystem_utils.ts -------------------------------------------------------------------------------- /src/utils/notion_api_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/notion_api_utils.ts -------------------------------------------------------------------------------- /src/utils/process_html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/src/utils/process_html.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subhamX/notion-easy-export/HEAD/tsconfig.json --------------------------------------------------------------------------------