Markdown Guide
Mar 25, 2021
»
git_blog_guide
1. Font Size
Head 1: #Head1
Head 2: ##head2
Head 3: ###head3'
2. Code block
A Python Example:
def quote():
# Socrates
print('The only true wisdom is in knowing you know nothing.')
A HTML Example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>quote</title>
</head>
<body>
<!-- Maya Angelou -->
<p>Try to be a rainbow in someone's cloud.</p>
</body>
</html>
A C Example:
#include <stdio.h>
int main()
{
// Confucius
printf("Everything has beauty, but not everyone sees it.\n");
return 0;
}
To know
Always write these first
---
title: ()
categories: ()
comments: ()
---
space test
1
2
= 1 2
2
<bs>
3
= 2 (\n)(\n) 3
3
<br>
4
= 3 (\n) 4
Attach Image
Format
![image name](./directory/image_name.PNG)
1. make repository in your git
2. issue
3. move your image into issue
4. just get directory and erase it
https://hyeonjiwon.github.io/blog/markdown_img/