ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Omni​Markup​Previewer

by timonwong ALL

Live previewer/exporter for markup files (markdown, rst, creole, textile...).

Details

Installs

  • Total 104K
  • Win 57K
  • Mac 36K
  • Linux 12K
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11
Windows 4 2 5 2 2 0 1 1 5 6 5 5 1 1 4 7 7 5 1 3 2 4 2 4 2 8 1 0 3 7 3 3 5 2 1 1 7 3 3 3 2 0 2 8 6 9
Mac 0 2 5 0 5 0 0 1 2 1 0 0 0 1 1 1 2 0 0 0 1 0 0 0 0 1 1 1 6 4 2 2 3 1 0 1 1 2 5 2 1 1 3 2 0 0
Linux 1 0 0 0 0 1 1 0 0 1 0 0 1 0 2 3 0 0 0 0 1 2 0 1 0 0 1 0 1 0 1 2 1 1 0 1 0 0 2 6 1 0 1 1 0 1

Readme

Source
raw.​githubusercontent.​com

OmniMarkupPreviewer

Description

OmniMarkupPreviewer is a plugin for both Sublime Text 2 and Sublime Text 3 that preview markups in web browsers. OmniMarkupPreviewer renders markups into htmls and send it to web browser in the backgound, which enables a live preview. Besides, OmniMarkupPreviewer provide support for exporting result to html file as well.

OmniMarkupPreviewer has builtin support following markups:

  • Markdown
  • reStructuredText
  • WikiCreole
  • Textile
  • Pod (Requires Perl >= 5.10 and can be found in PATH, if the perl version < 5.10, Pod::Simple should be installed from CPAN.)
  • RDoc (Requires ruby in your PATH)
  • Org Mode (Requires ruby, and gem org-ruby should be installed)
  • MediaWiki (Requires ruby, as well as gem wikicloth)
  • AsciiDoc (Requires ruby, as well as gem asciidoctor)
  • Literate Haskell

Donation

If you find my work useful, please consider buying me a cup of coffee, all donations are much appreciated :)

Installation

With the Package Control plugin

The easiest way to install OmniMarkupPreviewer is through Package Control.

Once you have Package Control installed, restart Sublime Text.

  1. Bring up the Command Palette (Ctrl+Shift+P on Windows and Linux. ++P on OS X).
  2. Type “Install” and select “Package Control: Install Package”.
  3. Select “OmniMarkupPreviewer” from list.

The advantage of using Package Control is that it will keep OmniMarkupPreviewer up to date automatically.

Manual Install

Without Git: Download the latest source code, and extract to the Packages directory.

With Git: Type the following command in your Sublime Text Packages directory:

git clone git://github.com/timonwong/OmniMarkupPreviewer.git

The “Packages” directory for Sublime Text 2 is located at:

  • Windows: %APPDATA%\Sublime Text 2\Packages\
  • Linux: ~/.config/sublime-text-2/Packages/
  • OS X: ~/Library/Application Support/Sublime Text 2/Packages/

And for the Sublime Text 3:

  • Windows: %APPDATA%\Sublime Text 3\Packages\
  • Linux: ~/.config/sublime-text-3/Packages/
  • OS X: ~/Library/Application Support/Sublime Text 3/Packages/

Usage

Key Bindings

The default key bindings:

Windows, Linux:

  • Ctrl+Alt+O: Preview Markup in Browser.
  • Ctrl+Alt+X: Export Markup as HTML.
  • Ctrl+Alt+C: Copy Markup as HTML.

OSX:

  • ++O: Preview Markup in Browser.
  • ++X: Export Markup as HTML.
  • Ctrl+Alt+C: Copy Markup as HTML.

Command Palette

Available OmniMarkupPreviewer commands in the command palette:

  • OmniMarkupPreviewer: Preview Current Markup in Browser
  • OmniMarkupPreviewer: Export Current Markup as HTML
  • OmniMarkupPreviewer: Empty Cache

NOTE Command will not be available (greyed out) if current file syntax (or filename) doesn't match any of OmniMarkupPreviewer renderers.

What's New

For a complete list of changes, see CHANGELOG.md

v3.0.0 (02/28/2015)

  • Use new flat github style (old style renamed to github-v1).
  • Upgrade pygments library to v2.0.2, with more lexers.
  • Upgrade Python-Markdown package to v2.4.1 final.
  • Add .mmd file extension support (MultiMarkdown).
  • Upgrade jQuery to 2.1.3 (Say good bye to IE8).
  • server_host setting is now taken into account when launching preview in browser.

v2.0.9 (08/02/2014)

  • Add syntax highlighting support for reStructureText.
  • Prefer to use xdg-open under linux environments.

v2.0.8 (04/15/2014)

  • Fix Sublime Text 2 compatibility (crash).

v2.0.7 (04/14/2014)

  • Fix unreliable default setting overriding, which confuses a lot of users when customizing their settings.
  • Prevent preview from the console, which will simply lead to crash.

v2.0.6 (01/27/2014)

  • Fix Sublime Text 2 compatibility (markdown).

v2.0.5 (01/24/2014)

  • MathJax library is now bundled directly instead of on demand downloading.
  • Python-Markdown module now upgraded to v2.4.
  • Fix incompatibility when using Sublime Text 3 under XFCE.

v2.0.4 (08/10/2013)

  • Fix ruby gems loading in OSX (Required by RDoc, AsciiDoc, Org Mode and MediaWiki).
  • Add AsciiDoc syntax support.
  • Ensure default setting for export_options when not available.

v2.0.3 (07/18/2013)

  • Fix html exporting when file contains images in Sublime Text 3.
  • Fix smart_strong and meta_data extention name for markdown.

v2.0.2 (06/17/2013)

  • Update cherrypy server, add detail information if socket could not be created.
  • Add support for file URIs in images path.

v2.0.1 (05/12/2013)

  • Strip YAML frontmatter for Markdown files automatically.
  • Check syntax name as well as filename extension for MediaWiki files.

v2.0 (03/31/2013)

  • Added support for Org Mode (Requires ruby, and gem org-ruby should be installed).
  • Added support for MediaWiki (Requires ruby, as well as gem wikicloth).
  • Added support for AsciiDoc (Requires ruby, as well as gem asciidoctor).
  • Reviving view (redirecting to the new location) automatically after reconnected.
  • Prevent Package Control for Sublime Text 3 installing this package as .sublime-package (zip archive).
  • Fixed broken ignored_renderer setting.
  • Improved Sublime Text 3 compatibility.

v1.20 (03/15/2013)

  • Add support Sublime Text 3 (Experimental).
  • Add new context command Copy Markup as HTML.
  • Remove unused command Sweep Cache (Remove Unused).
  • Auto scroll now works correctly for documents contain images and MathJax equations.

v1.12 (03/13/2013)

  • Renderes are now loaded asynchronously on startup (faster Sublime Text 2 startup).
  • Add litcoffee support.

License

This plugin released under MIT License:

Copyright © 2012 - 2015 Timon Wong

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Donors

DONORS.md