Skip to content

Commit 4330051

Browse files
committed
Refine readme formatting
1 parent 36b44bf commit 4330051

File tree

1 file changed

+23
-13
lines changed

1 file changed

+23
-13
lines changed

readme.md

+23-13
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,17 @@ gulp.task('default', function() {
3333

3434
## Options
3535

36-
### `pages`
36+
### `root`
3737

38-
A string containing the root folder all pages live in. This option does not pull in the files themselves for processing—that's what `gulp.src()` is for. This setting tells Panini what the common root of your site's pages is.
38+
**Type:** `String`
39+
40+
Path to the root folder all pages live in. This option does not pull in the files themselves for processing—that's what `gulp.src()` is for. This setting tells Panini what the common root of your site's pages is.
3941

4042
### `layouts`
4143

42-
A string containing the path to a directory containing layouts. Layout files can have the extension `.html`, `.hbs`, or `.handlebars`. One layout must be named `default`. To use a layout other than the default on a specific page, override it in the Front Matter on that page.
44+
**Type:** `String`
45+
46+
Path to a folder containing layouts. Layout files can have the extension `.html`, `.hbs`, or `.handlebars`. One layout must be named `default`. To use a layout other than the default on a specific page, override it in the Front Matter on that page.
4347

4448
```html
4549
---
@@ -59,24 +63,20 @@ All layouts have a special Handlebars partial called `body` which contains the c
5963

6064
### `partials`
6165

62-
A string containing a path to a directory containing HTML partials. Partial files can have the extension `.html`, `.hbs`, or `.handlebars`. Each will be registered as a Handlebars partial which can be accessed using the name of the file. (The path to the file doesn't matter—only the name of the file itself is used.)
66+
**Type:** `String`
67+
68+
Path to a folder containing HTML partials. Partial files can have the extension `.html`, `.hbs`, or `.handlebars`. Each will be registered as a Handlebars partial which can be accessed using the name of the file. (The path to the file doesn't matter—only the name of the file itself is used.)
6369

6470
```html
6571
<!-- Renders partials/header.html -->
6672
{{> header}}
6773
```
6874

69-
### `data`
70-
71-
A string containing a path to a directory containing external data, which will be passed in to every page. Data can be formatted as JSON (`.json`) or YAML (`.yml`). Within a template, the data is stored within a variable with the same name as the file it came from.
72-
73-
Data can also be inserted into the page itself with a Front Matter template at the top of the file.
74-
75-
Lastly, the reserved `page` variable is added to every page template as it renders. It contains the name of the page being rendered, without the extension.
76-
7775
### `helpers`
7876

79-
A string containing a path to a directory containing Handlebars helpers. Handlebars helpers are `.js` files which export a function via `module.exports`. The name used to register the helper is the same as the name of the file.
77+
**Type:** `String`
78+
79+
Path to a folder containing Handlebars helpers. Handlebars helpers are `.js` files which export a function via `module.exports`. The name used to register the helper is the same as the name of the file.
8080

8181
For example, a file named `markdown.js` that exports this function would add a Handlebars helper called `{{markdown}}`.
8282

@@ -87,3 +87,13 @@ module.exports = function(text) {
8787
return marked(text);
8888
}
8989
```
90+
91+
### `data`
92+
93+
**Type:** `String`
94+
95+
Path to a folder containing external data, which will be passed in to every page. Data can be formatted as JSON (`.json`) or YAML (`.yml`). Within a template, the data is stored within a variable with the same name as the file it came from.
96+
97+
Data can also be inserted into the page itself with a Front Matter template at the top of the file.
98+
99+
Lastly, the reserved `page` variable is added to every page template as it renders. It contains the name of the page being rendered, without the extension.

0 commit comments

Comments
 (0)