-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlayout.json
More file actions
72 lines (72 loc) · 3.34 KB
/
Copy pathlayout.json
File metadata and controls
72 lines (72 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"schema_version": 2,
"release": "1.9.2",
"site_title": "StringKit-FP documentation",
"description": "Practical StringKit-FP documentation for Free Pascal and Lazarus.",
"required_pages": [
"index.md",
"start/index.md",
"start/beginner-guide.md",
"start/recipes.md",
"start/cheat-sheet.md",
"guides/static-vs-helper.md",
"guides/case-conversion.md",
"guides/validation.md",
"guides/encoding.md",
"guides/parsing-and-try-apis.md",
"guides/fuzzy-matching.md",
"guides/text-analysis.md",
"reference/api-overview.md",
"reference/contracts-and-limitations.md",
"reference/helper-feature-flags.md",
"reference/helper-coverage.md"
],
"navigation": [
{ "title": "Getting Started", "pages": [
{ "path": "index.md", "title": "Introduction" },
{ "path": "start/index.md", "title": "Start Here" },
{ "path": "start/beginner-guide.md", "title": "Beginner Guide" },
{ "path": "start/recipes.md", "title": "Recipes" },
{ "path": "start/cheat-sheet.md", "title": "Cheat Sheet" }
] },
{ "title": "Guides", "pages": [
{ "path": "guides/static-vs-helper.md", "title": "Static vs Helper" },
{ "path": "guides/case-conversion.md", "title": "Case Conversion" },
{ "path": "guides/validation.md", "title": "Validation" },
{ "path": "guides/encoding.md", "title": "Encoding" },
{ "path": "guides/parsing-and-try-apis.md", "title": "Parsing & Try APIs" },
{ "path": "guides/fuzzy-matching.md", "title": "Fuzzy Matching" },
{ "path": "guides/text-analysis.md", "title": "Text Analysis" }
] },
{ "title": "Reference", "pages": [
{ "path": "reference/api-overview.md", "title": "API Overview" },
{ "path": "reference/contracts-and-limitations.md", "title": "Contracts & Limitations" },
{ "path": "reference/helper-feature-flags.md", "title": "Helper Feature Flags" },
{ "path": "reference/helper-coverage.md", "title": "Helper Coverage" }
] }
],
"project": [
{ "title": "GitHub repository", "url": "https://github.com/ikelaiah/stringkit-fp" },
{ "title": "Changelog", "project_path": "CHANGELOG.md" },
{ "title": "Roadmap", "project_path": "ROADMAP.md" },
{ "title": "Contributing", "project_path": "CONTRIBUTING.md" }
],
"homepage": {
"tagline": "A modern string toolkit for Free Pascal and Lazarus.",
"banner": {
"project_path": "assets/stringkit-fp-banner.svg",
"alt": "StringKit-FP yarn-inspired banner"
},
"actions": [
{ "label": "Get Started", "path": "start/beginner-guide.md" },
{ "label": "Browse Recipes", "path": "start/recipes.md" },
{ "label": "API Reference", "path": "reference/api-overview.md" }
],
"cards": [
{ "eyebrow": "Get Started", "title": "Beginner Guide", "description": "Learn StringKit-FP from your first call to useful text processing.", "path": "start/beginner-guide.md" },
{ "eyebrow": "Recipes", "title": "Common Tasks", "description": "Copy tested, working Pascal examples.", "path": "start/recipes.md" },
{ "eyebrow": "Cheat Sheet", "title": "Quick Lookup", "description": "Find the operation you need quickly.", "path": "start/cheat-sheet.md" },
{ "eyebrow": "API Reference", "title": "Public API", "description": "Browse StringKit's static and helper interfaces.", "path": "reference/api-overview.md" }
]
}
}