Answers for "github md code block"

25

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
5

text bold in .md file

**My Bold Text**
Posted by: Guest on September-02-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

Browse Popular Code Answers by Language