-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
32 lines (24 loc) · 1018 Bytes
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The directory where exitwp looks for wordpress export xml files.
wp_exports: wordpress-xml
# The target directory where all output is saved.
build_dir: build
# Output format: primary choices are html or markdown.
target_format: html
# The date format of the wikipedia export file.
# I'm not sure if this ever differs depending on wordpress localization.
# Wordpress is often so full of strange quirks so I wouldnt rule it out.
date_format: '%Y-%m-%d %H:%M:%S'
# Try to download and reloacate all images locally to the blog.
download_images: False
# Item types we don't want to import.
item_type_filter: {attachment, nav_menu_item}
# filter by any field type on the post.
# By default, we're filtering based on field "status" set to "draft"
item_field_filter: {status: draft}
taxonomies:
# Filter taxonomies.
filter: {}
# Filter taxonomies entries.
entry_filter: {category: Uncategorized}
# Rename taxonomies when writing jekyll output format.
name_mapping: {category: categories, post_tag: tags}