Moodle Plugins directory: Superscript/subscript editor | Moodle.org
Superscript/subscript editor
Text editors ::: editor_ousupsub
Maintained by
Tim Hunt,
Mahmoud Kassaei,
Anupama Sarjoshi
This is not a general purpose editor. Instead it is for inputting text with just superscripts and subscripts in question types.
Latest release:
122 sites
25 downloads
6 fans
Current versions available: 3
This is a simple text input widget that lets users edit one line of input with superscripts and subscripts, for use with question types like https://moodle.org/plugins/qtype_pmatch or https://moodle.org/plugins/qtype_varnumericset.
Users can type input that is plain text, with the addition of just the HTML tags <sup> and <sub>. In a particular case, either sup or sub or both may be allowed. For example in a question about for scientific notation (3x10<sup>8</sup>) only superscripts would be allowed. As well as the toolbar buttons, the up and down arrow keys are keyboard shortcuts for switching in and out of sup and sub mode.
It turns out that web browsers make a big mess out of HTML input, so lots of cleaning is applied to the student's response. For example 2<sup>1</sup><sup>6</sup> -> 2<sup>16</sup>. Also, nested superscripts and subscripts are not allowed.
Useful links
Contributors
Tim Hunt (Lead maintainer)
Mahmoud Kassaei: Developer
Anupama Sarjoshi: Developer
Chris Nelson: Product owner
Please login to view contributors details and/or to contact them
Oh! Sorry! I just spotted that I need to update the question type plugins to use the new editor. This bit is wrong: https://github.com/moodleou/moodle-qtype_pmatch/blob/c24fe958b8c5f7bfac767c4575483696837223ae/renderer.php#L66. I will try to do that tomorrow.