53df62771d
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
.eslintrc.json | ||
.gitignore | ||
importNotion.ts | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
utils.ts |
Notion importer
This node app converts a Notion CSV and markdown export into a Focalboard archive. To use:
- From a Notion Board, open the ... menu at the top right
- Select
Export
, pickMarkdown & CSV
as the export format, select true to include subpages. - Save it locally, and unzip the folder e.g. to
notion-export
- Run
npm install
from withinfocalboard/webapp
- Run
npm install
from withinfocalboard/import/notion
- Run
npx ts-node importNotion.ts -i <path to the notion-export folder> -o archive.focalboard
- In Focalboard, click
Settings
, thenImport archive
and selectarchive.focalboard
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.
Contribute code to expand this.