Skip to content

Instantly share code, notes, and snippets.

@solomonhawk
Forked from rbnrivera/Textile syntax
Last active July 29, 2020 14:40
Show Gist options
  • Save solomonhawk/b7a1ad9ce41e3827c46d0c3499652e1d to your computer and use it in GitHub Desktop.
Save solomonhawk/b7a1ad9ce41e3827c46d0c3499652e1d to your computer and use it in GitHub Desktop.
Textile syntax
Bold Text
*this is bold*
===========================
Italic text
_this is italic_
===========================
Links
"link text(title tooltip)":linkAddress
Example - "Assistly(Assistly's website)":http://www.assistly.com
===========================
Email Links
"link text(title tooltip)":mailto:someone@example.com
Example - "Support(Assistly Support)":mailto:support@assistly.com
===========================
Images
!imageurl(alt text)!
Example - !http://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pygoscelis_papua.jpg/250px-Pygoscelis_papua.jpg(Hi)!
===========================
Lists
--Unordered
* An item in a bulleted list
** Second Level
*** Third level
--Ordered
# First list item
# Second list item
## Second level list item
===========================
Bullets usage examples
* I am a bullet
*# I am a numbered list in second level
*# I am another numbered list in second level
* I am another bullet in first level
===========================
Headings
You must leave a blank line after each heading.
h1. First heading
h2. Second heading
h3. Third heading
h4. Fourth heading
h5. Fifth heading
h6. Sixth heading
===========================
Code
@your code goes in here@
Note: There can't be empty lines in the block of code.
===========================
Blockquotes
bq. This text will be enclosed in an HTML blockquote element.
===========================
More markers
*_bold italic text_*
-strikethrough text-
*-bold strikethrough text-*
*_-bold italic strikethrough text-_*
+underlined text+
*+bold underlined text+*
_+italic underlined text+_
*_+bold italic underlined text+_*
*_-+bold italic strikethrough underlined text+-_*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment