search
HomeDevelopment ToolsatomA brief discussion on how to configure markdown in Atom

A brief discussion on how to configure markdown in Atom

I don’t know how many people are like me. Each software corresponds to a special type of file, such as pycharm for python; sublime for assembly. Of course VScode supports me to open it. All kinds of small files (I don't want to open the IDE every time I open a file), and Atom has become my best choice for using markdown.

Atom

Atom is a cross-platform text editor launched by github specifically for programmers. Here is the download address or https://atom.io.

markdown

Markdown is a lightweight markup language that allows people to write documents in a plain text format that is easy to read and write. Anyway, you can find a lot of introductions online, and most of them are irrelevant. Let’s focus on the key points—easy to read and write.

Atom configuration markdown

First of all, after you download Atom, open a file and save it as xxx.md, so that the file is already in markdown format. Here are more configurations These are some of my commonly used functions. For all the packages mentioned below, you can search through setting (Mac: command , )->install (a bit slow).

Related recommendations: "atom tutorial"

The following are my commonly used packages.

markdown-preview

When we finish writing an article in markdown format (sometimes it really can’t be called an article), it will not be the same as when we use Word or WPS. It is so gorgeous when using similar office software. For example, the bunch of things above actually look like this in the .md file
A brief discussion on how to configure markdown in Atom
But obviously, what we see is not like this, so we can install a package to preview when writing something What we write. There are many options for Atom here. Common preview packages include markdown-preview; markdown-preview-plus and markdown-preview-enhanced, and of course there are many more. The first one is official from atom, but it may not be so feature-rich and is more suitable for light use or lazy people like me. The second one is developed by the community and is also very useful but it seems that it has not been updated for a long time. There is a bug that is widely discussed on github. I haven’t tried the third one, but the download volume is quite large. Of course, when you choose one of them as your preview tool, please remember to keep the other packages closed in settings->packages.

markdown-scroll-sync

A package that allows you to quickly locate the original text when you browse the document and find that you need to modify it. Able to achieve synchronous scrolling, of course including the cursor position.

markdown-writer

An editor that is more convenient than ordinary markdown and can better manage images and links. You can check out the specific usage.

language-markdown

This package can provide you with functions such as keyword coloring of code and convenient code snippet generation.

markdown-image-paste

allows you to use command v to paste images instead of using markdown syntax, especially for local images. If you change the location, you may find Not here.

markdown-table-editor

Being able to use | to create tables, especially compared to other markdown table creations, would be perfect.

markdown-to-pdf

Needed to export what you wrote in pdf format.

Written at the end

For the above packages, if you don’t know how to use them or want to find out how to use them, you can go to https://atom.io/packages to search for the corresponding packages. However, I won’t introduce too much here. We also welcome everyone to recommend more useful packages to each other.

For more knowledge about computer programming, please visit: Introduction to Programming! !

The above is the detailed content of A brief discussion on how to configure markdown in Atom. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Vue3怎么解析markdown并实现代码高亮显示Vue3怎么解析markdown并实现代码高亮显示May 20, 2023 pm 04:16 PM

Vue实现博客前端,需要实现markdown的解析,如果有代码则需要实现代码的高亮。Vue的markdown解析库有很多,如markdown-it、vue-markdown-loader、marked、vue-markdown等。这些库都大同小异。这里选用的是marked,代码高亮的库选用的是highlight.js。具体实现步骤如下:一、安装依赖库在vue项目下打开命令窗口,并输入以下命令npminstallmarked-save//marked用于将markdown转换成htmlnpmins

atom中 40+ 个常用插件推荐分享(附插件安装方法)atom中 40+ 个常用插件推荐分享(附插件安装方法)Dec 20, 2021 pm 04:14 PM

本篇文章给大家分享40+ 个atom常用插件,并附上在atom中安装插件的方法,希望对大家有所帮助!

Python如何构建一个Markdown编辑器Python如何构建一个Markdown编辑器May 13, 2023 am 09:58 AM

首先,请确保您已安装Python3和Tkinter。我们需要的其他东西是tkhtmlview和markdown2。您可以通过运行pipinstalltkhtmlviewmarkdown2或pip3installtkhtmlviewmarkdown2来安装它们(如果您有多个Python版本)。现在启动您喜欢的编辑器或IDE并创建一个新文件(例如www.linuxidc.com.py(我将其命名为linuxidc.com编辑器))。我们将从导入必要的库开始。fromtkinterimport*fro

英特尔推出 Amston Lake 系列凌动 Atom 处理器,面向边缘和网络市场英特尔推出 Amston Lake 系列凌动 Atom 处理器,面向边缘和网络市场Apr 09, 2024 pm 09:22 PM

本站4月9日消息,英特尔今日在嵌入式展(EmbeddedWorld)2024上发布了AmstonLake系列凌动Atom处理器。AmstonLake处理器基于Intel7制程,支持单通道内存,可视为AlderLake-N处理器的一种分支变体,包含面向边缘的凌动x7000RE系列和面向网络的x7000C系列。本站2023年报道过至多四核的ADL-N架构凌动x7000E处理器,而如今的x7000RE系列进一步扩展了规格:其最高可选8核的凌动x7835RE,该处理器和四核心的x7433RE均搭载32E

聊聊VScode怎么配置Markdown(附基础语法)聊聊VScode怎么配置Markdown(附基础语法)Dec 07, 2022 pm 03:40 PM

VScode中怎么使用markdown?下面本篇文章给大家介绍一下VScode配置Markdown的方法,并聊聊Markdown基础语法,希望对大家有所帮助!

Atom基础插件推荐:实现同步、特效打字Atom基础插件推荐:实现同步、特效打字Sep 22, 2022 pm 02:16 PM

Atom怎么进行同步设置、特效打字?下面本篇文章就来给大家推荐几款实用小插件,看看它们有什么效果吧,希望对大家有所帮助!

怎么用PHP实现markdown转换怎么用PHP实现markdown转换Mar 24, 2023 pm 02:30 PM

随着人们对于技术的不断追求,越来越多的工具和应用程序被开发出来来帮助人们简化复杂的任务。其中之一就是 Markdown,它是一种轻量级的标记语言,可以将纯文本转换成 HTML 格式的文本。本文将介绍如何使用 PHP 来实现 Markdown 转换。

ATOM是什么币?ATOM是什么币?Feb 22, 2024 am 09:30 AM

ATOM是什么币?ATOM是Cosmos网络的原生代币,它是一个旨在促进不同区块链之间连接和互操作的去中心化区块链平台。Cosmos项目的使命是构建一个名为“互联区块链”的网络,而ATOM代币则在这个网络中扮演着至关重要的角色。ATOM代币最初是通过2017年的ICO(首次代币发行)发行的。作为Cosmos区块链上基于Tendermint共识算法的代币,ATOM代币在Cosmos网络中被用作激励节点参与者并维护网络安全的奖励。Cosmos网络Cosmos网络是一个由多个相互连接的独立区块链构成的

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft