From 53363c69ab3a01bf2d79068ca0ec552a0f0a7061 Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Thu, 19 Sep 2019 14:53:52 -0500 Subject: [PATCH] Corrected blockcode formatting in assignment document --- .../10-pair-Course_Registration_System.md | 43 +++++++++---------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/assignment/10-pair-Course_Registration_System.md b/assignment/10-pair-Course_Registration_System.md index 5d9fe60..2dceae1 100644 --- a/assignment/10-pair-Course_Registration_System.md +++ b/assignment/10-pair-Course_Registration_System.md @@ -1,4 +1,4 @@ -# Car Rental System +# Course Registration System - Assignment Due: September 27, 2019 at 9:30am - Peer Assessment Due: September 27, 2019 at 11:59pm @@ -289,34 +289,31 @@ architecture. These should be opaque layers. See Kung pp148-150. - Data display requirements: 10. When a student's data is displayed, it will be: - - ``` - Name: StudentName Major: StudentMajor - Courses Completed: - Course1ID Course2ID Course3ID Course4ID - Course5ID Course6ID Course7ID Course8ID - ... - Registered Courses: - Course1ID Course1information - Course2ID Course2information - ... - ``` -<!-- Why isn't pandoc placing </code></pre> here? --> - - Completed courses will only have their names shown. Registered - courses will be shown as described in the next requirement. + ``` + Name: StudentName Major: StudentMajor + Courses Completed: + Course1ID Course2ID Course3ID Course4ID + Course5ID Course6ID Course7ID Course8ID + ... + Registered Courses: + Course1ID Course1information + Course2ID Course2information + ... + ``` + Completed courses will only have their names shown. Registered courses will + be shown as described in the next requirement. 11. When a course's data is displayed, it will be in these forms: 1. Classroom course - ``` - CourseID CourseName Semester Section Room MeetingTime NumberOfStudentsRegistered NumberOfAvailableSeats - ``` + ``` + CourseID CourseName Semester Section Room MeetingTime NumberOfStudentsRegistered NumberOfAvailableSeats + ``` 1. Online course - ``` - CourseID CourseName Semester URL - ``` + ``` + CourseID CourseName Semester URL + ``` **Note**: Use the Template Pattern in the code to display course data. -- GitLab