|
26 | 26 | "default": "blog" |
27 | 27 | }, |
28 | 28 | "blog_toc": { |
29 | | - "title": "Blog table of contents", |
| 29 | + "title": "Table of contents", |
30 | 30 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.blog_toc", |
31 | 31 | "type": "boolean", |
32 | 32 | "default": false |
33 | 33 | }, |
34 | 34 | "post_dir": { |
35 | | - "title": "Blog posts directory", |
| 35 | + "title": "Post directory", |
36 | 36 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_dir", |
37 | 37 | "type": "string", |
38 | 38 | "default": "\"{blog\\}/posts\"" |
|
210 | 210 | ] |
211 | 211 | }, |
212 | 212 | "archive_pagination": { |
213 | | - "title": "Pagination for archive pages", |
| 213 | + "title": "Pagination for archive", |
214 | 214 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_pagination", |
215 | 215 | "type": "boolean", |
216 | 216 | "default": true |
217 | 217 | }, |
218 | 218 | "archive_pagination_per_page": { |
219 | | - "title": "Posts per page for archive pages", |
| 219 | + "title": "Posts per page for archive", |
220 | 220 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_pagination_per_page", |
221 | 221 | "type": "number", |
222 | 222 | "default": 10 |
223 | 223 | }, |
224 | 224 | "archive_toc": { |
225 | | - "title": "Archive table of contents", |
| 225 | + "title": "Table of contents for archive", |
226 | 226 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_toc", |
227 | 227 | "type": "boolean", |
228 | 228 | "default": false |
|
287 | 287 | "default": false |
288 | 288 | }, |
289 | 289 | "categories_allowed": { |
290 | | - "title": "Categories allowed", |
| 290 | + "title": "Allowed categories", |
291 | 291 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_allowed", |
292 | 292 | "type": "array", |
293 | 293 | "items": { |
|
309 | 309 | "default": 10 |
310 | 310 | }, |
311 | 311 | "categories_toc": { |
312 | | - "title": "Categories table of contents", |
| 312 | + "title": "Table of contents for categories", |
313 | 313 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_toc", |
314 | 314 | "type": "boolean", |
315 | 315 | "default": false |
316 | 316 | }, |
| 317 | + "authors": { |
| 318 | + "title": "Author info", |
| 319 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors", |
| 320 | + "type": "boolean", |
| 321 | + "default": true |
| 322 | + }, |
| 323 | + "authors_file": { |
| 324 | + "title": "Authors file", |
| 325 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_file", |
| 326 | + "type": "string", |
| 327 | + "default": "\"{blog}/.authors.yml\"" |
| 328 | + }, |
| 329 | + "authors_profiles": { |
| 330 | + "title": "Author profiles", |
| 331 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles", |
| 332 | + "type": "boolean", |
| 333 | + "default": false |
| 334 | + }, |
| 335 | + "authors_profiles_name": { |
| 336 | + "title": "Authors profiles name", |
| 337 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_name", |
| 338 | + "type": "string", |
| 339 | + "default": "Authors" |
| 340 | + }, |
| 341 | + "authors_profiles_url_format": { |
| 342 | + "title": "Format string for author profile URLs", |
| 343 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_url_format", |
| 344 | + "oneOf": [ |
| 345 | + { |
| 346 | + "enum": [ |
| 347 | + "\"author/{slug}\"", |
| 348 | + "\"{slug}\"" |
| 349 | + ] |
| 350 | + }, |
| 351 | + { |
| 352 | + "type": "string" |
| 353 | + } |
| 354 | + ] |
| 355 | + }, |
| 356 | + "authors_profiles_pagination": { |
| 357 | + "title": "Pagination for author profiles", |
| 358 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_pagination", |
| 359 | + "type": "boolean", |
| 360 | + "default": true |
| 361 | + }, |
| 362 | + "authors_profiles_pagination_per_page": { |
| 363 | + "title": "Posts per page for author profiles", |
| 364 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_pagination_per_page", |
| 365 | + "type": "number", |
| 366 | + "default": 10 |
| 367 | + }, |
| 368 | + "authors_profiles_toc": { |
| 369 | + "title": "Table of contents for author profiles", |
| 370 | + "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_toc", |
| 371 | + "type": "boolean", |
| 372 | + "default": false |
| 373 | + }, |
317 | 374 | "pagination": { |
318 | 375 | "title": "Pagination", |
319 | 376 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination", |
|
364 | 421 | "type": "boolean", |
365 | 422 | "default": false |
366 | 423 | }, |
367 | | - "authors": { |
368 | | - "title": "Author info", |
369 | | - "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors", |
370 | | - "type": "boolean", |
371 | | - "default": true |
372 | | - }, |
373 | | - "authors_file": { |
374 | | - "title": "Authors file", |
375 | | - "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_file", |
376 | | - "type": "string", |
377 | | - "default": "\"{blog\\}/.authors.yml\"" |
378 | | - }, |
379 | 424 | "draft": { |
380 | 425 | "title": "Render posts marked as drafts", |
381 | 426 | "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.draft", |
|
0 commit comments