The "Use Markdown" checkbox allows you to do simple formatting in a plain text format of the knowledge base description without having to learn HTML.
Description from http://daringfireball.net/projects/markdown/
Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
Thus, “Markdown” is two things: (1) a plain text formatting syntax; and (2) a software tool, written in Perl, that converts the plain text formatting to HTML. See the link above for details pertaining to Markdown’s formatting syntax.
The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.
Here are some sample formatting that will occur if Markdown is turned on.
| *normal emphasis with asterisks* |
normal emphasis with asterisks |
| _normal emphasis with underscore_ |
normal emphasis with underscore |
| **strong emphasis with asterisks** |
strong emphasis with asterisks |
| __strong emphasis with underscore__ |
strong emphasis with underscore |
| This is some text *emphasized* with asterisks. |
This is some text emphasized with asterisks. |
Header 1
======== |
Header 1
|
Header 2
-------- |
Header 2
|
| # Header 1 # |
Header 1
|
| ## Header 2 ## |
Header 2
|
| ###### Header at level 6 |
Header at level 6
|
* Ingredients - Milk - Eggs * Recipies 1. Pancake 2. Waffle
|
- Ingredients
- Recipies
- Pancake
- Waffle
|