Formatting Text Fields

It is simple to add bold, italics, headings, images and other elements to your text. Unfuddle allows administrators to choose between two simple, but powerful markup languages: Markdown and Textile. Full tutorials on Markdown and Textile can be found at their respective websites.

Please note that Markdown formatting will not be applied to text in a code block.

Desired Result Markdown

Heading 1

Heading 2

Heading 3

# Heading 1

## Heading 2

### Heading 3

Paragraphs are surrounded by blank lines. This is paragraph one.

This is paragraph two.

Paragraphs are surrounded by blank
lines. This is paragraph one.

This is paragraph two.
This is italicized.
This is italicized.
This is bolded.
This is bolded.
This is _italicized_.
This is *italicized*.
This is __bolded__.
This is **bolded**.
  • bulleted item 1
  • bulleted item 2

    with multiple paragraphs

  1. numbered item 1
  2. numbered item 2
* bulleted item 1
* bulleted item 2

  with multiple paragraphs

1. numbered item 1
1. numbered item 2
link text

alt text
[link text](https://unfuddle.com/)

![alt text](/images/rss.png)
Blockquoted Text
> Blockquoted Text
/* Code Block */
#include <stdio.h>
#include <stdlib.h>

int main() 
/* Code Block */
    #include <stdio.h>
    #include <stdlib.h>

    int main() 

(Four leading spaces on each line of code)

Visit the official Markdown site to learn more.