Skip to content

how to make good markdown files part 1

Updated: at 10:21 am

how to make good markdown files

Table of contents

Open Table of contents

Basic syntax of markdown

text

So this is how you write normal text in markdown

text

that looks like this

text

bold

To write bold you add a hash like this:

# boldest
## less bold
### a lot less bold
#### slightly bold

and so on, It looks like this:

boldest

less bold

a lot less bold

slighlty bold

More advanced syntax

block quotes

To do block quotes you do ”>” before you write a word, Like this:

> this is a block quote
>> the next line

it is rendered like this:

this is a block quote in astro paper

the next line

so this is the end of part one