summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/SUMMARY.md3
-rw-r--r--docs/variables.md43
2 files changed, 46 insertions, 0 deletions
diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md
index d899073..2816186 100644
--- a/docs/SUMMARY.md
+++ b/docs/SUMMARY.md
@@ -2,3 +2,6 @@
* [About this document](README.md)
* [Content References](conrefs.md)
+* [Variables](variables.md)
+ * [Filters](filters.md)
+
diff --git a/docs/variables.md b/docs/variables.md
new file mode 100644
index 0000000..35c7dd7
--- /dev/null
+++ b/docs/variables.md
@@ -0,0 +1,43 @@
+# Variables
+
+The following is a reference of the available data during book's parsing and theme generation.
+
+### Global Variables
+
+| Variable | Description |
+| -------- | ----------- |
+| `book` | Bookwide information + configuration settings from `book.json`. See below for details. |
+| `gitbook` | GitBook specific information |
+| `page` | Current page specific information |
+| `file` | File associated with the current page specific information |
+
+### Book Variables
+
+| Variable | Description |
+| -------- | ----------- |
+| `book.[CONFIGURATION_DATA]` | All the `variables` set via the `book.json` are available through the book variable. |
+
+### GitBook Variables
+
+| Variable | Description |
+| -------- | ----------- |
+| `gitbook.version` | Version of GitBook used to generate the book |
+
+### File Variables
+
+| Variable | Description |
+| -------- | ----------- |
+| `file.path` | The path to the raw page |
+| `file.mtime` | Modified Time, Time when file data last modified |
+
+#### Page Variables
+
+| Variable | Description |
+| -------- | ----------- |
+| `page.title` | Title of the page |
+| `page.previous` | Previous page in the Table of Contents (can be `null`) |
+| `page.next` | Next page in the Table of Contents (can be `null`) |
+
+
+
+