- 
                Notifications
    
You must be signed in to change notification settings  - Fork 120
 
YAML Front Matter
All Markdown files and some other files have to start with a YAML Front Matter, a block of YAML formatted data enclosed by lines of three dashes.
Please, make yourself familiar with the YAML syntax.
Don't be scared, it is really easy and intuitive:
---
receipt:     Oz-Ware Purchase Invoice
date:        2012-08-06
customer:
  first_name:   Dorothy
  family_name:  Gale
items:
  - part_no:   A4786
    descrip:   Water Bucket (Filled)
    price:     1.47
    quantity:  4
  - part_no:   E1628
    descrip:   High Heeled "Ruby" Slippers
    size:      8
    price:     133.7
    quantity:  1
specialDelivery:  >
  Follow the Yellow Brick
  Road to the Emerald City.
  Pay no attention to the
  man behind the curtain.
---
Rule #1: In case a page template provides a field with a value, don't change it!
Rule #2: If you don't need one of the given YAML field, leave it empty or remove it.
- 
dateandupdate
Thedateof a page is the datetime of its first creation andupdateshould be set and updated to the current datetime whenever updates are made to that page. A datetime is always of the form:YYYY-MM-DD HH:MM:SS +ZZZZwhere
[+-]ZZZZis the time zone in[+-]HHMMnotation relative to UTC. For DST (daylight saving time) in Europe/Berlin, this would be+0200and for DST in Los Angeles-0700.It is valid to omit the time and timezone data and only write the date:
YYYY-MM-DD. 
Please, by all means, notify us when anything is unclear in this wiki or the in-source documentation!