Marek
Marek

Reputation: 1788

Jekyll is not generating html for markdown pages from root folder

I've started playing with Jekyll to move my blog to GitHub Pages. I'm using a local Jekyll tooling (jekyll 3.1.3) with neo-hpstr-jekyll-theme as a starting point on Windows.

The entry point (index.html in root) and posts are generated just fine. But when I place markdown file (about.md):

---
layout: page
title:  "about me"
permalink: /about
---
here goes some content with markdown syntax...

after build this file is placed directly under _site\about.md folder with exactly the same content (not transformed). It should be transformed and placed in _site\about\index.html

So far I've checked the layout (it exists and looks ok), BOMs in file (none is added), permalinks configuration in _config.yml (using the default) but with no result.

Any idea what I do wrong?


EDIT: The page project is available on: https://github.com/mmierzwa/mmierzwa.github.io (develop branch)

Upvotes: 2

Views: 1887

Answers (1)

David Jacquel
David Jacquel

Reputation: 52829

When I do view.encoding() in my favorite editor, it tells me that your about.md is UTF-8 with BOM encoded.

Save it to UTF-8 no BOM.

Upvotes: 7

Related Questions