Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude in _config.yml doesn't seem to work #3516

Closed
kevin-coyle-pfizer opened this issue Apr 2, 2019 · 1 comment
Closed

Exclude in _config.yml doesn't seem to work #3516

kevin-coyle-pfizer opened this issue Apr 2, 2019 · 1 comment

Comments

@kevin-coyle-pfizer
Copy link

Environment Info

Node version: 10.14.0

Your site _config.yml (Optional):

# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/

# Site
title: Mysite
subtitle:
description:
keywords:
author: John Doe
language:
timezone:

# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://yoursite.com
root: /
permalink: :title/
permalink_defaults:

# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render: shared/**/*
exclude: 
  - shared/**
ignore:
  - shared/**

# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link: true # Open external links in new tab
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
highlight:
  enable: true
  line_number: true
  auto_detect: false
  tab_replace:
  
# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
  path: ''
  per_page: 10
  order_by: -date
  
# Category & Tag
default_category: uncategorized
category_map:
tag_map:

# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss

# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page

# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: theme


# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
  type:
exclude: 
  - shared/**

Hexo and Plugin version(npm ls --depth 0):

├── hexo@3.8.0
├── hexo-generator-archive@0.1.5
├── hexo-generator-category@0.1.3
├─┬ UNMET DEPENDENCY hexo-generator-index@0.2.1
│ ├── hexo-pagination@0.0.2 deduped
│ └── object-assign@4.1.1
├── hexo-generator-tag@0.2.0
├── hexo-renderer-ejs@0.3.1
├── hexo-renderer-marked@0.3.2
├── hexo-renderer-stylus@0.3.3
├── hexo-server@0.3.3

Your package.json package.json:

For BUG

Steps to reproduce:

  1. Create new hexo site
  2. Create a directory inside source/_posts called shared
  3. Exclude that directory inside _config.yml with:
exclude:
  - shared/**
  1. Run hexo clean && hexo generate

Expected behaviour:
shared directory is not outputted to public

Observed behaviour:
shared directory is outputted to public

I'm not sure if this is my understanding of the feature or not, I'm following the instructions here: https://hexo.io/docs/configuration.html#Include-Exclude-Files-or-Folders

@tcrowe
Copy link
Contributor

tcrowe commented Apr 9, 2019

Sometimes it helps to put it in YAML quotes. This confuses me too sometimes.

exclude: 
  - "shared/**"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants