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 Textile formatting will not be applied to text in a code block.

Desired Result Textile

Heading 1

Heading 2

Heading 3

h1. Heading 1

h2. Heading 2

h3. 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 bolded.
This is _italicized_.
This is *bolded*.
  • bulleted item 1
  • bulleted item 2
  1. numbered item 1
  2. numbered item 2
* bulleted item 1
* bulleted item 2

# numbered item 1
# numbered item 2
link text

<%= img '/images/stack/rss.png', alt: "alt text" %>
"link text":https://unfuddle.com/

!/images/rss.png!
Blockquoted Text
bq. Blockquoted Text
/* Code Block */
#include <stdio.h>
#include <stdlib.h>

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

  int main() 
</code>
</pre>

Visit https://redcloth.org/hobix.com/textile/ to learn more.