Home > Development Tools > sublime > body text

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

藏色散人
Release: 2020-08-10 11:53:36
forward
11462 people have browsed it

The following tutorial column will introduce you to the Sublime Text3 Markdown configuration steps [detailed pictures and texts] in the sublime tutorial column. I hope it will be helpful to friends in need!

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

#Sublime is a very good text editor. You can install a large number of plug-ins, and using Sublime Markdown gives you a unique experience. Here I only describe how to configure it correctly (taking Sublime Text 3 as an example). For usage tips, please refer to related articles.

1. Install Package: Markdown Preview and Markdown Editing, open Perferences > Package Control

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

2. Enter Install Package and press Enter

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

3. Enter Markdown Preview in the pop-up window and press Enter

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

##4. You can see that the bottom of sublime shows that Markdown Preview is being installed. This will take a few minutes. Wait patiently. After the installation is completed, it will show that the installation is successful. Install Markdown Editing in the same way

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

5. Set Markdown editing highlight, open Perferences > Package Settings > Markdown Preview > Setting-User, enter the following code, save

{    "font_size": 13,    "ignored_packages":
    [        "Vintage"
    ],

    /*
        Enable or not mathjax support.
    */    "enable_mathjax": true,

    /*
        Enable or not highlight.js support for syntax highlighting.
    */    "enable_highlight": true,
}
Copy after login

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

6. Set the browser preview shortcut key, open Perferences > Key Bindings, enter the following code on the right, and save

{"keys": ["Ctrl+m"], "command": "markdown_preview", "args":{"target" : "browser"} }
Copy after login

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

7. Verify whether the configuration is successful, create a new document with the suffix .md, edit it with Sublime, and enter Save the following code

#这是标题[链接](http://www.baidu.com)*斜体*  **加粗*** 列表1* 列表2* 列表3`高亮`
Copy after login

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

9. Press the shortcut key Ctrl m, the browser displays the following content, the configuration is successful

Sublime Text3+Markdown configuration steps [detailed graphic explanation]

The above is the detailed content of Sublime Text3+Markdown configuration steps [detailed graphic explanation]. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!