Formatting Help
Tender primarily uses Markdown for formatting your text.
Bold & Italics
To use bold or italic text, you use asterisks (*)
*single asterisks*
– produces italic text: single asterisks**double asterisks**
– produces bold text: double asterisks
Links
To link to another website, use the following:
[Example](http://example.com)
– produces Example
Code Blocks
You can embed inline code blocks by wrapping the text around backticks (`). Example: `var test = true;` – produces var test = true;
. You can also embed blocks of code by indenting your code with at least four spaces.