Print to HTML
Sublime Text 3 plugin to print colorized files as HTML via your browser.
Details
Installs
- Total 69K
- Win 38K
- Mac 23K
- Linux 8K
Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 3 | 0 | 2 | 2 | 3 | 1 | 0 | 0 | 2 | 0 | 3 | 2 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 2 | 2 | 1 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 2 | 0 | 1 | 0 | 0 | 1 | 1 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text 3 Print to HTML
A Sublime Text 2/3 plugin to print files as HTML with color syntax highlighting and line numbers, and open them in your browser for printing.
Colorization and HTML conversion is currently performed by Pygments, which supports a range of languages and syntaxes.
Currently Plugin specified word wrap for ST3 is still under development. Web Browsers will still handle word wrap as necessary.
Installation
- Install Package Manager.
- Use
Cmd+Shift+P
orCtrl+Shift+P
thenPackage Control: Install Package
. - Look for
Print to HTML
and install it.
If you prefer to install manually, install git, then:
git clone https://github.com/jchampy/sublimetext-print-to-html "<Sublime Text 3 Packages folder>/Print to HTML"
Usage
- For best results, save your file with an appropriate extension beforehand.
- To print the current file, use one of the following methods:
- use
Shift+Alt+P
to print current file as HTML via your browser, or - from File menu, use
Print as HTML to Browser
orPrint as HTML to New Buffer
. - press
Ctrl+Shift+P
orCmd+Shift+P
then typeprint
.
- use
- Edit settings in
Preferences->Package Settings->Print in HTML
to customize output formatting and behavior. Options such as monochrome, line numbering, and browser behavior can be modified.
Future goals
Re-Implement Word Wrap JavaScript once bugs are hashed out from SublimeText2 Version
Use ST2's internal scope and color data from a buffer to produce an exact replica of a file from ST2 in HTML form. The current approach using Pygments has limitations regarding formats unknown by Pygments (e.g. Markdown) and documents with mixed syntaxes (e.g. PHP embedded in HTML).
Credits
The original code is available on Github. Pull requests are welcome.
Created by Joel Thornton.
Forked and updated to Python3 by Matt Hulse
Forked and Pushed for SublimeText3 by Jake Champlin
Uses the Pygments library (included) for code-to-HTML conversion.