Answers for "readme code block"

24

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
Posted by: Guest on December-07-2020
6

markdown embed image

![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)
Posted by: Guest on July-22-2020
2

code blocks md

```
function test() {
  console.log("notice the blank line before this function?");
}
```
Posted by: Guest on September-30-2020
8

markdown hyperlink syntax

[Link to Google](https://www.google.com)
Posted by: Guest on July-08-2020
1

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>.
```
Posted by: Guest on November-25-2020
3

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"
Posted by: Guest on June-03-2020

Browse Popular Code Answers by Language