Index

Markdown Syntax

In GarageSale you can use so-called Markdown syntax to easily format your item description. Markdown is a lightweight markup language allowing people to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML. Some of the advantages are that you can format your text in various ways without having any HTML knowledge.

So, if you’re not familiar with HTML or if the formatting toolbar in GarageSale’s Preview mode does not work for you, you should give the markdown syntax a try. To do so select Convert Markdown in description to HTML from the very bottom drop down menu in Editor mode.

To view the result you have to switch to GarageSale’s Preview mode.

Headings

Headings are produced by placing a number of hashes before the header text corresponding to the level of heading desired (HTML offers six levels of headings), like so:

# This is H1
## This is H2
### This is H3
#### This is H4
##### This is H5
###### This is H6

View result

Emphasized Text

Wrap text with one asterisk (*), like so:

*This is emphasized text*

This is an *emphasized* word

View result

Strong Text

Wrap text with two asterisks (**), like so:

**This is strong text**

This is a **strong** word

View result

Paragraphs

A paragraph is one or more consecutive lines of text separated by one or more blank lines. Normal paragraphs should not be indented with spaces or tabs:

text text text text text text text text text

text text text text text text text text text

View result

Line Breaks

When you do want to insert a line break using Markdown, you end a line with two or more spaces, then type return. If you highlight the first line in the box below you’ll notice the two spaces:

text text text  
text text text

View result

Enumerated Lists

Enumerated (ordered) lists are created using “1.” + Space:

1. Ordered list item
2. Ordered list item
3. Ordered list item
4. Ordered list item

View result

Bulleted Lists

Bulleted (unordered) list are created using “*” + Space:

* Unordered list item
* Unordered list item
* Unordered list item
    * A subitem, indented with 4 spaces
* Unordered list item

View result

Horizontal Rules

Horizontal rules are created by placing three or more asterisks or dashes: Each of the following lines will produce one horizontal rule:

***
---
--------------------

View result

Using HTML

If needed you can insert HTML code, like this table, too.

<table style="border-spacing: 5px; border: solid 1px #bbb;">
<tr><td>condition:</td><td>new</td></tr>
<tr><td>color:</td><td>blue</td></tr>
<tr><td>size:</td><td>medium</td></tr>
</table>

View result

Markdown Tables

Here is an example of how to create tables in Markdown:

| Col 1         | Col 2         | Col 3 (right aligned) |
|:------------- |:-------------:| ---------------------:|
| Row 1         | centered 1    |                  $100 |
| Row 2         | centered 2    |                   $20 |
| Row 3         | centered 3    |                    $3 |

View result

If you want to learn more about the markdown syntax you’ll find additional information on these websites:



<< eBay's Business Policies Creating Own Listing Designs >>