Jekyll config.yml Ошибка: не найден ожидаемый индикатор «-» при анализе коллекции блоков - PullRequest
0 голосов
/ 04 февраля 2020

Командная строка показывает мне следующую ошибку в файле config.yml:

did not find expected '-' indicator while parsing a block collection at line 101 column 3 (Psych::SyntaxError)

Я попытался удалить все отступы и снова сделать отступ с пробелами, но проблема сохраняется. Вот мой код:

name: "SITENAME | Official Website"
description: "SOME DESCRIPTION"
# url: SOME URL


sass:
  sass_dir: _sass
  style: compressed

author:
  name: "AUTHOR'S NAME"

social-network-links:
  rss: true
  facebook: "FB"
  twitter: "TW"
  linkedin: "LI"

# Select which share links to show in posts
share-links-active:
  twitter: true
  facebook: true
  linkedin: true

# Facebook App ID (for Ads)
# fb_app_id: ""

# Excerpt Word Length
# Truncates the excerpt to the specified number of words on the index page
excerpt_length: 40

# Ruby Date Format
date_format: "%B %-d, %Y"


# --- Comments --- #

# Disqus shortname (NOT userid)
comments:
  provider: "disqus"
  disqus:
    shortname: "SHORTNAME"



# --- Web Statistics Section --- #


google_analytics: "GA"

# Google Tag Manager ID
gtm: "GTM"




# Output options (more information on Jekyll's site)
timezone: "Europe/Berlin"
markdown: kramdown
highlighter: rouge
permalink: /:year-:month-:day-:title/
paginate: 5

kramdown:
  input: GFM

# Default YAML values
defaults:
  -
    scope:
      path: ""
      type: "posts"
    values:
      layout: "post"
      comments: true  # add comments to all blog posts
      social-share: true # add social media sharing buttons to all blog posts
  -
    scope:
      path: "" # all files
    values:
      layout: "page"
      comments: false

# Use tags index page and make tags on each post clickable
link-tags: true

# Exclude these files from production site
exclude:
  - CHANGELOG.md
  - CNAME
  - Gemfile
  - Gemfile.lock
  - LICENSE
  - README.md
  - .jekyll-cache

plugins:
  - jekyll-feed ******THIS IS THE LINE 101*********
  - jekyll-archives
  - jekyll-sitemap

Я читал много тем об этой самой проблеме, но я не могу понять это. Я должен сказать, что это мой первый файл config.yml, и я могу упустить что-то простое. Заранее благодарим за помощь!

...