(terms: Vec<String>)
| 452 | route_path, |
| 453 | title, |
| 454 | area, |
| 455 | nav_group, |
| 456 | nav_order: 0, |
| 457 | is_history, |
| 458 | summary, |
| 459 | headings, |
| 460 | keywords, |
| 461 | markdown, |
| 462 | html, |
| 463 | search_text, |
| 464 | }); |
| 465 | Ok(()) |
| 466 | } |
| 467 | |
| 468 | fn is_history_page(collection: &str, slug: &str) -> bool { |
| 469 | collection == "docs" |
| 470 | && (slug.contains("audit") |
| 471 | || slug.contains("_design") |
| 472 | || slug.contains("_abi_") |