diff --git a/README.md b/README.md index 8c04025..7140c70 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ The items you want to pay attention are: |--------------------------|--------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `basePath` | `/` | the base path of your org-mode content, e.g. `/blog` | | `contentPath` | `content` | source folder of your org files, relative to the root of the project. e.g. `../notes` | -| `filter` | `{}` | filter of your posts, key sohuld match metadata property names, e.g. `{ category: 'posts'}` | +| `filter` | `{}` | filter of your posts, key should match metadata property names, e.g. `{ category: 'posts'}` | | `pagination` | 10 | maximum number of posts per index page. | | `slug` | `['$category', '$export_file_name']` | array of elements for generating slug for each posts, the ones with `$` prefix means to take the value from metadata with matching field name, e.g. `['blog', '$export_file_name']` will give you slugs like `blog/my-post` | | `buildIndexPage` | `true` | whether or not to build an index page, it's path would be your `basePath`, but can be overwritten by custom pages in your `src/pages` folder. |