31.1.7 Wiki Format

When editing or defining an advisor, you can enter text in Wiki format in the Problem Description, Advice, Recommended Action, and Links and Further Reading text boxes. You can format and highlight text and add hyperlinks, using the notation listed in the following table.

Table 31.1 Formatting with Wiki Markup

Markup Description

__bold__

Boldface text

~~italic~~

Italicize text

\\

Create a line break

\\ \\

Create a double line break

\\\\G

Create a double line break

*item 1

Create a bulleted list item

#item 1

Create a numbered list item

\_

Use the ‘\’ to escape special characters

'{'moreInfo:name|url'}'

Create a hyperlink


For example, the following Wiki text:

Replication is a __very nice feature__ of MySQL.  Replication can be very
useful for solving problems in the following areas:
* Data Distribution
* Load Balancing
* Backup and Recovery
You can check replication status and start a slave using the following
commands: SHOW SLAVE STATUS \\\\G\\START SLAVE; '{'moreInfo:MySQL Manual: Replication
      FAQ|http://dev.mysql.com/doc/refman/en/faqs-replication.html'}'

is translated into the following HTML markup:

Replication is a <b>very nice feature</b> of MySQL.  Replication can be very
useful for solving problems in the following areas:
<ul>
  <li>Data distribution</li>
  <li>Load Balancing</li>
  <li>Backup and recovery</li>
</ul>You can check replication status and start a slave with the following
commands: SHOW SLAVE STATUS \G;<br/>START SLAVE;
<a href="/doc/refman/en/faqs-replication.html"
  target="_blank" >MySQL Manual: Replication FAQ</a>