- Escape HTML characters properly
- Fix an unnecessary O(n^2)ism
- Rare events appear as end-of-line notes rather than mostly-empty columns
+- Double blank line for small break between rows
## [0.2.1] - 2024-08-20
- A little more space up top
InputLine::Blank if self.row.is_some() => {
return Ok(std::mem::take(&mut self.row).map(Rowlike::Row)).transpose()
}
- InputLine::Blank => {}
+ InputLine::Blank => return Some(Ok(Rowlike::Spacer)),
InputLine::Entry(col, instance) => match &mut self.row {
None => {
return Some(Err(std::io::Error::other(format!(
label: "foo".to_owned(),
entries: HashMap::new(),
}),
+ Rowlike::Spacer,
Rowlike::Row(Row {
label: "bar".to_owned(),
entries: HashMap::new(),