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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
//! Formatter policy configuration.
//!
//! Policy applies only to standalone variation positions whose selector state
//! remains ambiguous after sequence-specific cleanup. Standalone
//! keycap-character forms use the keycap domain of the same policy sets; ZWJ,
//! malformed-selector, and other fixed-cleanup cases are repaired before
//! policy is consulted.
//!
//! A policy is expressed with two [`VariationSet`] predicates:
//!
//! - `prefer_bare`: positions whose bare form is canonical when bare can
//! preserve the selected presentation
//! - `bare_as_text`: positions whose bare form should be interpreted as text
//! presentation, rather than emoji presentation
//!
//! The default policy uses [`variation_set::ASCII`] plus
//! [`variation_set::EMOJI_DEFAULTS`] for `prefer_bare` and
//! [`variation_set::ASCII`] plus [`variation_set::KEYCAP_CHARS`] for
//! `bare_as_text`. That keeps ASCII bare forms such as `#` canonical, removes
//! redundant selectors such as the `FE0E` in `#\u{FE0E}`, keeps emoji-default
//! bare forms such as `\u{2728}` canonical, resolves text-default bare forms
//! such as `\u{00A9}` to emoji presentation by inserting `FE0F`, and resolves
//! bare keycap-character forms such as `#\u{20E3}` to text presentation by
//! inserting `FE0E` before `U+20E3`.
//!
//! # Examples
//!
//! ```rust
//! use evfmt::{FormatResult, Policy, format_text};
//!
//! let policy = Policy::default();
//!
//! assert_eq!(format_text("#\u{FE0E}", &policy), FormatResult::Changed("#".into()));
//! assert_eq!(
//! format_text("\u{00A9}", &policy),
//! FormatResult::Changed("\u{00A9}\u{FE0F}".into())
//! );
//! ```
use crate;
/// Formatting policy for standalone variation positions.
///
/// The policy is base-indexed with an ordinary/keycap domain qualifier: when
/// policy is needed, `evfmt` uses the variation-sequence base character to
/// query either the ordinary or keycap domain of the `prefer_bare` and
/// `bare_as_text` sets. The pair of answers determines the canonical
/// replacement choices:
///
/// - in both sets: `FE0E` text presentation becomes bare, while bare stays bare
/// - only in `prefer_bare`: `FE0F` emoji presentation becomes bare, while bare
/// stays bare
/// - only in `bare_as_text`: bare becomes `FE0E` text presentation
/// - in neither set: bare becomes `FE0F` emoji presentation
///
/// Explicit selectors not described by those conversions are already
/// canonical for that standalone character, as long as they are sanctioned by
/// Unicode's variation-sequence data.
///
/// Use [`Policy::default`] for the command-line formatter's default behavior,
/// then override individual predicate sets with [`Policy::with_prefer_bare`]
/// and [`Policy::with_bare_as_text`].
///
/// # Examples
///
/// ```rust
/// use evfmt::{FormatResult, Policy, format_text, variation_set};
///
/// let policy = Policy::default();
///
/// assert_eq!(format_text("#\u{FE0E}", &policy), FormatResult::Changed("#".into()));
/// assert_eq!(
/// format_text("\u{00A9}", &policy),
/// FormatResult::Changed("\u{00A9}\u{FE0F}".into())
/// );
/// assert_eq!(format_text("\u{2728}", &policy), FormatResult::Unchanged);
///
/// let rights_marks =
/// variation_set::ASCII | variation_set::RIGHTS_MARKS;
/// let policy = Policy::default()
/// .with_prefer_bare(rights_marks)
/// .with_bare_as_text(rights_marks);
///
/// assert_eq!(format_text("\u{00A9}\u{FE0E}", &policy), FormatResult::Changed("\u{00A9}".into()));
/// ```
pub