pub fn parse_notes_section(input: &str) -> IResult<&str, Vec<Note>>Expand description
Parses a section of notes from the input string.
ยงExample
use idf_parser::notes::parse_notes_section;
let input = ".NOTES
3500.0 3300.0 75.0 2500.0 \"This component rotated 14 degrees\"
400.0 4400.0 75.0 3200.0 \"Component height limited by enclosure latch\"
.END_NOTES";
let (_remaining, notes) = parse_notes_section(input).unwrap();
assert_eq!(notes.len(), 2);