Skip to content

Commit

Permalink
Merge pull request #597 from render-engine/fix-docs
Browse files Browse the repository at this point in the history
remove backslash
  • Loading branch information
john0isaac committed Feb 18, 2024
2 parents f93f1b1 + 080796a commit 68cd8fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/docs/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ When you create a page, you specify variables passed into rendering template.

| Name | Type | Description |
| --- | --- | --- |
| `content_path` | `str \| None` |The path to the file that will be used to generate the Page's `content`. |
| `extension` | `str \| None` |The suffix to use for the page. Defaults to `.html`. |
| `engine` | `str \| None` | If present, the engine to use for rendering the page. **This is normally not set and the `Site` 's engine will be used.** |
| `reference` | `str \| None` |Used to determine how to reference the page in the `Site`'s route_list. Defaults to `slug`. |
| `routes` | `str \| None` |The routes to use for the page. Defaults to `["./"]`. |
| `template` | `str \| None` |The template used to render the page. If not provided, the `Site`'s `content`will be used. |
| `content_path` | `str | None` |The path to the file that will be used to generate the Page's `content`. |
| `extension` | `str | None` |The suffix to use for the page. Defaults to `.html`. |
| `engine` | `str | None` | If present, the engine to use for rendering the page. **This is normally not set and the `Site` 's engine will be used.** |
| `reference` | `str | None` |Used to determine how to reference the page in the `Site`'s route_list. Defaults to `slug`. |
| `routes` | `str | None` |The routes to use for the page. Defaults to `["./"]`. |
| `template` | `str | None` |The template used to render the page. If not provided, the `Site`'s `content`will be used. |
| `Parser` | `type[BasePageParser]` |The parser to generate the page's `raw_content`. Defaults to `BasePageParser`. |
| `title` | `str` |The title of the page. Defaults to the class name. |

0 comments on commit 68cd8fe

Please sign in to comment.