html-helper-mode is an emacs mode to make editing HTML files easier, inspired by Marc Andreessen's html-mode. html-helper-mode does most of the things that html-mode does, but with a slightly different interface and lots of new features. (Emacs is a super-powerful editor that does everything in the world.)
Put these files in your load-path and byte compile them (if you want). Then arrange for html-helper-mode to be loaded: the easiest way is to put this in your .emacs:
(autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) (setq auto-mode-alist (cons '("\\.html$" . html-helper-mode) auto-mode-alist))Alternately, you can get an entire distribution of html-helper-mode, including these HTML documents, as html-helper-mode.tar.gz.
I'm also developing html-helper-mode again. Feel free to look at the beta site, but the code there has no guarantees of working.
Thanks to Ulrik Dickow for his font-lock code.
Thanks to the author of cc-mode, Barry Warsaw <baw@anthem.nlm.nih.gov>, his code provided a useful guide in writing this mode (not to mention saving me many hours of formatting C, C++, and Objective C!)
My appreciation to Marc Andreessen <marca@netscape.com>, the author of the original html-mode.
And finally, many thanks to the various people on the net who have been offering encouragement, suggestions, and example code. Y'all're the main reason I'm writing this, and the main reason it's usable.
Nelson Minar <nelson@santafe.edu> Last modified: Fri Apr 21 11:45:15 MDT 1995