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
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
//! Handle denote name scheme.
//!
//! Core of this crate is the `Denote` struct. Create it, fill in the fields as an option and
//! convert it in to string to get formatted string in denote name scheme.
//!
//! # Declaration
//!
//! I recommend declaring denote-lib in Cargo.toml like this:
//!
//! ```toml
//! [dependencies]
//! denote = { package = "zeroten-denote", version = "0.1.1" }
//! ```
//!
//! # Usage
//!
//! ```
//! use zeroten_denote::{Denote, Identifier, Signature, Extension, Title};
//!
//! // You can use something like `Identifier::now()` but for example, we will take an already
//! // formatted identifier
//! let identifier = Identifier::parse("20240912T13015412").unwrap();
//! let denote = Denote::new(identifier)
//! .title(Title::parse("Some title").unwrap())
//! .signature(Signature::parse("1b").unwrap())
//! .extension(Extension::new("txt").unwrap())
//! .to_string();
//! assert_eq!(denote.to_string(), "20240912T13015412==1b--some-title.txt");
//! ```
pub use Denote;
pub use Extension;
pub use Identifier;
pub use Keywords;
pub use Signature;
pub use Title;