(autoload 'html-helper-mode "html-helper-mode") (augment-auto-mode-alist "\\.html$" 'html-helper-mode) (declare (special html-helper-do-write-file-hooks html-helper-build-new-buffer html-helper-address-string html-helper-new-buffer-template)) ;;; Config: (setq html-helper-do-write-file-hooks t) (setq html-helper-build-new-buffer t ) ;;; personal settings: (setq html-helper-who-am-i "T. V. Raman") (setq html-helper-my-net-address "tvraman@us.ibm.com") (setq html-helper-address-string (format "Email: %s" html-helper-my-net-address html-helper-who-am-i)) (setq html-helper-new-buffer-template '("\n" "\n" " \n" "\n" "" p "\n" "\n\n" "\n" "

" p "

\n\n" p "\n\n
\n" "
" html-helper-address-string "
\n" html-helper-timestamp-start html-helper-timestamp-end "\n\n \n")) (add-hook 'html-helper-mode-hook (function (lambda () (auto-fill-mode 1) (require 'html-addons)))) (require 'html-outline)