From 7193d352759ba455495c2842dcbc4bd8cebfefaf Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Wed, 12 Dec 2018 16:50:21 -0500 Subject: [PATCH] Update package and readme files --- README.md | 6 ++---- package.json | 8 +++++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 439abc5..e9d6f1e 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,11 @@ Saves each post as a separate file with appropriate frontmatter. Also saves atta You'll need: - [Node.js](https://nodejs.org/) v10.12 or later -- Your WordPress export file - - Log into your WordPress admin site and go to Tools > Export > Download Export File - - Save the file as `export.xml` inside this package's directory +- Your [WordPress export file](https://codex.wordpress.org/Tools_Export_Screen) Open your terminal to this package's directory. Run `npm install` and then `node index.js`. -This will use default options to create an `/output` folder filled with your posts and images. Done! +This will create an `/output` folder filled with your posts and images. ## Customization diff --git a/package.json b/package.json index 7330b8e..f619fe4 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,14 @@ { "name": "wordpress-export-to-markdown", - "version": "1.0.0", + "version": "1.0.1", "description": "Converts a WordPress export XML file into Markdown files.", "main": "index.js", + "repository": "https://github.com/lonekorean/wordpress-export-to-markdown.git", + "keywords": [ + "wordpress", + "markdown", + "export" + ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },