diff options
| author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-10-10 16:33:57 +1300 |
|---|---|---|
| committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-10-10 16:33:57 +1300 |
| commit | 0848adc13790e276c6580c2b19042216a2b36067 (patch) | |
| tree | 5c8d59517f372a8074943912c2af492fb7fae918 | |
| parent | 36a653e04195503ff05121c72f8a105527d8a921 (diff) | |
| download | toaster-0848adc13790e276c6580c2b19042216a2b36067.zip | |
Change comments
| -rw-r--r-- | src/collect_files.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/collect_files.rs b/src/collect_files.rs index ccdfc49..315a17e 100644 --- a/src/collect_files.rs +++ b/src/collect_files.rs @@ -19,8 +19,8 @@ pub struct Website { pub struct Page { pub name: String, // Display name of this page - pub name_url: String, // URL name for this page, no extension - pub full_url: String, // Full URL for this page, no extension + pub name_url: String, // Safe URL name, no extension + pub full_url: String, // Safe full URL, no extension pub parents: Vec<String>, // Parent directory components, unsafe pub parent_url: String, // Base URL for links in this page pub source_path: PathBuf, // Absolute path to source file |
