From 4c1427c400ea764310b0c892f8ae80b6bad1ab4c Mon Sep 17 00:00:00 2001 From: "jaybe@jekyll" Date: Tue, 11 Aug 2015 17:56:35 -0500 Subject: [PATCH] docs: Update _data in "Directory structure" Add in references to _data format and extension options of .csv, .json, etc., consistent with _docs/datafiles.md Signed-off-by: Parker Moore --- site/_docs/structure.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/site/_docs/structure.md b/site/_docs/structure.md index 53a48951..eb6a0892 100644 --- a/site/_docs/structure.md +++ b/site/_docs/structure.md @@ -133,11 +133,12 @@ An overview of what each of these does:

Well-formatted site data should be placed here. The jekyll engine - will autoload all yaml files (ends with - .yml or .yaml) in this directory. If - there's a file members.yml under the directory, - then you can access contents of the file - through site.data.members. + will autoload all YAML files in this directory (using either the + .yml, .yaml, .json or + .csv formats and extensions) and they will be + accessible via `site.data`. If there's a file + members.yml under the directory, then you can access + contents of the file through site.data.members.