You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ One of the big attractions of Notion for large documentation projects is that yo
81
81
82
82
## Slugs
83
83
84
-
By default, pages will be given a slug based on the Notion id. For a human-readable URL, add a notion property named `Slug` and enter values in there.
84
+
By default, pages will be given a slug based on the Notion id. For a human-readable URL, add a notion property named `Slug`to your database pages and enter a value in there that will work well in a URL. That is, no spaces, ?, #, /, etc.
@@ -103,7 +126,7 @@ async function getPagesRecursively(
103
126
error(
104
127
`Skipping "${pageInTheOutline.nameOrTitle}" and its children. docu-notion does not support pages that are both levels and have content at the same time.`
`Warning: The page "${pageInTheOutline.nameOrTitle}" is in the outline but appears to not have content, links to other pages, or child pages. It will be skipped.`
144
167
)
145
168
);
169
+
++counts.skipped_because_empty;
146
170
}
147
171
}
148
172
@@ -155,10 +179,21 @@ async function outputPage(page: NotionPage) {
155
179
verbose(
156
180
`Skipping page because status is not '${options.statusTag}': ${page.nameOrTitle}`
0 commit comments