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 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
2. Enter Install Package and press Enter
3. Enter Markdown Preview in the pop-up window and press Enter
##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 way5. 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,
}
{"keys": ["Ctrl+m"], "command": "markdown_preview", "args":{"target" : "browser"} }
#这是标题[链接](http://www.baidu.com)*斜体* **加粗*** 列表1* 列表2* 列表3`高亮`
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!