2021-02-16 20:34:58 +01:00
# Notion importer
2021-02-22 19:58:50 +01:00
This node app converts a Notion CSV and markdown export into a Focalboard archive. To use:
1. From a Notion Board, open the ... menu at the top right
2022-01-26 21:35:28 +01:00
2. Select `Export` , pick `Markdown & CSV` as the export format, select true to include subpages.
2021-02-22 19:58:50 +01:00
3. Save it locally, and unzip the folder e.g. to `notion-export`
2021-04-13 23:35:50 +02:00
4. Run `npm install` from within `focalboard/webapp`
5. Run `npm install` from within `focalboard/import/notion`
6. Run `npx ts-node importNotion.ts -i <path to the notion-export folder> -o archive.focalboard`
7. In Focalboard, click `Settings` , then `Import archive` and select `archive.focalboard`
2021-02-16 20:34:58 +01:00
2021-02-22 19:58:50 +01:00
## Import scope
Currently, the script imports all cards from a single board, including their properties and markdown content.
The Notion export format does not preserve property types, so the script currently imports all card properties as a Select type. You can change the type after importing into Focalboard.
2022-02-09 17:17:46 +01:00
[Contribute code ](https://mattermost.github.io/focalboard/ ) to expand this.