markdown an elegant writing tool

When it comes to writing tools, I have to mention word. Is there any company that can use this software now? As the most popular writing software, word does have many advantages. The operation is more intuitive, what you see is what you get, etc., but everyone must have encountered the problem of tedious style adjustment. Different content may require frequent adjustment of fonts and sizes. , line spacing, etc., and it is also prone to inconsistencies, and the overall appearance is very incongruous. Of course, if you are an advanced user of word, you may know that there is a template that defines a unified style for you, but first you have to become a senior Users, in short, you need to spend a lot of extra time on style adjustment, and the editing experience is very poor; on the other hand, different users have their own style preferences, and the inconsistent style also affects the reading experience; in addition, the revision function really does It's ugly... I don't want to see it...

In fact, the main problem of word is that the content and style are bound together. The writer needs to edit the content and style of the article at the same time. Although it is very flexible, it is actually an inefficient way, because the creation itself only related to content. In contrast, LaTeX may have a better editing experience by defining some tags for content and then uniformly defining styles for these tags, but its complex and even weird syntax has a relatively high threshold for use. In fact, word also provides a way to separate content and style, which is template style, but when your primary users are accustomed to editing content and style at the same time, it is difficult to change them. If you are also using word, I suggest you Using more template-related functions can improve your efficiency a lot. Of course, I recommend you to use the markdown I will use below. The article you see, including all the articles in this small site, are also markdown editors. made

Markdown is actually a markup language, similar to html, but much simpler than html. It only takes three minutes to learn, and there are not so many redundant tags. The writer only needs to focus on the content, but the written Things are just plain text files. If you need to display them, you need some professional markdown software, such as mweb , mou , macdown , etc. You can define styles by importing css files, and you can define different styles through different css files. It is very flexible. If you don't have a css file, there is usually a default display, or you can use the style file on github. Of course, if you know the front end, you can write the css file according to your own aesthetic. Here markdown completely separates content and style, so there is no need to pay attention to style when writing, and the editing experience is greatly improved; on the other hand, everyone can have their own preferred style, and the same content can be displayed in the way they are used to in front of different users Different styles are displayed, and the reading experience is also greatly improved; since it is a plain text file, it can also be used with version management tools such as git, and the modifications of different versions can be clearly seen

Of course, there is also a situation where you only focus on editing and do not need to display, then you may only need a text editor like sublime text 3 or vscode. Most blog sites directly support markdown, you can write the entire file content and post it, or the blog site you build with software such as hexo is directly based on markdown

At present, markdown has become the most popular blog writing tool, and more and more documents have begun to use markdown to manage. Hurry up and start using markdown to improve your work efficiency.

The syntax of markdown is attached below

# 一级标题
### 三级标题
##### 五级标题

正文正文正文正文正文正文正文正文正文

*强调*
**加粗**

1. 有序列表
2. 有序李彪

- 无序列表
- 无序列表

> 引用

[链接点这里](http://xxx.com)
![图片链接](/img/xxx.jpg)
<http://xxx.com>

| header1 | header2 | header3 |
|---------|---------|---------|
| column1 | column2 | column3 |
| column1 | column2 | column3 |

`代码`

Please indicate the source of
the : http://hatlonely.github.io/2018/02/14/markdown-an elegant writing tool/

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324780763&siteId=291194637