code block in markdown code example
Example 1: markdown table
Layout:
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
An amazing website for building a table in markdown:
https://www.tablesgenerator.com/markdown_tables
Example 2: table in markdown
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
Example 3: code in markdown
```<name of the language>
<code>
```
EXAMPLE
```python
print("Hello World")
```
Example 4: markdown block code
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
Example 5: code blocks md
```
function test() {
console.log("notice the blank line before this function?");
}
```
Example 6: markdown image
![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)