From ec1acb610fc8664b86065c0522f3a0c7ad9601e2 Mon Sep 17 00:00:00 2001 From: "Mark Tyers (aa7401)" Date: Thu, 8 Jul 2021 10:44:40 +0100 Subject: [PATCH] Clarified the meaning of formatted text. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 83c11e6..4f17b97 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,11 @@ This repository contains a list of project topics linked to your module assessment. Please check the assignment brief to identify which topic you are required to attempt. Each of the projects contains a list of features of increasing complexity. The topics are mapped to the grading rubric. Note that you may not need to complete all the features (check the grading rubric). + +## Notes + +If the requirements specify the ability to input **multi-line formatted text** this may be implemented in any of the following ways: + +- a large text area that includes formatting buttons allowing the user to format the text by selecting it and clicking these buttons. +- A large text area where the user can select text which pops up a formatting menu (as used on smartphone interfaces). +- A large text area where the user can use markdown syntax to format their text. This needs to include a live preview area (see the StackOverflow editor as an example).