Formatting Help
Tender primarily uses Markdown for formatting your text.
Bold & Italics
To use bold or italic text, you use asterisks (*) and underscores (_)
*single asterisks*– produces italic text: single asterisks**double asterisks**– produces bold text: single asterisks_single underscores_– produces italic text: single underscores__double underscores__– produces bold text: single underscores
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.