We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b715f5 commit 59edf76Copy full SHA for 59edf76
src/main.rs
@@ -689,9 +689,11 @@ fn process_event(event: &Event, mut state: &mut State) -> Step {
689
if let Some(ref serial) = table.columns[i].serial {
690
if table.columns[i].value.borrow().is_empty() {
691
let id = serial.get()+1;
692
- table.columns[i].value.borrow_mut().push_str(&id.to_string());
+ let idstr = id.to_string();
693
+ table.columns[i].value.borrow_mut().push_str(&idstr);
694
+ table.lastid.borrow_mut().push_str(&idstr);
695
serial.set(id);
- return Step::Repeat; // Continue the repeat loop because another column may also match the current path
696
+ continue;
697
}
698
699
// Handle 'subtable' case (the 'cols' entry has 'cols' of its own)
0 commit comments