Documentation Archive

Developer

Markup Formatting Reference

On This Page

Strong (Bold)

Render a span of text using the strong font face.

Works with:

  • ✓ Playgrounds

  • ✓ Symbol documentation

Syntax

Add strong formatting with two asterisks (**) or two underscores (__) before the first character of the span and after the last character of the span. The first and last characters cannot be spaces. Do not mix asterisks and underscores for the same element.

  • **string**
  • __string__

Playground Example

  1. /*:
  2.  A **strong * (asterisk)** is on this line.
  3.  __A strong line__.
  4. */
image: ../Art/MFR_strong_eg_2x.png

Quick Help Example

  1. /**
  2.  An example of using *strong*
  3.  A **strong * (asterisk)** is on this line.
  4.  __A strong line__.
  5. */
image: ../Art/MFR_symbol_strong_2x.png