====== Commenting and Deal Formatting ======
We often get queries about how to perform certain functions on ChoiceCheapies such as posting a deal, making a comment, creating a table, reminders, etc.
==== Guides ====
Commenting and posting in deals & forum posts utilises the markdown and markdown extra system. The system is used by other popular websites such as [[https://reddit.com/|Reddit]].
[[http://daringfireball.net/projects/markdown/syntax|Official Markdown]]
[[http://michelf.com/projects/php-markdown/extra/|Official Markdown Extra]]
You can also find formatting help at the bottom of every comment box.
{{https://files.delvu.com/images/choicecheapies/formattinghelpcc.png}}{{https://files.delvu.com/images/choicecheapies/formattinghelp2cc.png}}
==== Formatting ====
^ Task ^^ Code ^^ Example ^
| Bold | | %%**theword**%% | | **theword** |
| Italic | | %%*theword*%% | | //theword// |
| Strike-through | | ~~theword~~ | | theword |
H1 (big text):
#theword
Example:
theword
**Quoting text: ** >theword
Example:
>theword
You can also nest quotations.
>first line of quote
>>second line of quote
Example:
>first line of quote
>>second line of quote
-----
Ordered lists (bullet points)
* First item
* Second item
Example:
* First Item
* Second Item
--------------------------
==== Links ====
URLs are automatically converted to links.
http://www.google.com
However, you can link a website to words.
Code: [Title of Link](http://www.google.com)
Example: [[http://www.google.com|Title of Link]]
Different link colours:
{{https://files.delvu.com/images/choicecheapies/101linkscc.png}}
--------------------------
====Tables====
Tables can be useful for long lists of items such as a [[https://www.ozbargain.com.au/node/100137|weekly supermarket sale list.]]
Code:
| Header | Header | Right |
| Cell | Cell | $10 |
| Cell | Cell | $20 |
Example:
^ Header ^ Header ^ Right ^
| Cell | Cell | $10 |
| Cell | Cell | $20 |
If you don't want to go through and create tables manually, you can use the [[http://www.tablesgenerator.com/markdown_tables#|Markdown Tables generator]] which allows you to create markdown tables through a simple copy + paste GUI.
----------------
====Other Markdown====
**A line or horizontal rule
**
Code:
-------
Example:
----
**A definition list:
**
Code:
Bottled water
: $ 1.25
: $ 1.55 (Large)
Example:
Bottled water
$ 1.25
$ 1.55 (Large)
**Code blocks such as ones shown above: ** Code:
`code here`
Example:
code here
**Footnotes if needed:
**
That's some text with a footnote.[^1]
[^1]: And that's the footnote.
That's some text with a footnote. ((And that's the footnote.))