Skip to content

timonwong/OmniMarkupPreviewer

Repository files navigation

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 :)

Donate via PayPal

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

About

Sublime Text 2&3 plugin to live preview markup files, supported (not limited to) markup formats are markdown, reStructuredText, WikiCreole and textile.

Resources

License

Stars

Watchers

Forks

Packages

No packages published