An open API service indexing awesome lists of open source software.

https://github.com/kylekarpack/wp-to-md

Convert WP posts to markdown in folders. Useful for migrating from WordPress to a static site generator like Hugo, Jekyll, GatsbyJS or others
https://github.com/kylekarpack/wp-to-md

command-line-tool html javascript markdown nodejs static-site wordpress

Last synced: 4 months ago
JSON representation

Convert WP posts to markdown in folders. Useful for migrating from WordPress to a static site generator like Hugo, Jekyll, GatsbyJS or others

Awesome Lists containing this project

README

          

# wp-to-md

This tool is designed to download rendered content from WordPress via the API and save it in a local directory as markdown and images. It's a simple solution for moving content from WordPress to a static site generator such as Jekyll, Hugo, Gatsby, or others.

## Installation

```
yarn global add wp-to-md
```
or

```
npm i -g wp-to-md
```

You can also run the tool without installing if you prefer, via `npx`:
```
npx wp-to-md [options]
```

## Usage
```
$ wp-to-md [options]

Options:
-V, --version output the version number
-u, --url WordPress API URL Base
-o, --output Output directory (default: "./output")
-t, --type Post type to process (default: "pages")
-n, --number Maximum number of entries to process (default: 100)
-h, --help output usage information
```

## Development

1. Run ```yarn install``` or ```npm install``` to install dependencies
2. Run the utility with ```yarn start```/```npm start``` or ```node index.js```