GithubHelp home page GithubHelp logo

damon-v79 / nvim-markdown-preview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from davidgranstrom/nvim-markdown-preview

0.0 0.0 0.0 161 KB

Markdown preview for neovim using pandoc and live-server

License: GNU General Public License v3.0

CSS 91.19% Vim Script 8.81%

nvim-markdown-preview's Introduction

nvim-markdown-preview

Markdown preview in the browser using pandoc and live-server through Neovim's job-control API.

Usage

Open a markdown file in vim and run :MarkdownPreview. The preview opens in a new browser tab which will be reloaded whenever you :write the buffer. If you accidentally close your browser tab or want to change the theme just run the command again. The file needs to be written to disk before you can start the preview.

Features

  • Asynchronous
  • Produces "standalone" html files (injected css)
  • Custom themes (github, solarized-dark, solarized-light)
  • Auto-reloads browser tab on save
  • Serves assets from the current working directory (embed pictures in your markdown etc.)
  • Custom markdown input formats
  • KaTeX for formatting LaTeX math
  • Syntax highlighting from the Kate Editor themes

Requirements

  • pandoc
  • live-server (Node.js)

pandoc and live-server executables should be installed and accessible in your $PATH.

Pandoc

Pandoc should be available in most Linux distributions and on macOS via brew and Windows via chocolatey.

On macOS using Homebrew:

brew install pandoc

For Linux:

  • Ubuntu sudo apt install pandoc

  • Fedora sudo dnf install pandoc

For Windows:

Either download the executable or get it with Chocolatey

choco install pandoc

For other systems please see the links in the description on how to install.

live-server

Assuming you have Node.js installed:

npm install -g @compodoc/live-server

See this issue on why the live-server fork is preferred.

Installation

If you are using vim-plug

Plug 'davidgranstrom/nvim-markdown-preview'

source the file (:source %) (or restart vim) and then run :PlugInstall

Documentation

Usage

There is only a single command:

:MarkdownPreview [theme]    Starts the browser preview of the current file.
                            Optional argument to select a theme.

                            The available themes are currently:
                            * github
                            * solarized-light
                            * solarized-dark

Customization

Set this variable in your init.vim to specify a default theme for the preview. The default is the GitHub theme.

let g:nvim_markdown_preview_theme = 'solarized-light'

Set this variable to specify the pandoc input format (--format/-f) option. The default is gfm (GitHub flavored markdown).

let g:nvim_markdown_preview_format = 'markdown'

Take a look at :help nvim-markdown-preview for complete documentation and examples.

Screenshots

Q & A

Q: Why doesn't the preview update in real-time while I type in vim?

A: This plugin simply doesn't work like that. It only aims to provide some live update capabilities around what is essentially :w !pandoc % -o /tmp/file.html

Q: I want the preview tab to open automatically without typing :MarkdownPreview

A: Sure, use an autocmd like:

autocmd FileType markdown MarkdownPreview

Or the <Plug> mapping to bind it to the key of your choice

nmap <cr> <plug>(nvim-markdown-preview)

TODO

The markdown file must be written to disk first. It should be possible to use Pandoc stdin and pipe the buffer content using jobsend() instead.

License

GPL v3

nvim-markdown-preview
Copyright (C) 2018 David Granström

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

nvim-markdown-preview's People

Contributors

davidgranstrom avatar damon-v79 avatar ianchanning avatar mr-destructive avatar mvllow avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.