This project gives a demo about the interesting README.md file. You may notice that you should have a README.md file, but do you know how to write a better README.md file?
README.md is a text file in Markdown format. Markdown is created to easily edit your blog. However, the Markdown used by github is a modified version of the standard Markdown and is called Github Flavored Markdown (GFM).
Create a new project and write your own README.md for your project! You can even edit it online and see the changes immediately (click the "Preview" bottom).
Large title:
# + your words
Middle title:
your words
----
You may notice there is a line under the words. It means you have created a new title. You can also create a line to seperate paragraghs by type a "#".
Typing a 'Enter' does not make any change. Unlike a normal texteditor, you have to use <br> for linefeed. Also, you can seperate paragraphs with a single line and create a single line gap.
I want a linefeed here<br>Yes, I get it.
I want a linefeed here
Yes, I get it.
Add two 'Tab' to make a single line text.
If you want to highlight some words in your README.md, you can use `` to wrap the words that you'd like to highlight.
For example:
README is `great`!
README is great
!
[your words]( your weblink "your mouseover")
Here is an example:
[google](http://www.google.com "google")
Use '*' to create a solid dot. For example:
* First
* Second
- First
- Second
Also, you can use 'Tab' to create different layers. For example:
* First
* First-sub-1
* First-sub-1-sub-1
- First
- First-sub-1
- First-sub-1-sub-1
- First-sub-1
>Earth
>>US
>>>California
>>>>Los Angeles
It looks like ...
Earth
US
California
Los Angeles
Use ! + [img Tag](img URL "img mouseover")

Also, you can substitute the external img URL with your own img which is stored in your github repository if you believe it's more 'stable'.
Refer to the 'External weblink' and 'External Photo' part. You can combine them together and load a external photo with an external weblink.
Wrap your code with ```. I will give two examples about the C code and bash command code.
```c
int main(argc, argv[]){ // C code
return 0;
}
```
int main(argc, argv[]){
return 0;
}
```Bash
echo "Hello World!"
```
echo "Hello World!"
Now, you have got the hammer to build a README.md for your own projects. DO IT!
Please Star this project if you find it interesting and helpful
My Personal Page
copyright @ jwangee