From f9f87d9d713e3f3ff047d85f1264896663cb1ec0 Mon Sep 17 00:00:00 2001 From: Ricardo N Feliciano Date: Fri, 28 Jul 2017 15:59:23 -0400 Subject: [PATCH] Fix extension's missing period. --- content/templates/data-templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/templates/data-templates.md b/content/templates/data-templates.md index b7500809a..e75acec4c 100644 --- a/content/templates/data-templates.md +++ b/content/templates/data-templates.md @@ -26,7 +26,7 @@ Hugo supports loading data from YAML, JSON, and TOML files located in the `data` The `data` folder is where you can store additional data for Hugo to use when generating your site. Data files aren't used to generate standalone pages; rather, they're meant to be supplemental to content files. This feature can extend the content in case your front matter fields grow out of control. Or perhaps you want to show a larger dataset in a template (see example below). In both cases, it's a good idea to outsource the data in their own files. -These files must be YAML, JSON, or TOML files (using the `.yml`, `.yaml`, `.json`, or `toml` extension). The data will be accessible as a `map` in the `.Site.Data` variable. +These files must be YAML, JSON, or TOML files (using the `.yml`, `.yaml`, `.json`, or `.toml` extension). The data will be accessible as a `map` in the `.Site.Data` variable. ## Data Files in Themes @@ -250,4 +250,4 @@ If you change any local file and the LiveReload is triggered, Hugo will read the [toml]: https://github.com/toml-lang/toml [variadic]: http://en.wikipedia.org/wiki/Variadic_function [vars]: /variables/ -[yaml]: http://yaml.org/spec/ \ No newline at end of file +[yaml]: http://yaml.org/spec/