blob: ece30105c563c0dd5d25141961d2ef4d48ba976b [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim plugin for converting a syntax highlighted file to HTML.
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02002" Maintainer: Ben Fritz <fritzophrenic@gmail.com>
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01003" Last Change: 2011 Jan 06
Bram Moolenaarb02cbe32010-07-11 22:38:52 +02004"
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02005" The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and
6" $VIMRUNTIME/syntax/2html.vim
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02007"
8" TODO:
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01009" * Explicitly trigger IE8+ Standards Mode?
10" * Make it so deleted lines in a diff don't create side-scrolling
Bram Moolenaar8df7f882010-08-13 11:30:02 +020011" * Restore open/closed folds and cursor position after processing each file
12" with option not to restore for speed increase
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +010013" * Undercurl support via dotted bottom border?
14" * Add extra meta info (generation time, etc.)?
15" * Tidy up so we can use strict doctype in even more situations
Bram Moolenaar8df7f882010-08-13 11:30:02 +020016" * Implementation detail: add threshold for writing the lines to the html
17" buffer before we're done (5000 or so lines should do it)
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +020018" * TODO comments for code cleanup scattered throughout
Bram Moolenaar166af9b2010-11-16 20:34:40 +010019"
20"
21" Changelog:
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +010022" 7.3_v8 (this version): Add html_expand_tabs option to allow leaving tab
23" characters in generated output (Andy Spencer). Escape
24" text that looks like a modeline so Vim doesn't use
25" anything in the converted HTML as a modeline.
26" Bugfixes: Fix folding when a fold starts before the
27" conversion range. Remove fold column when there are
28" no folds.
29" 7.3_v7 (840c3cadb842): see betas released on vim_dev below:
Bram Moolenaar166af9b2010-11-16 20:34:40 +010030" 7.3_v7b3: Fixed bug, convert Unicode to UTF-8 all the way.
31" 7.3_v7b2: Remove automatic detection of encodings that are not
32" supported by all major browsers according to
33" http://wiki.whatwg.org/wiki/Web_Encodings and convert
34" to UTF-8 for all Unicode encodings. Make HTML
35" encoding to Vim encoding detection be
36" case-insensitive for built-in pairs.
37" 7.3_v7b1: Remove use of setwinvar() function which cannot be
38" called in restricted mode (Andy Spencer). Use
39" 'fencoding' instead of 'encoding' to determine by
40" charset, and make sure the 'fenc' of the generated
41" file matches its indicated charset. Add charsets for
42" all of Vim's natively supported encodings.
43" 7.3_v6 (0d3f0e3d289b): Really fix bug with 'nowrapscan', 'magic' and other
44" user settings interfering with diff mode generation,
45" trailing whitespace (e.g. line number column) when
46" using html_no_pre, and bugs when using
47" html_hover_unfold.
48" 7.3_v5 ( unreleased ): Fix bug with 'nowrapscan' and also with out-of-sync
49" folds in diff mode when first line was folded.
50" 7.3_v4 (7e008c174cc3): Bugfixes, especially for xhtml markup, and diff mode.
51" 7.3_v3 (a29075150aee): Refactor option handling and make html_use_css
52" default to true when not set to anything. Use strict
53" doctypes where possible. Rename use_xhtml option to
54" html_use_xhtml for consistency. Use .xhtml extension
55" when using this option. Add meta tag for settings.
56" 7.3_v2 (80229a724a11): Fix syntax highlighting in diff mode to use both the
57" diff colors and the normal syntax colors
58" 7.3_v1 (e7751177126b): Add conceal support and meta tags in output
59" Pre-v1 baseline: Mercurial changeset 3c9324c0800e
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaar7510fe72010-07-25 12:46:44 +020061if exists('g:loaded_2html_plugin')
62 finish
63endif
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +010064let g:loaded_2html_plugin = 'vim7.3_v8'
Bram Moolenaar7510fe72010-07-25 12:46:44 +020065
Bram Moolenaarb02cbe32010-07-11 22:38:52 +020066" Define the :TOhtml command when:
67" - 'compatible' is not set
68" - this plugin was not already loaded
69" - user commands are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +000070if !&cp && !exists(":TOhtml") && has("user_commands")
Bram Moolenaarb02cbe32010-07-11 22:38:52 +020071 command -range=% TOhtml :call tohtml#Convert2HTML(<line1>, <line2>)
Bram Moolenaar071d4272004-06-13 20:20:40 +000072endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020073
74" Make sure any patches will probably use consistent indent
Bram Moolenaar7c86f4c2010-07-18 14:07:22 +020075" vim: ts=8 sw=2 sts=2 noet