md code block code example
Example 1: code blocks md
```
function test() {
console.log("notice the blank line before this function?");
}
```
Example 2: markdown image
![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)
Example 3: markdown hyperlink syntax
[Link to Google](https://www.google.com)
Example 4: readme.md code snippet
I think you should use an
`` element here instead.
Example 5: 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 tag.
```
Example 6: markdown add image
Here's our logo (hover to see the title text):
Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"