├── .DS_Store ├── .github └── workflows │ └── update_gh_pages.yaml ├── .gitignore ├── .vuepress ├── config.js ├── public │ └── logo.png └── theme │ └── Layout.vue ├── LICENSE ├── README.md ├── deploy.sh └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/update_gh_pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.github/workflows/update_gh_pages.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.gitignore -------------------------------------------------------------------------------- /.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.vuepress/config.js -------------------------------------------------------------------------------- /.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.vuepress/public/logo.png -------------------------------------------------------------------------------- /.vuepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/.vuepress/theme/Layout.vue -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/deploy.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuxiaoy1/awesome-newsletters/HEAD/package.json --------------------------------------------------------------------------------