From 4cbee55ce58a5304c6d47f3a7cda515d3bcae30f Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Date: Mon, 8 May 2023 02:05:45 +0100 Subject: [PATCH] Add the list of the currently implemented extra tags to the `replace_extra_tags` documentation. --- src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.rs b/src/main.rs index aa385ff..8073ade 100644 --- a/src/main.rs +++ b/src/main.rs @@ -69,6 +69,11 @@ fn get_file_list(path: &str, wildcard: &str) -> Vec { /// Replaces extra tags in the `new file_name` with corresponding values from the `original_file_name`. /// +/// Extra tags: +/// * {full_name} - file name with extension +/// * {name} - file name without extension +/// * {ext} - extension +/// /// # Arguments /// /// * `original_file_name` - The original name of the file.