├── .gitignore ├── LICENSE ├── README.md ├── assets ├── css │ ├── essay-styles.css │ └── style.css ├── images │ └── screenshot.png └── js │ └── populate-essays.js ├── author_template.html ├── config.py ├── data └── README.md ├── requirements.txt ├── substack_html_pages └── README.md └── substack_scraper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/essay-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/assets/css/essay-styles.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/assets/images/screenshot.png -------------------------------------------------------------------------------- /assets/js/populate-essays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/assets/js/populate-essays.js -------------------------------------------------------------------------------- /author_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/author_template.html -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/config.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/data/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/requirements.txt -------------------------------------------------------------------------------- /substack_html_pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/substack_html_pages/README.md -------------------------------------------------------------------------------- /substack_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timf34/Substack2Markdown/HEAD/substack_scraper.py --------------------------------------------------------------------------------