diff --git a/docs/config.md b/docs/config.md index 6ab4f38c0..a85f00d5b 100644 --- a/docs/config.md +++ b/docs/config.md @@ -116,7 +116,7 @@ An array containing pages and sections. If not specified, it defaults to all Mar Both pages and sections have a **name**, which typically corresponds to the page’s title. The name gets displayed in the sidebar. Sections are used to group related pages; each section must specify an array of **pages**. (Sections can only contain pages; nested sections are not currently supported.) -Clicking on a page in the sidebar navigates to the corresponding **path**, which should start with a leading slash and be relative to the root; the path can also be specified as a full URL to navigate to an external site. A section may specify a **path** to navigate to when the section header is clicked; if a section does not specify a **path**, then clicking the section header toggles the section (if **collapsible**; see below). +Clicking on a page in the sidebar navigates to the corresponding **path**, which should start with a leading slash and be relative to the root; the path can also be specified as a full URL to navigate to an external site. A section may specify a **path** to navigate to when the section header is clicked; if a section does not specify a **path**, then clicking the section header toggles the section (if **collapsible**; see below). For example, here **pages** specifies two sections and a total of five pages: @@ -145,7 +145,7 @@ export default { Sections may be **collapsible**. If the **open** option is set, the **collapsible** option defaults to true; otherwise it defaults to false. If the section is not collapsible, the **open** option is ignored and the section is always open; otherwise, the **open** option defaults to true. A section will open automatically if the current page belongs to that section. -Pages and sections may also have a **pager** field which specifies the name of the page group; this determines which pages are linked to via the previous and next pager buttons. If the **pager** field is not specified, it defaults the current section’s **pager** field, or to `main` for top-level pages and sections. (The home page is always in the `main` pager group.) The **pager** field can be also set to `null` to disable the pager on a specific page or section, causing adjacent pages to skip the page. +Pages and sections may also have a **pager** field which specifies the name of the page group; this determines which pages are linked to via the previous and next pager buttons. If the **pager** field is not specified, it defaults the current section’s **pager** field, or to `main` for top-level pages and sections. (The home page is always in the `main` pager group.) The **pager** field can be also set to `null` to disable the pager on a specific page or section, causing adjacent pages to skip the page. Projects can have “unlisted” pages that are not referenced in **pages**. These pages can still be linked from other pages or visited directly, but they won’t be listed in the sidebar or linked to via the previous & next pager links. diff --git a/docs/getting-started.md b/docs/getting-started.md index 5221f14aa..db831530b 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -160,7 +160,7 @@ Or with Yarn: You should see something like this: -
Observable Framework v1.7.1
+
Observable Framework v1.8.0
 ↳ http://127.0.0.1:3000/
diff --git a/package.json b/package.json index 46fbe4c97..df404282c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@observablehq/framework", "license": "ISC", - "version": "1.7.1", + "version": "1.8.0", "type": "module", "publishConfig": { "access": "public"