diff options
Diffstat (limited to 'src')
| -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 |
