# markdown-preview **Repository Path**: xiaoxinwt/markdown-preview ## Basic Information - **Project Name**: markdown-preview - **Description**: Markdown preview in Atom - **Primary Language**: CoffeeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-04-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Markdown Preview package [![Build Status](https://travis-ci.org/atom/markdown-preview.svg?branch=master)](https://travis-ci.org/atom/markdown-preview) Show the rendered HTML markdown to the right of the current editor using `ctrl-shift-m`. It can be activated from the editor using the `ctrl-shift-m` key-binding and is currently enabled for `.markdown`, `.md`, `.mdown`, `.mkd`, `.mkdown`, `.ron`, and `.txt` files. ![markdown-preview](https://cloud.githubusercontent.com/assets/378023/10013086/24cad23e-6149-11e5-90e6-663009210218.png) ## Customize By default Markdown Preview uses the colors of the active syntax theme. Enable - [x] Use GitHub.com style in the __package settings__ to make it look closer to how markdown files get rendered on github.com. ![markdown-preview GitHub style](https://cloud.githubusercontent.com/assets/378023/10013087/24ccc7ec-6149-11e5-97ea-53a842a715ea.png) To customize even further, the styling can be overridden in your `styles.less` file. For example: ```css .markdown-preview.markdown-preview { background-color: #444; } ```