"))
(tempo-template-html-definition-item arg)
(tempo-template-html-item arg))))
;;}}}
;;{{{ most of the HTML cookies and keymap
;; taken partially from the HTML quick reference and the elements document
;; http://www.ncsa.uiuc.edu/General/Internet/WWW/HTMLQuickRef.html
;; http://info.cern.ch/hypertext/WWW/MarkUp/Tags.html
;; There are also some HTML+ tokens from I don't know which reference
;; I could put documentation in for each command - would that be useful?
(mapcar
'html-helper-add-cookie
'(
;;entities
(entity "\C-c&" "&" "html-ampersand" ("&"))
(entity "\C-c<" "<" "html-less-than" ("<"))
(entity "\C-c>" ">" "html-greater-than" (">"))
(entity "\C-c " " " "html-nonbreaking-space" (" "))
;; logical styles
(logical "p" "" "html-preformatted" ("" (r . "Text: ") "
"))
(logical "b" "" "html-blockquote" ("" (r . "Quote: ") "
"))
(logical "e" "" "html-emphasized" ("" (r . "Text: ") ""))
(logical "s" "" "html-strong" ("" (r . "Text: ") ""))
(logical "c" "" "html-code" ("" (r . "Code: ") "
"))
(logical "x" "" "html-sample" ("" (r . "Sample code") ""))
(logical "r" "" "html-citation" ("" (r . "Citation: ") ""))
(logical "k" "" "html-keyboard" ("" (r . "Keyboard: ") ""))
(logical "v" "" "html-variable" ("" (r . "Variable: ") ""))
(logical "d" "" "html-definition" ("" (r . "Definition: ") ""))
(logical "q" "" "html-quote" ("" (r . "Quote: ") "
"))
(logical "n" "" "html-person" ("" (r . "Person: ") ""))
(logical "y" "" "html-acronym" ("" (r . "Acronym: ") ""))
(logical "." "" "html-abbrev" ("" (r . "Abbrevation: ") ""))
(logical "m" "" "html-cmd" ("" (r . "Command name: ") ""))
(logical "g" "" "html-arg" ("" (r . "Argument: ") ""))
(logical "l" "" "html-lit" ("" r ""))
(logical "a" "" "html-address" ("" r ""))
(logical "t" "" "html-comment" ("\"
comment-start-skip "" comment)
("" define)
("" nil define)
("
" include)
("" "" bold)
("" "" italic)
("" "" underline)
("&" ";" string)
("<" ">" keyword))
nil 'case-insensitive)
nil)
;;}}}
(provide 'html-helper-mode)
(run-hooks 'html-helper-load-hook)
;;; html-helper-mode.el ends here