how to create a code snippet in markdown code example
Example 1: code in markdown
```<name of the language>
<code>
```
EXAMPLE
```python
print("Hello World")
```
Example 2: markdown code snippet
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```