Why do programmers need to learn Markdown

Why learn markdown, because markdown allows you to develop the habit of recording.
Since I use the markdown, liked to write documents, records, work logs, records weekly, quarterly plans record, recording learning goals, write a variety of design documents.
markdown and together with vim, simply a perfect match.

That system I am going to talk about the benefits of markdown

Why markdown

You may wonder why you want to use markdown to write a document, without having to click on a variety of tools that little mouse WYSIWYG take notes, such as word and the like. First by the following:

  • Markdown can be used anywhere, can use it to create a Web site, notes, e-books, presentations, e-mail information and technical documentation
  • Markdown is a lightweight, in fact, the file contains Markdown text format can be opened in any application . If you do not feel like Markdown rendering applications currently in use, you can use other rendering application to open. The stark contrast is Microsoft Word, must use special software to open .doc or .docx document and may still be garbled or random bit format.
  • Markdown is platform independent. You can create a Markdown-formatted text files on any operating system can run
  • Markdown programmers everywhere in the world , like simple books, GitChat, GitHub, csdn etc. support Markdown documents, technical documents are authentic official use Markdown to write.

Not only can record notes using Markdown very area, and can be exported directly to the corresponding web content, export documents can be printed

Do not need to take a long time to learn Markdown syntax, it's really very simple syntax

And once you've mastered it, you can use Markdown anywhere on any platform to record notes, documents, and even write a book.

Many people use Markdown to create the content of the site, but is more adept at Markdown text formatting, Markdown is the root of the problem need not worry about format compatibility problems.

Markdown syntax used

Many background development programmers working environment is linux, linux written document is the best choice for the next markdown

Use the following resume on several grammar

Markdown support some html, so the beginning of the resume has a simple html mark.

<center><h1>XXX</h1> </center>

Paragraph, then normal written on it, or if you need indented spaces, use &emsp;and &ensp;, for the first full-size space, the second is half-size space, our markdown resume templates also use this space to align these two operating.

'#' For the title level 1-6 may exhibit
#a title
##subheadings
###three title

Use *or +or -or 1. 2.to indicate the list

These are the markdown syntax we resume use, and to tell you that some common grammatical rules of markdown

Use [名字](url)indicates the connection, e.g.[Github地址](https://github.com/youngyangyang04/Markdown-Resume-Template)

For the use of code blocks, for example, enclose the code `` int a = 0; `
or in` `` enclose blocks of code, for example:

```
var foo = function (bar) {
return bar++;
};

```

Add a picture ![名字](图片地址)for example, ![Minion](https://octodex.github.com/images/minion.png)
because Markdown supports html so you can also write<img src='~/images/minion.png' width=600> </img></div>

Markdown rendering

There are several ways to render Markdown document

  • Use github to render, that is, his own .md files to on github, there is a visual show, you will find on github Each project has a README.md
  • Use Google browser plug-ins installed MarkDown Preview Plus, you can also open markdown file, but the rendering is not very good
  • mac recommended macdown markdown to open the file, and then you can export directly to print the pdf
  • You can use markdown Typora to open the file, the same can also be exported directly under the window to print pdf

Markdown learning materials

When just beginning to learn Markdown syntax will inevitably forget, it is recommended that this markdown demo collection me, where usually uses forgot to look.

to sum up

If you have not mastered the markdown of what are you waiting for, get up quickly using markdown records

Published 230 original articles · won praise 248 · views 260 000 +

Guess you like

Origin blog.csdn.net/youngyangyang04/article/details/104823466