;; Netscape elements and attributes
;; An html-helper-mode module
;; Joe Hildebrand - 23 May 1995
;; version: 1.2
;; This code is distributed under the same terms as html-helper-mode
;; itself. html-helper-mode for Emacs is written and maintained by
;; Nelson Minar , and is available from
;; . Nelson takes no
;; responsibility for what I have done with his software!
;; The extensions to HTML supported by this module are documented at
;; .
;; This code must be called *after* html-helper-mode loads. It can be
;; run nicely from the html-helper-load-hook.
(html-helper-add-type-to-alist
'(table . (table-html-map "\C-c\C-t" table-html-menu
"Insert Table Elements")))
(html-helper-install-type 'table)
(html-helper-add-tag
'(table "t" "" "table, no border"
("")))
(html-helper-add-tag
'(table "b" "" "table, w/border"
("")))
(html-helper-add-tag
'(table "d" "| " "table data" (" | " (r "Table Data: ") " | ")))
(html-helper-add-tag
'(table "h" "" "table heading" (" | " (r "Table Heading: ") " | ")))
(html-helper-add-tag
'(table "r" "" "table row" ("
" (r "Table Row: ") "
\n")))
(html-helper-add-tag
'(table "c" "" "table caption"
("" (r "Table Caption: ") "\n")))
(html-helper-rebuild-menu)
(provide 'hhm-table)