Skip to content

kmelve/markdown-to-sanity

Repository files navigation

Markdown to Sanity

This tool can glob a folder of markdown files with yaml frontmatter (typically found in Gatsby blogs) and ouput a Sanity.io .ndjson-import file.

Installation

As a global CLI tool:

npm i -g markdown-to-sanity

# or

yarn add --global markdown-to-sanity

As a project dependency:

npm i markdown-to-sanity

# or

yarn add markdown-to-sanity

Usage

As CLI:

> markdown-to-sanity # follow the instructions

The CLI will write a ndjson-file you can use with sanity dataset import. Learn more about importing data to Sanity.

In a project:

const migrateFiles = require('markdown-to-sanity')

migrateFiles({
  inputPath: '~/Sites/gatsby-blog/src/pages',
  filename: 'production',
  outputPath: './'
})

About

Convert markdown documents to sanity import file

Resources

Stars

Watchers

Forks

Packages

No packages published