Elegant, rich text editor for Markdown files.
Editors use the Content Editor to update Markdown without having to know the syntax or use a plain text editor.
When files only use the front matter, it is better to display a full-screen front matter editor. Configure it with one of the following methods.
The collection definition in _config.yml
:
collections:
projects:
output: false
_hide_content: true
Directly in the front matter:
---
title: Hello World
_hide_content: true
---
Jekyll defaults in _config.yml
:
defaults:
- scope:
path:
type: 'projects'
values:
_hide_content: true
Within the front matter of the desired page:
---
title: Hello World
_hide_content: true
---
title = "Hello World"
_hide_content = true