Style Menu

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

highlight

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

no-wrap-span

Example

Without No-Wrap Span

without-no-wrap-span-example

With No-Wrap Span

without-wrap-span-example

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

code-span

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>