Highlight
If you select a word in a passage, and select “highlight” drop the Styles menu dropdow, the selection will show as highlighted in yellow.
Presentation
HTML
<p> ..portion of the<mark> exam determines how well you can write your own code. </mark>Although there are… </p>
No Wrap Span
The “no wrap span,” creates a line that won’t break. This is useful for a math equation that may break in the middle due to a soft return. Using the “no wrap span” ensures that the selected text will remain together on one line.
Presentation
Example
Without No-Wrap Span
With No-Wrap Span
HTML
<span style=“white-space:nowrap;”> <em>h</em> = 3.4<em>s</em> </span>
Code Span
Using a monospaced font or color, the code span applies a span at class level to the selected text.
Presentation
HTML
<span class="code"> Last bullet point: <li> the <span class=“code”>multiply</span> method that takes another <span class=“code”>ComplexNumber</span> object as a parameter, multiplies with <span class=“code”>this ComplexNumber</span> object as described above, and returns the solution as a <span class=“code”>ComplexNumber</span> object </li>