After activating the DWQA Markdown, the Markdown will be automatically enabled at the editor front-end appearance of the DW Question & Answer. You can use the Markdown at DW question and answer section. Below is the instruction about using Markdown.

dwqa-markdown-frontend

Headers

# header 1
## header 2
###### header 6

Emphasis

*This text will be italic*
**This text will be bold**

Lists

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Images

Format: ![Alt Text](url)
Example: ![GitHub Logo](/images/logo.png)

Links

Format: [Alt Text](url)
Example: [click here](http://github.com)

Blockquotes

This an example of a blockquote:
> Design is not just what it looks like and feels like. Design is how it works.

Inline Code

`Enter code snippet here`

Code block

```
javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```