|
@@ -88,7 +88,7 @@ impl<'var> Pair<'var> {
|
|
|
let mut iter = self.value.split(';').peekable();
|
|
let mut iter = self.value.split(';').peekable();
|
|
|
|
|
|
|
|
while let Some(num) = iter.next() {
|
|
while let Some(num) = iter.next() {
|
|
|
- match num.trim_left_matches('0') {
|
|
|
|
|
|
|
+ match num.trim_start_matches('0') {
|
|
|
|
|
|
|
|
// Bold and italic
|
|
// Bold and italic
|
|
|
"1" => style = style.bold(),
|
|
"1" => style = style.bold(),
|