You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automatic creation of a PDF file name when the pdf name is not transmitted in the command line.
The name of the PDF in the command line would become optional.
The name of the PDF file could be the date and time of generation.
Example :
use chrono::{DateTime, Local};
let now: DateTime = Local::now();
filename = now.format("%Y-%m-%dT%H:%M:%S").to_string();
The text was updated successfully, but these errors were encountered:
Automatic creation of a PDF file name when the pdf name is not transmitted in the command line.
The name of the PDF in the command line would become optional.
The name of the PDF file could be the date and time of generation.
Example :
use chrono::{DateTime, Local};
let now: DateTime = Local::now();
filename = now.format("%Y-%m-%dT%H:%M:%S").to_string();
The text was updated successfully, but these errors were encountered: