We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
example:
filters:
The text was updated successfully, but these errors were encountered:
Determine "sequence" requirements:
Then we call it a "sequence", and render enough columns for the longest sequence option.
Sorry, something went wrong.
Restructure formatter output as a custom struct, instead of (str, str) tuple:
Record { title: String subtitle: Option(string) status: DpStatus { Done, Waived, NeedsMoreItems, DoneThisTerm, DoneFuture, Empty, Exception } cells: Vec<Cell> } enum Cell { Text(String), DoneCourses(Vec<Course>), InProgressCourses(Vec<Course>), }
Then we'd emit
Record { title: "req 1" subtitle: "status" status: .NeedsMoreItems cells: vec![ .Text("1 remaining"), .DoneCourses(done_courses), .InProgressCourses(ip_courses), ] }
Which would make this table:
hawkrives
No branches or pull requests
example:
filters:
The text was updated successfully, but these errors were encountered: