1 ;;; sgml-mode.el --- SGML- and HTML-editing modes -*- coding: utf-8 -*-
3 ;; Copyright (C) 1992, 1995, 1996, 1998, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: James Clark <jjc@jclark.com>
8 ;; Adapted-By: ESR, Daniel Pfeiffer <occitan@esperanto.org>,
9 ;; F.Potorti@cnuce.cnr.it
10 ;; Keywords: wp, hypermedia, comm, languages
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; Configurable major mode for editing document in the SGML standard general
30 ;; markup language. As an example contains a mode for editing the derived
31 ;; HTML hypertext markup language.
42 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
45 (defcustom sgml-basic-offset
2
46 "Specifies the basic indentation level for `sgml-indent-line'."
50 (defcustom sgml-transformation-function
'identity
51 "Default value for `skeleton-transformation-function' in SGML mode."
55 (put 'sgml-transformation-function
'variable-interactive
56 "aTransformation function: ")
57 (defvaralias 'sgml-transformation
'sgml-transformation-function
)
59 (defcustom sgml-mode-hook nil
60 "Hook run by command `sgml-mode'.
61 `text-mode-hook' is run first."
65 ;; As long as Emacs' syntax can't be complemented with predicates to context
66 ;; sensitively confirm the syntax of characters, we have to live with this
67 ;; kludgy kind of tradeoff.
68 (defvar sgml-specials
'(?
\")
69 "List of characters that have a special meaning for SGML mode.
70 This list is used when first loading the `sgml-mode' library.
71 The supported characters and potential disadvantages are:
73 ?\\\" Makes \" in text start a string.
74 ?' Makes ' in text start a string.
75 ?- Makes -- in text start a comment.
77 When only one of ?\\\" or ?' are included, \"'\" or '\"', as can be found in
78 DTDs, start a string. To partially avoid this problem this also makes these
79 self insert as named entities depending on `sgml-quick-keys'.
81 Including ?- has the problem of affecting dashes that have nothing to do
82 with comments, so we normally turn it off.")
84 (defvar sgml-quick-keys nil
85 "Use <, >, &, /, SPC and `sgml-specials' keys \"electrically\" when non-nil.
86 This takes effect when first loading the `sgml-mode' library.")
89 (let ((map (make-keymap)) ;`sparse' doesn't allow binding to charsets.
90 (menu-map (make-sparse-keymap "SGML")))
91 (define-key map
"\C-c\C-i" 'sgml-tags-invisible
)
92 (define-key map
"/" 'sgml-slash
)
93 (define-key map
"\C-c\C-n" 'sgml-name-char
)
94 (define-key map
"\C-c\C-t" 'sgml-tag
)
95 (define-key map
"\C-c\C-a" 'sgml-attributes
)
96 (define-key map
"\C-c\C-b" 'sgml-skip-tag-backward
)
97 (define-key map
[?\C-c left
] 'sgml-skip-tag-backward
)
98 (define-key map
"\C-c\C-f" 'sgml-skip-tag-forward
)
99 (define-key map
[?\C-c right
] 'sgml-skip-tag-forward
)
100 (define-key map
"\C-c\C-d" 'sgml-delete-tag
)
101 (define-key map
"\C-c\^?" 'sgml-delete-tag
)
102 (define-key map
"\C-c?" 'sgml-tag-help
)
103 (define-key map
"\C-c/" 'sgml-close-tag
)
104 (define-key map
"\C-c8" 'sgml-name-8bit-mode
)
105 (define-key map
"\C-c\C-v" 'sgml-validate
)
106 (when sgml-quick-keys
107 (define-key map
"&" 'sgml-name-char
)
108 (define-key map
"<" 'sgml-tag
)
109 (define-key map
" " 'sgml-auto-attributes
)
110 (define-key map
">" 'sgml-maybe-end-tag
)
111 (when (memq ?
\" sgml-specials
)
112 (define-key map
"\"" 'sgml-name-self
))
113 (when (memq ?
' sgml-specials
)
114 (define-key map
"'" 'sgml-name-self
)))
117 (while (< (setq c
(1+ c
)) 256)
118 (aset map c
'sgml-maybe-name-self
)))
119 (define-key map
[menu-bar sgml
] (cons "SGML" menu-map
))
120 (define-key menu-map
[sgml-validate
] '("Validate" . sgml-validate
))
121 (define-key menu-map
[sgml-name-8bit-mode
]
122 '("Toggle 8 Bit Insertion" . sgml-name-8bit-mode
))
123 (define-key menu-map
[sgml-tags-invisible
]
124 '("Toggle Tag Visibility" . sgml-tags-invisible
))
125 (define-key menu-map
[sgml-tag-help
]
126 '("Describe Tag" . sgml-tag-help
))
127 (define-key menu-map
[sgml-delete-tag
]
128 '("Delete Tag" . sgml-delete-tag
))
129 (define-key menu-map
[sgml-skip-tag-forward
]
130 '("Forward Tag" . sgml-skip-tag-forward
))
131 (define-key menu-map
[sgml-skip-tag-backward
]
132 '("Backward Tag" . sgml-skip-tag-backward
))
133 (define-key menu-map
[sgml-attributes
]
134 '("Insert Attributes" . sgml-attributes
))
135 (define-key menu-map
[sgml-tag
] '("Insert Tag" . sgml-tag
))
137 "Keymap for SGML mode. See also `sgml-specials'.")
139 (defun sgml-make-syntax-table (specials)
140 (let ((table (make-syntax-table text-mode-syntax-table
)))
141 (modify-syntax-entry ?
< "(>" table
)
142 (modify-syntax-entry ?
> ")<" table
)
143 (modify-syntax-entry ?
: "_" table
)
144 (modify-syntax-entry ?_
"_" table
)
145 (modify-syntax-entry ?.
"_" table
)
146 (if (memq ?- specials
)
147 (modify-syntax-entry ?-
"_ 1234" table
))
148 (if (memq ?
\" specials
)
149 (modify-syntax-entry ?
\" "\"\"" table
))
150 (if (memq ?
' specials
)
151 (modify-syntax-entry ?
\' "\"'" table
))
154 (defvar sgml-mode-syntax-table
(sgml-make-syntax-table sgml-specials
)
155 "Syntax table used in SGML mode. See also `sgml-specials'.")
157 (defconst sgml-tag-syntax-table
158 (let ((table (sgml-make-syntax-table sgml-specials
)))
159 (dolist (char '(?\
( ?\
) ?\
{ ?\
} ?\
[ ?\
] ?$ ?% ?
& ?
* ?
+ ?
/))
160 (modify-syntax-entry char
"." table
))
161 (unless (memq ?
' sgml-specials
)
162 ;; Avoid that skipping a tag backwards skips any "'" prefixing it.
163 (modify-syntax-entry ?
' "w" table
))
165 "Syntax table used to parse SGML tags.")
167 (defcustom sgml-name-8bit-mode nil
168 "When non-nil, insert non-ASCII characters as named entities."
172 (defvar sgml-char-names
173 [nil nil nil nil nil nil nil nil
174 nil nil nil nil nil nil nil nil
175 nil nil nil nil nil nil nil nil
176 nil nil nil nil nil nil nil nil
177 "nbsp" "excl" "quot" "num" "dollar" "percnt" "amp" "apos"
178 "lpar" "rpar" "ast" "plus" "comma" "hyphen" "period" "sol"
179 nil nil nil nil nil nil nil nil
180 nil nil
"colon" "semi" "lt" "eq" "gt" "quest"
181 "commat" nil nil nil nil nil nil nil
182 nil nil nil nil nil nil nil nil
183 nil nil nil nil nil nil nil nil
184 nil nil nil
"lsqb" nil
"rsqb" "uarr" "lowbar"
185 "lsquo" nil nil nil nil nil nil nil
186 nil nil nil nil nil nil nil nil
187 nil nil nil nil nil nil nil nil
188 nil nil nil
"lcub" "verbar" "rcub" "tilde" nil
189 nil nil nil nil nil nil nil nil
190 nil nil nil nil nil nil nil nil
191 nil nil nil nil nil nil nil nil
192 nil nil nil nil nil nil nil nil
193 "nbsp" "iexcl" "cent" "pound" "curren" "yen" "brvbar" "sect"
194 "uml" "copy" "ordf" "laquo" "not" "shy" "reg" "macr"
195 "ring" "plusmn" "sup2" "sup3" "acute" "micro" "para" "middot"
196 "cedil" "sup1" "ordm" "raquo" "frac14" "frac12" "frac34" "iquest"
197 "Agrave" "Aacute" "Acirc" "Atilde" "Auml" "Aring" "AElig" "Ccedil"
198 "Egrave" "Eacute" "Ecirc" "Euml" "Igrave" "Iacute" "Icirc" "Iuml"
199 "ETH" "Ntilde" "Ograve" "Oacute" "Ocirc" "Otilde" "Ouml" nil
200 "Oslash" "Ugrave" "Uacute" "Ucirc" "Uuml" "Yacute" "THORN" "szlig"
201 "agrave" "aacute" "acirc" "atilde" "auml" "aring" "aelig" "ccedil"
202 "egrave" "eacute" "ecirc" "euml" "igrave" "iacute" "icirc" "iuml"
203 "eth" "ntilde" "ograve" "oacute" "ocirc" "otilde" "ouml" "divide"
204 "oslash" "ugrave" "uacute" "ucirc" "uuml" "yacute" "thorn" "yuml"]
205 "Vector of symbolic character names without `&' and `;'.")
207 (put 'sgml-table
'char-table-extra-slots
0)
209 (defvar sgml-char-names-table
210 (let ((table (make-char-table 'sgml-table
))
214 (setq elt
(aref sgml-char-names i
))
215 (if elt
(aset table
(make-char 'latin-iso8859-1 i
) elt
))
218 "A table for mapping non-ASCII characters into SGML entity names.
219 Currently, only Latin-1 characters are supported.")
221 ;; nsgmls is a free SGML parser in the SP suite available from
222 ;; ftp.jclark.com and otherwise packaged for GNU systems.
223 ;; Its error messages can be parsed by next-error.
224 ;; The -s option suppresses output.
226 (defcustom sgml-validate-command
"nsgmls -s" ; replaced old `sgmls'
227 "The command to validate an SGML document.
228 The file name of current buffer file name will be appended to this,
229 separated by a space."
234 (defvar sgml-saved-validate-command nil
235 "The command last used to validate in this buffer.")
237 ;; I doubt that null end tags are used much for large elements,
238 ;; so use a small distance here.
239 (defcustom sgml-slash-distance
1000
240 "If non-nil, is the maximum distance to search for matching `/'."
241 :type
'(choice (const nil
) integer
)
244 (defconst sgml-namespace-re
"[_[:alpha:]][-_.[:alnum:]]*")
245 (defconst sgml-name-re
"[_:[:alpha:]][-_.:[:alnum:]]*")
246 (defconst sgml-tag-name-re
(concat "<\\([!/?]?" sgml-name-re
"\\)"))
247 (defconst sgml-attrs-re
"\\(?:[^\"'/><]\\|\"[^\"]*\"\\|'[^']*'\\)*")
248 (defconst sgml-start-tag-regex
(concat "<" sgml-name-re sgml-attrs-re
)
249 "Regular expression that matches a non-empty start tag.
250 Any terminating `>' or `/' is not matched.")
252 (defface sgml-namespace
253 '((t (:inherit font-lock-builtin-face
)))
254 "`sgml-mode' face used to highlight the namespace part of identifiers."
256 (defvar sgml-namespace-face
'sgml-namespace
)
259 (defconst sgml-font-lock-keywords-1
260 `((,(concat "<\\([!?]" sgml-name-re
"\\)") 1 font-lock-keyword-face
)
261 ;; We could use the simpler "\\(" sgml-namespace-re ":\\)?" instead,
262 ;; but it would cause a bit more backtracking in the re-matcher.
263 (,(concat "</?\\(" sgml-namespace-re
"\\)\\(?::\\(" sgml-name-re
"\\)\\)?")
264 (1 (if (match-end 2) sgml-namespace-face font-lock-function-name-face
))
265 (2 font-lock-function-name-face nil t
))
266 ;; FIXME: this doesn't cover the variables using a default value.
267 ;; The first shy-group is an important anchor: it prevents an O(n^2)
268 ;; pathological case where we otherwise keep retrying a failing match
269 ;; against a very long word at every possible position within the word.
270 (,(concat "\\(?:^\\|[ \t]\\)\\(" sgml-namespace-re
"\\)\\(?::\\("
271 sgml-name-re
"\\)\\)?=[\"']")
272 (1 (if (match-end 2) sgml-namespace-face font-lock-variable-name-face
))
273 (2 font-lock-variable-name-face nil t
))
274 (,(concat "[&%]" sgml-name-re
";?") . font-lock-variable-name-face
)))
276 (defconst sgml-font-lock-keywords-2
278 sgml-font-lock-keywords-1
281 (regexp-opt (mapcar 'car sgml-tag-face-alist
) t
)
282 "\\([ \t][^>]*\\)?>\\([^<]+\\)</\\1>")
283 '(3 (cdr (assoc-string (match-string 1) sgml-tag-face-alist t
))
286 ;; for font-lock, but must be defvar'ed after
287 ;; sgml-font-lock-keywords-1 and sgml-font-lock-keywords-2 above
288 (defvar sgml-font-lock-keywords sgml-font-lock-keywords-1
289 "*Rules for highlighting SGML code. See also `sgml-tag-face-alist'.")
291 (defvar sgml-font-lock-syntactic-keywords
292 ;; Use the `b' style of comments to avoid interference with the -- ... --
293 ;; comments recognized when `sgml-specials' includes ?-.
294 ;; FIXME: beware of <!--> blabla <!--> !!
295 '(("\\(<\\)!--" (1 "< b"))
296 ("--[ \t\n]*\\(>\\)" (1 "> b"))
297 ;; Double quotes outside of tags should not introduce strings.
298 ;; Be careful to call `syntax-ppss' on a position before the one we're
299 ;; going to change, so as not to need to flush the data we just computed.
300 ("\"" (0 (if (prog1 (zerop (car (syntax-ppss (match-beginning 0))))
301 (goto-char (match-end 0)))
303 "Syntactic keywords for `sgml-mode'.")
306 (defvar sgml-face-tag-alist
()
307 "Alist of face and tag name for facemenu.")
309 (defvar sgml-tag-face-alist
()
310 "Tag names and face or list of faces to fontify with when invisible.
311 When `font-lock-maximum-decoration' is 1 this is always used for fontifying.
312 When more these are fontified together with `sgml-font-lock-keywords'.")
314 (defvar sgml-display-text
()
315 "Tag names as lowercase symbols, and display string when invisible.")
318 (defvar sgml-tags-invisible nil
)
320 (defcustom sgml-tag-alist
321 '(("![" ("ignore" t
) ("include" t
))
326 "Alist of tag names for completing read and insertion rules.
327 This alist is made up as
332 TAGRULE is a list of optionally t (no endtag) or `\\n' (separate endtag by
333 newlines) or a skeleton with nil, t or `\\n' in place of the interactor
334 followed by an ATTRIBUTERULE (for an always present attribute) or an
337 The attribute alist is made up as
339 ((\"attribute\" . ATTRIBUTERULE)
342 ATTRIBUTERULE is a list of optionally t (no value when no input) followed by
343 an optional alist of possible values."
344 :type
'(repeat (cons (string :tag
"Tag Name")
345 (repeat :tag
"Tag Rule" sexp
)))
347 (put 'sgml-tag-alist
'risky-local-variable t
)
349 (defcustom sgml-tag-help
350 '(("!" .
"Empty declaration for comment")
351 ("![" .
"Embed declarations with parser directive")
352 ("!attlist" .
"Tag attributes declaration")
353 ("!doctype" .
"Document type (DTD) declaration")
354 ("!element" .
"Tag declaration")
355 ("!entity" .
"Entity (macro) declaration"))
356 "Alist of tag name and short description."
357 :type
'(repeat (cons (string :tag
"Tag Name")
358 (string :tag
"Description")))
361 (defcustom sgml-xml-mode nil
362 "When non-nil, tag insertion functions will be XML-compliant.
363 It is set to be buffer-local when the file has
364 a DOCTYPE or an XML declaration."
369 (defvar sgml-empty-tags nil
370 "List of tags whose !ELEMENT definition says EMPTY.")
372 (defvar sgml-unclosed-tags nil
373 "List of tags whose !ELEMENT definition says the end-tag is optional.")
375 (defun sgml-xml-guess ()
376 "Guess whether the current buffer is XML. Return non-nil if so."
378 (goto-char (point-min))
379 (or (string= "xml" (file-name-extension (or buffer-file-name
"")))
380 (looking-at "\\s-*<\\?xml")
381 (when (re-search-forward
384 '("<!DOCTYPE" "\\(\\w+\\)" "\\(\\w+\\)"
385 "\"\\([^\"]+\\)\"" "\"\\([^\"]+\\)\"")
388 (string-match "X\\(HT\\)?ML" (match-string 3))))))
390 (defvar v2
) ; free for skeleton
392 (defun sgml-comment-indent-new-line (&optional soft
)
393 (let ((comment-start "-- ")
394 (comment-start-skip "\\(<!\\)?--[ \t]*")
396 (comment-style 'plain
))
397 (comment-indent-new-line soft
)))
399 (defun sgml-mode-facemenu-add-face-function (face end
)
400 (let ((tag-face (cdr (assq face sgml-face-tag-alist
))))
402 (setq tag-face
(funcall skeleton-transformation-function tag-face
))
403 (setq facemenu-end-add-face
(concat "</" tag-face
">"))
404 (concat "<" tag-face
">"))
408 (memq (caar face
) '(:foreground
:background
)))
409 (setq facemenu-end-add-face
"</span>")
410 (format "<span style=\"%s:%s\">"
411 (if (eq (caar face
) :foreground
)
416 (error "Face not configured for %s mode"
417 (format-mode-line mode-name
))))))
419 (defun sgml-fill-nobreak ()
420 ;; Don't break between a tag name and its first argument.
422 (skip-chars-backward " \t")
423 (and (not (zerop (skip-syntax-backward "w_")))
424 (skip-chars-backward "/?!")
425 (eq (char-before) ?
<))))
428 (define-derived-mode sgml-mode text-mode
'(sgml-xml-mode "XML" "SGML")
429 "Major mode for editing SGML documents.
431 Keys <, &, SPC within <>, \", / and ' can be electric depending on
434 An argument of N to a tag-inserting command means to wrap it around
435 the next N words. In Transient Mark mode, when the mark is active,
436 N defaults to -1, which means to wrap it around the current region.
438 If you like upcased tags, put (setq sgml-transformation-function 'upcase)
439 in your `.emacs' file.
441 Use \\[sgml-validate] to validate your document with an SGML parser.
443 Do \\[describe-variable] sgml- SPC to see available variables.
444 Do \\[describe-key] on the following bindings to discover what they do.
446 (make-local-variable 'sgml-saved-validate-command
)
447 (make-local-variable 'facemenu-end-add-face
)
448 ;;(make-local-variable 'facemenu-remove-face-function)
449 ;; A start or end tag by itself on a line separates a paragraph.
450 ;; This is desirable because SGML discards a newline that appears
451 ;; immediately after a start tag or immediately before an end tag.
452 (set (make-local-variable 'paragraph-start
) (concat "[ \t]*$\\|\
453 \[ \t]*</?\\(" sgml-name-re sgml-attrs-re
"\\)?>"))
454 (set (make-local-variable 'paragraph-separate
)
455 (concat paragraph-start
"$"))
456 (set (make-local-variable 'adaptive-fill-regexp
) "[ \t]*")
457 (add-hook 'fill-nobreak-predicate
'sgml-fill-nobreak nil t
)
458 (set (make-local-variable 'indent-line-function
) 'sgml-indent-line
)
459 (set (make-local-variable 'comment-start
) "<!-- ")
460 (set (make-local-variable 'comment-end
) " -->")
461 (set (make-local-variable 'comment-indent-function
) 'sgml-comment-indent
)
462 (set (make-local-variable 'comment-line-break-function
)
463 'sgml-comment-indent-new-line
)
464 (set (make-local-variable 'skeleton-further-elements
)
465 '((completion-ignore-case t
)))
466 (set (make-local-variable 'skeleton-end-hook
)
469 (not (or (eq v2
'\n) (eq (car-safe v2
) '\n)))
470 (newline-and-indent))))
471 (set (make-local-variable 'font-lock-defaults
)
472 '((sgml-font-lock-keywords
473 sgml-font-lock-keywords-1
474 sgml-font-lock-keywords-2
)
476 (font-lock-syntactic-keywords
477 . sgml-font-lock-syntactic-keywords
)))
478 (set (make-local-variable 'facemenu-add-face-function
)
479 'sgml-mode-facemenu-add-face-function
)
480 (set (make-local-variable 'sgml-xml-mode
) (sgml-xml-guess))
483 (set (make-local-variable 'skeleton-transformation-function
)
484 sgml-transformation-function
))
485 ;; This will allow existing comments within declarations to be
487 ;; I can't find a clear description of SGML/XML comments, but it seems that
488 ;; the only reliable ones are <!-- ... --> although it's not clear what
489 ;; "..." can contain. It used to accept -- ... -- as well, but that was
490 ;; apparently a mistake.
491 (set (make-local-variable 'comment-start-skip
) "<!--[ \t]*")
492 (set (make-local-variable 'comment-end-skip
) "[ \t]*--[ \t\n]*>")
493 ;; This definition has an HTML leaning but probably fits well for other modes.
494 (setq imenu-generic-expression
496 ,(concat "<!\\(element\\|entity\\)[ \t\n]+%?[ \t\n]*\\("
500 ,(concat "<[^>]+[ \t\n]+[Ii][Dd]=\\(['\"]"
501 (if sgml-xml-mode
"" "?")
502 "\\)\\(" sgml-name-re
"\\)\\1")
505 ,(concat "<[^>]+[ \t\n]+[Nn][Aa][Mm][Ee]=\\(['\"]"
506 (if sgml-xml-mode
"" "?")
507 "\\)\\(" sgml-name-re
"\\)\\1")
510 (defun sgml-comment-indent ()
511 (if (looking-at "--") comment-column
0))
513 (defun sgml-slash (arg)
514 "Insert ARG slash characters.
515 Behaves electrically if `sgml-quick-keys' is non-nil."
518 ((not (and (eq (char-before) ?
<) (= arg
1)))
519 (sgml-slash-matching arg
))
520 ((eq sgml-quick-keys
'indent
)
522 (indent-according-to-mode))
523 ((eq sgml-quick-keys
'close
)
524 (delete-backward-char 1)
527 (sgml-slash-matching arg
))))
529 (defun sgml-slash-matching (arg)
530 "Insert `/' and display any previous matching `/'.
531 Two `/'s are treated as matching if the first `/' ends a net-enabling
532 start tag, and the second `/' is the corresponding null end tag."
536 (let ((oldpos (point))
541 (if sgml-slash-distance
542 (narrow-to-region (max (point-min)
543 (- (point) sgml-slash-distance
))
545 (if (and (re-search-backward sgml-start-tag-regex
(point-min) t
)
546 (eq (match-end 0) (1- oldpos
)))
548 (goto-char (1- oldpos
))
549 (while (and (not blinkpos
)
550 (search-backward "/" (point-min) t
))
551 (let ((tagend (save-excursion
552 (if (re-search-backward sgml-start-tag-regex
556 (if (eq tagend
(point))
558 (setq blinkpos
(point))
559 (setq level
(1- level
)))
560 (setq level
(1+ level
)))))))
563 (if (pos-visible-in-window-p)
565 (message "Matches %s"
566 (buffer-substring (line-beginning-position)
567 (1+ blinkpos
)))))))))
569 ;; Why doesn't this use the iso-cvt table or, preferably, generate the
570 ;; inverse of the extensive table in the SGML Quail input method? -- fx
571 ;; I guess that's moot since it only works with Latin-1 anyhow.
572 (defun sgml-name-char (&optional char
)
573 "Insert a symbolic character name according to `sgml-char-names'.
574 Non-ASCII chars may be inserted either with the meta key, as in M-SPC for
575 no-break space or M-- for a soft hyphen; or via an input method or
576 encoded keyboard operation."
580 (setq char
(read-quoted-char "Enter char or octal number")))
581 (delete-backward-char 1)
586 (defun sgml-namify-char ()
587 "Change the char before point into its `&name;' equivalent.
588 Uses `sgml-char-names'."
590 (let* ((char (char-before))
593 ((null char
) (error "No char before point"))
594 ((< char
256) (or (aref sgml-char-names char
) char
))
595 ((aref sgml-char-names-table char
))
596 ((encode-char char
'ucs
)))))
598 (error "Don't know the name of `%c'" char
)
599 (delete-backward-char 1)
600 (insert (format (if (numberp name
) "&#%d;" "&%s;") name
)))))
602 (defun sgml-name-self ()
603 "Insert a symbolic character name according to `sgml-char-names'."
605 (sgml-name-char last-command-event
))
607 (defun sgml-maybe-name-self ()
608 "Insert a symbolic character name according to `sgml-char-names'."
610 (if sgml-name-8bit-mode
611 (sgml-name-char last-command-event
)
612 (self-insert-command 1)))
614 (defun sgml-name-8bit-mode ()
615 "Toggle whether to insert named entities instead of non-ASCII characters.
616 This only works for Latin-1 input."
618 (setq sgml-name-8bit-mode
(not sgml-name-8bit-mode
))
619 (message "sgml name entity mode is now %s"
620 (if sgml-name-8bit-mode
"ON" "OFF")))
622 ;; When an element of a skeleton is a string "str", it is passed
623 ;; through `skeleton-transformation-function' and inserted.
624 ;; If "str" is to be inserted literally, one should obtain it as
625 ;; the return value of a function, e.g. (identity "str").
627 (defvar sgml-tag-last nil
)
628 (defvar sgml-tag-history nil
)
629 (define-skeleton sgml-tag
630 "Prompt for a tag and insert it, optionally with attributes.
631 Completion and configuration are done according to `sgml-tag-alist'.
632 If you like tags and attributes in uppercase do \\[set-variable]
633 `skeleton-transformation-function' RET `upcase' RET, or put this
635 (setq sgml-transformation-function 'upcase)"
636 (funcall (or skeleton-transformation-function
'identity
)
639 (if (> (length sgml-tag-last
) 0)
640 (format "Tag (default %s): " sgml-tag-last
)
642 sgml-tag-alist nil nil nil
'sgml-tag-history sgml-tag-last
)))
644 (("") -
1 '(undo-boundary) (identity "<")) |
; see comment above
645 `(("") '(setq v2
(sgml-attributes ,str t
)) ?
>
649 '(("") " [ " _
" ]]"))
650 ((and (eq v2 t
) sgml-xml-mode
(member ,str sgml-empty-tags
))
652 ((or (and (eq v2 t
) (not sgml-xml-mode
)) (string-match "^[/!?]" ,str
))
655 ;; Make sure we don't fall into an infinite loop.
656 ;; For xhtml's `tr' tag, we should maybe use \n instead.
657 (if (eq v2 t
) (setq v2 nil
))
658 ;; We use `identity' to prevent skeleton from passing
659 ;; `str' through `skeleton-transformation-function' a second time.
660 '(("") v2 _ v2
"</" (identity ',str
) ?
>))
662 (cons '("") (cdr v2
)))
664 (append '(("") (car v2
))
666 '(resume: (car v2
) _
"</" (identity ',str
) ?
>))))))
668 (autoload 'skeleton-read
"skeleton")
670 (defun sgml-attributes (tag &optional quiet
)
671 "When at top level of a tag, interactively insert attributes.
673 Completion and configuration of TAG are done according to `sgml-tag-alist'.
674 If QUIET, do not print a message when there are no attributes for TAG."
675 (interactive (list (save-excursion (sgml-beginning-of-tag t
))))
676 (or (stringp tag
) (error "Wrong context for adding attribute"))
678 (let ((completion-ignore-case t
)
679 (alist (cdr (assoc (downcase tag
) sgml-tag-alist
)))
681 (if (or (symbolp (car alist
))
682 (symbolp (car (car alist
))))
683 (setq car
(car alist
)
686 (message "No attributes configured."))
687 (if (stringp (car alist
))
689 (insert (if (eq (preceding-char) ?\s
) "" ?\s
)
690 (funcall skeleton-transformation-function
(car alist
)))
692 (setq i
(length alist
))
695 (insert (funcall skeleton-transformation-function
697 (skeleton-read '(completing-read
700 (if (string= "" attribute
)
702 (sgml-value (assoc (downcase attribute
) alist
))
704 (if (eq (preceding-char) ?\s
)
705 (delete-backward-char 1)))
708 (defun sgml-auto-attributes (arg)
709 "Self insert the character typed; at top level of tag, prompt for attributes.
710 With prefix argument, only self insert."
712 (let ((point (point))
715 (not sgml-tag-alist
) ; no message when nothing configured
716 (symbolp (setq tag
(save-excursion (sgml-beginning-of-tag t
))))
717 (eq (aref tag
0) ?
/))
718 (self-insert-command (prefix-numeric-value arg
))
719 (sgml-attributes tag
)
720 (setq last-command-event ?\s
)
721 (or (> (point) point
)
722 (self-insert-command 1)))))
724 (defun sgml-tag-help (&optional tag
)
725 "Display description of tag TAG. If TAG is omitted, use the tag at point."
727 (list (let ((def (save-excursion
728 (if (eq (following-char) ?
<) (forward-char))
729 (sgml-beginning-of-tag))))
730 (completing-read (if def
731 (format "Tag (default %s): " def
)
733 sgml-tag-alist nil nil nil
734 'sgml-tag-history def
))))
735 (or (and tag
(> (length tag
) 0))
737 (if (eq (following-char) ?
<)
739 (setq tag
(sgml-beginning-of-tag))))
741 (error "No tag selected"))
742 (setq tag
(downcase tag
))
744 (or (cdr (assoc (downcase tag
) sgml-tag-help
))
745 (and (eq (aref tag
0) ?
/)
746 (cdr (assoc (downcase (substring tag
1)) sgml-tag-help
)))
747 "No description available")))
749 (defun sgml-maybe-end-tag (&optional arg
)
750 "Name self unless in position to end a tag or a prefix ARG is given."
752 (if (or arg
(eq (car (sgml-lexical-context)) 'tag
))
753 (self-insert-command (prefix-numeric-value arg
))
756 (defun sgml-skip-tag-backward (arg)
757 "Skip to beginning of tag or matching opening tag if present.
758 With prefix argument ARG, repeat this ARG times.
759 Return non-nil if we skipped over matched tags."
761 ;; FIXME: use sgml-get-context or something similar.
764 (search-backward "<" nil t
)
765 (if (looking-at "</\\([^ \n\t>]+\\)")
766 ;; end tag, skip any nested pairs
767 (let ((case-fold-search t
)
768 (re (concat "</?" (regexp-quote (match-string 1))
769 ;; Ignore empty tags like <foo/>.
770 "\\([^>]*[^/>]\\)?>")))
771 (while (and (re-search-backward re nil t
)
772 (eq (char-after (1+ (point))) ?
/))
774 (sgml-skip-tag-backward 1)))
779 (defvar sgml-electric-tag-pair-overlays nil
)
780 (defvar sgml-electric-tag-pair-timer nil
)
782 (defun sgml-electric-tag-pair-before-change-function (beg end
)
786 (skip-chars-backward "[:alnum:]-_.:")
787 (if (and ;; (<= (point) beg) ; This poses problems for downcase-word.
788 (or (eq (char-before) ?
<)
789 (and (eq (char-before) ?
/)
790 (eq (char-before (1- (point))) ?
<)))
791 (null (get-char-property (point) 'text-clones
)))
792 (let* ((endp (eq (char-before) ?
/))
794 (cl-end (progn (skip-chars-forward "[:alnum:]-_.:") (point)))
797 (when (sgml-skip-tag-backward 1) (forward-char 1) t
)
798 (with-syntax-table sgml-tag-syntax-table
800 (when (sgml-skip-tag-forward 1)
804 (clones (get-char-property (point) 'text-clones
)))
807 (equal (buffer-substring cl-start cl-end
)
808 (buffer-substring (point)
810 (skip-chars-forward "[:alnum:]-_.:")
812 (or (not endp
) (eq (char-after cl-end
) ?
>)))
814 (message "sgml-electric-tag-pair-before-change-function: deleting old OLs")
815 (mapc 'delete-overlay clones
))
816 (message "sgml-electric-tag-pair-before-change-function: new clone")
817 (text-clone-create cl-start cl-end
'spread
"[[:alnum:]-_.:]+")
818 (setq sgml-electric-tag-pair-overlays
819 (append (get-char-property (point) 'text-clones
)
820 sgml-electric-tag-pair-overlays
))))))
822 (error (message "Error in sgml-electric-pair-mode: %s" err
))))
824 (defun sgml-electric-tag-pair-flush-overlays ()
825 (while sgml-electric-tag-pair-overlays
826 (delete-overlay (pop sgml-electric-tag-pair-overlays
))))
828 (define-minor-mode sgml-electric-tag-pair-mode
829 "Automatically update the closing tag when editing the opening one."
831 (if sgml-electric-tag-pair-mode
833 (add-hook 'before-change-functions
834 'sgml-electric-tag-pair-before-change-function
836 (unless sgml-electric-tag-pair-timer
837 (setq sgml-electric-tag-pair-timer
838 (run-with-idle-timer 5 'repeat
'sgml-electric-tag-pair-flush-overlays
))))
839 (remove-hook 'before-change-functions
840 'sgml-electric-tag-pair-before-change-function
842 ;; We leave the timer running for other buffers.
846 (defun sgml-skip-tag-forward (arg)
847 "Skip to end of tag or matching closing tag if present.
848 With prefix argument ARG, repeat this ARG times.
849 Return t if after a closing tag."
851 ;; FIXME: Use sgml-get-context or something similar.
852 ;; It currently might jump to an unrelated </P> if the <P>
853 ;; we're skipping has no matching </P>.
855 (with-syntax-table sgml-tag-syntax-table
857 (skip-chars-forward "^<>")
858 (if (eq (following-char) ?
>)
860 (if (looking-at "<\\([^/ \n\t>]+\\)\\([^>]*[^/>]\\)?>")
861 ;; start tag, skip any nested same pairs _and_ closing tag
862 (let ((case-fold-search t
)
863 (re (concat "</?" (regexp-quote (match-string 1))
864 ;; Ignore empty tags like <foo/>.
865 "\\([^>]*[^/>]\\)?>"))
869 ;; FIXME: This re-search-forward will mistakenly match
870 ;; tag-like text inside attributes.
871 (while (and (re-search-forward re nil t
)
873 (eq (char-after (1+ (match-beginning 0))) ?
/)))
874 (goto-char (match-beginning 0))
875 (sgml-skip-tag-forward 1))
884 (defsubst sgml-looking-back-at
(str)
885 "Return t if the test before point matches STR."
886 (let ((start (- (point) (length str
))))
887 (and (>= start
(point-min))
888 (equal str
(buffer-substring-no-properties start
(point))))))
890 (defun sgml-delete-tag (arg)
891 ;; FIXME: Should be called sgml-kill-tag or should not touch the kill-ring.
892 "Delete tag on or after cursor, and matching closing or opening tag.
893 With prefix argument ARG, repeat this ARG times."
898 (if (looking-at "[ \t\n]*<")
900 (if (eq (char-after (match-end 0)) ?
/)
904 (goto-char (match-end 0))))
906 (or (save-excursion (setq close
(sgml-beginning-of-tag)
907 close
(and (stringp close
)
908 (eq (aref close
0) ?
/)
910 ;; not on closing tag
911 (let ((point (point)))
912 (sgml-skip-tag-backward 1)
913 (if (or (not (eq (following-char) ?
<))
917 (error "Not on or before tag")))))
920 (sgml-skip-tag-backward 1)
925 (when (and (sgml-skip-tag-forward 1)
926 (not (sgml-looking-back-at "/>")))
928 ;; Delete any resulting empty line. If we didn't kill-sexp,
929 ;; this *should* do nothing, because we're right after the tag.
930 (if (progn (forward-line 0) (looking-at "\\(?:[ \t]*$\\)\n?"))
931 (delete-region (match-beginning 0) (match-end 0)))
934 (if (progn (forward-line 0) (looking-at "\\(?:[ \t]*$\\)\n?"))
935 (delete-region (match-beginning 0) (match-end 0)))))
936 (setq arg
(1- arg
))))
939 ;; Put read-only last to enable setting this even when read-only enabled.
940 (or (get 'sgml-tag
'invisible
)
942 (append '(invisible t
943 point-entered sgml-point-entered
946 (symbol-plist 'sgml-tag
))))
948 (defun sgml-tags-invisible (arg)
949 "Toggle visibility of existing tags."
951 (let ((modified (buffer-modified-p))
952 (inhibit-read-only t
)
953 (inhibit-modification-hooks t
)
954 ;; Avoid spurious the `file-locked' checks.
955 (buffer-file-name nil
)
956 ;; This is needed in case font lock gets called,
957 ;; since it moves point and might call sgml-point-entered.
958 ;; How could it get called? -stef
959 (inhibit-point-motion-hooks t
)
963 (goto-char (point-min))
964 (if (set (make-local-variable 'sgml-tags-invisible
)
966 (>= (prefix-numeric-value arg
) 0)
967 (not sgml-tags-invisible
)))
968 (while (re-search-forward sgml-tag-name-re nil t
)
970 (cdr (assq (intern-soft (downcase (match-string 1)))
972 (goto-char (match-beginning 0))
973 (and (stringp string
)
974 (not (overlays-at (point)))
975 (let ((ol (make-overlay (point) (match-beginning 1))))
976 (overlay-put ol
'before-string string
)
977 (overlay-put ol
'sgml-tag t
)))
978 (put-text-property (point)
979 (progn (forward-list) (point))
980 'category
'sgml-tag
))
981 (let ((pos (point-min)))
982 (while (< (setq pos
(next-overlay-change pos
)) (point-max))
983 (dolist (ol (overlays-at pos
))
984 (if (overlay-get ol
'sgml-tag
)
985 (delete-overlay ol
)))))
986 (remove-text-properties (point-min) (point-max) '(category nil
))))
987 (restore-buffer-modified-p modified
))
988 (run-hooks 'sgml-tags-invisible-hook
)
991 (defun sgml-point-entered (x y
)
992 ;; Show preceding or following hidden tag, depending of cursor direction.
993 (let ((inhibit-point-motion-hooks t
))
996 (message "Invisible tag: %s"
997 ;; Strip properties, otherwise, the text is invisible.
998 (buffer-substring-no-properties
1000 (if (or (and (> x y
)
1001 (not (eq (following-char) ?
<)))
1003 (eq (preceding-char) ?
>)))
1010 (defun sgml-validate (command)
1011 "Validate an SGML document.
1012 Runs COMMAND, a shell command, in a separate process asynchronously
1013 with output going to the buffer `*compilation*'.
1014 You can then use the command \\[next-error] to find the next error message
1015 and move to the line in the SGML document that caused it."
1017 (list (read-string "Validate command: "
1018 (or sgml-saved-validate-command
1019 (concat sgml-validate-command
1021 (shell-quote-argument
1022 (let ((name (buffer-file-name)))
1024 (file-name-nondirectory name
)))))))))
1025 (setq sgml-saved-validate-command command
)
1026 (save-some-buffers (not compilation-ask-about-save
) nil
)
1027 (compilation-start command
))
1029 (defsubst sgml-at-indentation-p
()
1030 "Return true if point is at the first non-whitespace character on the line."
1032 (skip-chars-backward " \t")
1035 (defun sgml-lexical-context (&optional limit
)
1036 "Return the lexical context at point as (TYPE . START).
1037 START is the location of the start of the lexical element.
1038 TYPE is one of `string', `comment', `tag', `cdata', `pi', or `text'.
1040 Optional argument LIMIT is the position to start parsing from.
1041 If nil, start from a preceding tag at indentation."
1047 ;; Skip tags backwards until we find one at indentation
1048 (while (and (ignore-errors (sgml-parse-tag-backward))
1049 (not (sgml-at-indentation-p)))))
1050 (with-syntax-table sgml-tag-syntax-table
1051 (while (< (point) pos
)
1052 ;; When entering this loop we're inside text.
1053 (setq text-start
(point))
1054 (skip-chars-forward "^<" pos
)
1058 ;; We got to the end without seeing a tag.
1060 ((looking-at "<!\\[[A-Z]+\\[")
1061 ;; We've found a CDATA section or similar.
1062 (let ((cdata-start (point)))
1063 (unless (search-forward "]]>" pos
'move
)
1064 (list 0 nil nil
'cdata nil nil nil nil cdata-start
))))
1065 ((looking-at comment-start-skip
)
1066 ;; parse-partial-sexp doesn't handle <!-- comments -->,
1067 ;; or only if ?- is in sgml-specials, so match explicitly
1068 (let ((start (point)))
1069 (unless (re-search-forward comment-end-skip pos
'move
)
1070 (list 0 nil nil nil t nil nil nil start
))))
1071 ((and sgml-xml-mode
(looking-at "<\\?"))
1072 ;; Processing Instructions.
1073 ;; In SGML, it's basically a normal tag of the form
1074 ;; <?NAME ...> but in XML, it takes the form <? ... ?>.
1075 (let ((pi-start (point)))
1076 (unless (search-forward "?>" pos
'move
)
1077 (list 0 nil nil
'pi nil nil nil nil pi-start
))))
1079 ;; We've reached a tag. Parse it.
1080 ;; FIXME: Handle net-enabling start-tags
1081 (parse-partial-sexp (point) pos
0))))))
1083 ((memq (nth 3 state
) '(cdata pi
)) (cons (nth 3 state
) (nth 8 state
)))
1084 ((nth 3 state
) (cons 'string
(nth 8 state
)))
1085 ((nth 4 state
) (cons 'comment
(nth 8 state
)))
1086 ((and state
(> (nth 0 state
) 0)) (cons 'tag
(nth 1 state
)))
1087 (t (cons 'text text-start
))))))
1089 (defun sgml-beginning-of-tag (&optional top-level
)
1090 "Skip to beginning of tag and return its name.
1091 If this can't be done, return nil."
1092 (let ((context (sgml-lexical-context)))
1093 (if (eq (car context
) 'tag
)
1095 (goto-char (cdr context
))
1096 (when (looking-at sgml-tag-name-re
)
1097 (match-string-no-properties 1)))
1099 (when (not (eq (car context
) 'text
))
1100 (goto-char (cdr context
))
1101 (sgml-beginning-of-tag t
))))))
1103 (defun sgml-value (alist)
1104 "Interactively insert value taken from attribute-rule ALIST.
1105 See `sgml-tag-alist' for info about attribute rules."
1106 (setq alist
(cdr alist
))
1107 (if (stringp (car alist
))
1108 (insert "=\"" (car alist
) ?
\")
1109 (if (and (eq (car alist
) t
) (not sgml-xml-mode
))
1112 (setq alist
(skeleton-read '(completing-read "Value: " (cdr alist
))))
1113 (if (string< "" alist
)
1115 (delete-backward-char 2)))
1118 (insert (skeleton-read '(completing-read "Value: " alist
)))
1120 (insert (skeleton-read '(read-string "Value: ")))))
1123 (defun sgml-quote (start end
&optional unquotep
)
1124 "Quote SGML text in region START ... END.
1125 Only &, < and > are quoted, the rest is left untouched.
1126 With prefix argument UNQUOTEP, unquote the region."
1127 (interactive "r\nP")
1129 (narrow-to-region start end
)
1130 (goto-char (point-min))
1132 ;; FIXME: We should unquote other named character references as well.
1133 (while (re-search-forward
1134 "\\(&\\(amp\\|\\(l\\|\\(g\\)\\)t\\)\\)[][<>&;\n\t \"%!'(),/=?]"
1136 (replace-match (if (match-end 4) ">" (if (match-end 3) "<" "&")) t t
1137 nil
(if (eq (char-before (match-end 0)) ?\
;) 0 1)))
1138 (while (re-search-forward "[&<>]" nil t
)
1139 (replace-match (cdr (assq (char-before) '((?
& .
"&")
1144 (defun sgml-pretty-print (beg end
)
1145 "Simple-minded pretty printer for SGML.
1146 Re-indents the code and inserts newlines between BEG and END.
1147 You might want to turn on `auto-fill-mode' to get better results."
1149 ;; - insert newline between some start-tag and text.
1150 ;; - don't insert newline in front of some end-tags.
1158 ;; Don't use narrowing because it screws up auto-indent.
1159 (setq end
(copy-marker end t
))
1160 (with-syntax-table sgml-tag-syntax-table
1161 (while (re-search-forward "<" end t
)
1162 (goto-char (match-beginning 0))
1163 (unless (or ;;(looking-at "</")
1164 (progn (skip-chars-backward " \t") (bolp)))
1165 (reindent-then-newline-and-indent))
1167 ;; (indent-region beg end)
1173 (defstruct (sgml-tag
1174 (:constructor sgml-make-tag
(type start end name
)))
1175 type start end name
)
1177 (defsubst sgml-parse-tag-name
()
1178 "Skip past a tag-name, and return the name."
1179 (buffer-substring-no-properties
1180 (point) (progn (skip-syntax-forward "w_") (point))))
1182 (defun sgml-tag-text-p (start end
)
1183 "Return non-nil if text between START and END is a tag.
1184 Checks among other things that the tag does not contain spurious
1185 unquoted < or > chars inside, which would indicate that it
1186 really isn't a tag after all."
1188 (with-syntax-table sgml-tag-syntax-table
1189 (let ((pps (parse-partial-sexp start end
2)))
1190 (and (= (nth 0 pps
) 0))))))
1192 (defun sgml-parse-tag-backward (&optional limit
)
1193 "Parse an SGML tag backward, and return information about the tag.
1194 Assume that parsing starts from within a textual context.
1195 Leave point at the beginning of the tag."
1197 (let (tag-type tag-start tag-end name
)
1198 (or (re-search-backward "[<>]" limit
'move
)
1199 (error "No tag found"))
1200 (when (eq (char-after) ?
<)
1201 ;; Oops!! Looks like we were not in a textual context after all!.
1202 ;; Let's try to recover.
1203 ;; Remember the tag-start so we don't need to look for it later.
1204 ;; This is not just an optimization but also makes sure we don't get
1205 ;; stuck in infloops in cases where "looking back for <" would not go
1207 (setq tag-start
(point))
1208 (with-syntax-table sgml-tag-syntax-table
1209 (let ((pos (point)))
1211 ;; FIXME: This does not correctly skip over PI an CDATA tags.
1214 ;; This < seems to be just a spurious one, let's ignore it.
1216 (throw 'found
(sgml-parse-tag-backward limit
))))
1217 ;; Check it is really a tag, without any extra < or > inside.
1218 (unless (sgml-tag-text-p pos
(point))
1220 (throw 'found
(sgml-parse-tag-backward limit
)))
1221 (forward-char -
1))))
1222 (setq tag-end
(1+ (point)))
1224 ((sgml-looking-back-at "--") ; comment
1225 (setq tag-type
'comment
1226 tag-start
(or tag-start
(search-backward "<!--" nil t
))))
1227 ((sgml-looking-back-at "]]") ; cdata
1228 (setq tag-type
'cdata
1229 tag-start
(or tag-start
1230 (re-search-backward "<!\\[[A-Z]+\\[" nil t
))))
1231 ((sgml-looking-back-at "?") ; XML processing-instruction
1233 ;; IIUC: SGML processing instructions take the form <?foo ...>
1234 ;; i.e. a "normal" tag, handled below. In XML this is changed
1235 ;; to <?foo ... ?> where "..." can contain < and > and even <?
1236 ;; but not ?>. This means that when parsing backward, there's
1237 ;; no easy way to make sure that we find the real beginning of
1239 tag-start
(or tag-start
(search-backward "<?" nil t
))))
1243 (with-syntax-table sgml-tag-syntax-table
1248 ;; This > isn't really the end of a tag. Skip it.
1249 (goto-char (1- tag-end
))
1250 (throw 'found
(sgml-parse-tag-backward limit
))))
1252 (goto-char (1+ tag-start
))
1254 (?
! (setq tag-type
'decl
)) ; declaration
1255 (??
(setq tag-type
'pi
)) ; processing-instruction
1256 (?%
(setq tag-type
'jsp
)) ; JSP tags
1259 (setq tag-type
'close
1260 name
(sgml-parse-tag-name)))
1261 (t ; open or empty tag
1262 (setq tag-type
'open
1263 name
(sgml-parse-tag-name))
1264 (if (or (eq ?
/ (char-before (- tag-end
1)))
1265 (sgml-empty-tag-p name
))
1266 (setq tag-type
'empty
))))))
1267 (goto-char tag-start
)
1268 (sgml-make-tag tag-type tag-start tag-end name
))))
1270 (defun sgml-get-context (&optional until
)
1271 "Determine the context of the current position.
1272 By default, parse until we find a start-tag as the first thing on a line.
1273 If UNTIL is `empty', return even if the context is empty (i.e.
1274 we just skipped over some element and got to a beginning of line).
1276 The context is a list of tag-info structures. The last one is the tag
1277 immediately enclosing the current position.
1279 Point is assumed to be outside of any tag. If we discover that it's
1280 not the case, the first tag returned is the one inside which we are."
1281 (let ((here (point))
1286 ;; CONTEXT keeps track of the tag-stack
1287 ;; STACK keeps track of the end tags we've seen (and thus the start-tags
1288 ;; we'll have to ignore) when skipping over matching open..close pairs.
1289 ;; IGNORE is a list of tags that can be ignored because they have been
1290 ;; closed implicitly.
1291 (skip-chars-backward " \t\n") ; Make sure we're not at indentation.
1293 (and (not (eq until
'now
))
1295 (not (if until
(eq until
'empty
) context
))
1296 (not (sgml-at-indentation-p))
1298 (/= (point) (sgml-tag-start (car context
)))
1299 (sgml-unclosed-tag-p (sgml-tag-name (car context
)))))
1300 (setq tag-info
(ignore-errors (sgml-parse-tag-backward))))
1302 ;; This tag may enclose things we thought were tags. If so,
1305 (> (sgml-tag-end tag-info
)
1306 (sgml-tag-end (car context
))))
1307 (setq context
(cdr context
)))
1310 ((> (sgml-tag-end tag-info
) here
)
1311 ;; Oops!! Looks like we were not outside of any tag, after all.
1312 (push tag-info context
)
1316 ((eq (sgml-tag-type tag-info
) 'open
)
1319 (if (assoc-string (sgml-tag-name tag-info
) ignore t
)
1320 ;; There was an implicit end-tag.
1322 (push tag-info context
)
1323 ;; We're changing context so the tags implicitly closed inside
1324 ;; the previous context aren't implicitly closed here any more.
1325 ;; [ Well, actually it depends, but we don't have the info about
1326 ;; when it doesn't and when it does. --Stef ]
1328 ((eq t
(compare-strings (sgml-tag-name tag-info
) nil nil
1329 (car stack
) nil nil t
))
1330 (setq stack
(cdr stack
)))
1332 ;; The open and close tags don't match.
1333 (if (not sgml-xml-mode
)
1334 (unless (sgml-unclosed-tag-p (sgml-tag-name tag-info
))
1335 (message "Unclosed tag <%s>" (sgml-tag-name tag-info
))
1337 ;; We could just assume that the tag is simply not closed
1338 ;; but it's a bad assumption when tags *are* closed but
1339 ;; not properly nested.
1340 (while (and (cdr tmp
)
1341 (not (eq t
(compare-strings
1342 (sgml-tag-name tag-info
) nil nil
1343 (cadr tmp
) nil nil t
))))
1344 (setq tmp
(cdr tmp
)))
1345 (if (cdr tmp
) (setcdr tmp
(cddr tmp
)))))
1346 (message "Unmatched tags <%s> and </%s>"
1347 (sgml-tag-name tag-info
) (pop stack
)))))
1349 (if (and (null stack
) (sgml-unclosed-tag-p (sgml-tag-name tag-info
)))
1350 ;; This is a top-level open of an implicitly closed tag, so any
1351 ;; occurrence of such an open tag at the same level can be ignored
1352 ;; because it's been implicitly closed.
1353 (push (sgml-tag-name tag-info
) ignore
)))
1356 ((eq (sgml-tag-type tag-info
) 'close
)
1357 (if (sgml-empty-tag-p (sgml-tag-name tag-info
))
1358 (message "Spurious </%s>: empty tag" (sgml-tag-name tag-info
))
1359 (push (sgml-tag-name tag-info
) stack
)))
1365 (defun sgml-show-context (&optional full
)
1366 "Display the current context.
1367 If FULL is non-nil, parse back to the beginning of the buffer."
1369 (with-output-to-temp-buffer "*XML Context*"
1371 (let ((context (sgml-get-context)))
1374 (while (setq more
(sgml-get-context))
1375 (setq context
(nconc more context
)))))
1379 ;; Editing shortcuts
1381 (defun sgml-close-tag ()
1382 "Close current element.
1383 Depending on context, inserts a matching close-tag, or closes
1384 the current start-tag or the current comment or the current cdata, ..."
1386 (case (car (sgml-lexical-context))
1387 (comment (insert " -->"))
1388 (cdata (insert "]]>"))
1390 (jsp (insert " %>"))
1391 (tag (insert " />"))
1393 (let ((context (save-excursion (sgml-get-context))))
1396 (insert "</" (sgml-tag-name (car (last context
))) ">")
1397 (indent-according-to-mode)))))
1399 (error "Nothing to close"))))
1401 (defun sgml-empty-tag-p (tag-name)
1402 "Return non-nil if TAG-NAME is an implicitly empty tag."
1403 (and (not sgml-xml-mode
)
1404 (assoc-string tag-name sgml-empty-tags
'ignore-case
)))
1406 (defun sgml-unclosed-tag-p (tag-name)
1407 "Return non-nil if TAG-NAME is a tag for which an end-tag is optional."
1408 (and (not sgml-xml-mode
)
1409 (assoc-string tag-name sgml-unclosed-tags
'ignore-case
)))
1412 (defun sgml-calculate-indent (&optional lcon
)
1413 "Calculate the column to which this line should be indented.
1414 LCON is the lexical context, if any."
1415 (unless lcon
(setq lcon
(sgml-lexical-context)))
1417 ;; Indent comment-start markers inside <!-- just like comment-end markers.
1418 (if (and (eq (car lcon
) 'tag
)
1420 (save-excursion (goto-char (cdr lcon
)) (looking-at "<!--")))
1421 (setq lcon
(cons 'comment
(+ (cdr lcon
) 2))))
1426 ;; Go back to previous non-empty line.
1427 (while (and (> (point) (cdr lcon
))
1428 (zerop (forward-line -
1))
1429 (looking-at "[ \t]*$")))
1430 (if (> (point) (cdr lcon
))
1431 ;; Previous line is inside the string.
1432 (current-indentation)
1433 (goto-char (cdr lcon
))
1434 (1+ (current-column))))
1437 (let ((mark (looking-at "--")))
1438 ;; Go back to previous non-empty line.
1439 (while (and (> (point) (cdr lcon
))
1440 (zerop (forward-line -
1))
1441 (or (looking-at "[ \t]*$")
1442 (if mark
(not (looking-at "[ \t]*--"))))))
1443 (if (> (point) (cdr lcon
))
1444 ;; Previous line is inside the comment.
1445 (skip-chars-forward " \t")
1446 (goto-char (cdr lcon
))
1447 ;; Skip `<!' to get to the `--' with which we want to align.
1448 (search-forward "--")
1449 (goto-char (match-beginning 0)))
1450 (when (and (not mark
) (looking-at "--"))
1451 (forward-char 2) (skip-chars-forward " \t"))
1454 ;; We don't know how to indent it. Let's be honest about it.
1456 ;; We don't know how to indent it. Let's be honest about it.
1460 (goto-char (1+ (cdr lcon
)))
1461 (skip-chars-forward "^ \t\n") ;Skip tag name.
1462 (skip-chars-forward " \t")
1465 ;; This is the first attribute: indent.
1466 (goto-char (1+ (cdr lcon
)))
1467 (+ (current-column) sgml-basic-offset
)))
1470 (while (looking-at "</")
1472 (skip-chars-forward " \t"))
1473 (let* ((here (point))
1474 (unclosed (and ;; (not sgml-xml-mode)
1475 (looking-at sgml-tag-name-re
)
1476 (assoc-string (match-string 1)
1477 sgml-unclosed-tags
'ignore-case
)
1480 ;; If possible, align on the previous non-empty text line.
1481 ;; Otherwise, do a more serious parsing to find the
1482 ;; tag(s) relative to which we should be indenting.
1483 (if (and (not unclosed
) (skip-chars-backward " \t")
1484 (< (skip-chars-backward " \t\n") 0)
1485 (back-to-indentation)
1486 (> (point) (cdr lcon
)))
1489 (nreverse (sgml-get-context (if unclosed nil
'empty
)))))
1491 ;; Ignore previous unclosed start-tag in context.
1492 (while (and context unclosed
1493 (eq t
(compare-strings
1494 (sgml-tag-name (car context
)) nil nil
1495 unclosed nil nil t
)))
1496 (setq context
(cdr context
)))
1497 ;; Indent to reflect nesting.
1499 ;; If we were not in a text context after all, let's try again.
1500 ((and context
(> (sgml-tag-end (car context
)) here
))
1502 (sgml-calculate-indent
1503 (cons (if (memq (sgml-tag-type (car context
)) '(comment cdata
))
1504 (sgml-tag-type (car context
)) 'tag
)
1505 (sgml-tag-start (car context
)))))
1506 ;; Align on the first element after the nearest open-tag, if any.
1508 (goto-char (sgml-tag-end (car context
)))
1509 (skip-chars-forward " \t\n")
1510 (< (point) here
) (sgml-at-indentation-p))
1515 (* sgml-basic-offset
(length context
)))))))
1518 (error "Unrecognized context %s" (car lcon
)))
1522 (defun sgml-indent-line ()
1523 "Indent the current line as SGML."
1525 (let* ((savep (point))
1528 (back-to-indentation)
1529 (if (>= (point) savep
) (setq savep nil
))
1530 (sgml-calculate-indent))))
1531 (if (null indent-col
)
1534 (save-excursion (indent-line-to indent-col
))
1535 (indent-line-to indent-col
)))))
1537 (defun sgml-guess-indent ()
1538 "Guess an appropriate value for `sgml-basic-offset'.
1539 Base the guessed identation level on the first indented tag in the buffer.
1540 Add this to `sgml-mode-hook' for convenience."
1543 (goto-char (point-min))
1544 (if (re-search-forward "^\\([ \t]+\\)<" 500 'noerror
)
1546 (set (make-local-variable 'sgml-basic-offset
)
1547 (1- (current-column)))
1548 (message "Guessed sgml-basic-offset = %d"
1552 (defun sgml-parse-dtd ()
1553 "Simplistic parse of the current buffer as a DTD.
1554 Currently just returns (EMPTY-TAGS UNCLOSED-TAGS)."
1555 (goto-char (point-min))
1558 (while (re-search-forward "<!ELEMENT[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+[-O][ \t\n]+\\([-O]\\)[ \t\n]+\\([^ \t\n]+\\)" nil t
)
1560 ((string= (match-string 3) "EMPTY")
1561 (push (match-string-no-properties 1) empty
))
1562 ((string= (match-string 2) "O")
1563 (push (match-string-no-properties 1) unclosed
))))
1564 (setq empty
(sort (mapcar 'downcase empty
) 'string
<))
1565 (setq unclosed
(sort (mapcar 'downcase unclosed
) 'string
<))
1566 (list empty unclosed
)))
1570 (defcustom html-mode-hook nil
1571 "Hook run by command `html-mode'.
1572 `text-mode-hook' and `sgml-mode-hook' are run first."
1575 :options
'(html-autoview-mode))
1577 (defvar html-quick-keys sgml-quick-keys
1578 "Use C-c X combinations for quick insertion of frequent tags when non-nil.
1579 This defaults to `sgml-quick-keys'.
1580 This takes effect when first loading the library.")
1582 (defvar html-mode-map
1583 (let ((map (make-sparse-keymap))
1584 (menu-map (make-sparse-keymap "HTML")))
1585 (set-keymap-parent map sgml-mode-map
)
1586 (define-key map
"\C-c6" 'html-headline-6
)
1587 (define-key map
"\C-c5" 'html-headline-5
)
1588 (define-key map
"\C-c4" 'html-headline-4
)
1589 (define-key map
"\C-c3" 'html-headline-3
)
1590 (define-key map
"\C-c2" 'html-headline-2
)
1591 (define-key map
"\C-c1" 'html-headline-1
)
1592 (define-key map
"\C-c\r" 'html-paragraph
)
1593 (define-key map
"\C-c\n" 'html-line
)
1594 (define-key map
"\C-c\C-c-" 'html-horizontal-rule
)
1595 (define-key map
"\C-c\C-co" 'html-ordered-list
)
1596 (define-key map
"\C-c\C-cu" 'html-unordered-list
)
1597 (define-key map
"\C-c\C-cr" 'html-radio-buttons
)
1598 (define-key map
"\C-c\C-cc" 'html-checkboxes
)
1599 (define-key map
"\C-c\C-cl" 'html-list-item
)
1600 (define-key map
"\C-c\C-ch" 'html-href-anchor
)
1601 (define-key map
"\C-c\C-cn" 'html-name-anchor
)
1602 (define-key map
"\C-c\C-ci" 'html-image
)
1603 (when html-quick-keys
1604 (define-key map
"\C-c-" 'html-horizontal-rule
)
1605 (define-key map
"\C-co" 'html-ordered-list
)
1606 (define-key map
"\C-cu" 'html-unordered-list
)
1607 (define-key map
"\C-cr" 'html-radio-buttons
)
1608 (define-key map
"\C-cc" 'html-checkboxes
)
1609 (define-key map
"\C-cl" 'html-list-item
)
1610 (define-key map
"\C-ch" 'html-href-anchor
)
1611 (define-key map
"\C-cn" 'html-name-anchor
)
1612 (define-key map
"\C-ci" 'html-image
))
1613 (define-key map
"\C-c\C-s" 'html-autoview-mode
)
1614 (define-key map
"\C-c\C-v" 'browse-url-of-buffer
)
1615 (define-key map
[menu-bar html
] (cons "HTML" menu-map
))
1616 (define-key menu-map
[html-autoview-mode
]
1617 '("Toggle Autoviewing" . html-autoview-mode
))
1618 (define-key menu-map
[browse-url-of-buffer
]
1619 '("View Buffer Contents" . browse-url-of-buffer
))
1620 (define-key menu-map
[nil] '("--"))
1621 ;;(define-key menu-map "6" '("Heading 6" . html-headline-6))
1622 ;;(define-key menu-map "5" '("Heading 5" . html-headline-5))
1623 ;;(define-key menu-map "4" '("Heading 4" . html-headline-4))
1624 (define-key menu-map "3" '("Heading 3" . html-headline-3))
1625 (define-key menu-map "2" '("Heading 2" . html-headline-2))
1626 (define-key menu-map "1" '("Heading 1" . html-headline-1))
1627 (define-key menu-map "l" '("Radio Buttons" . html-radio-buttons))
1628 (define-key menu-map "c" '("Checkboxes" . html-checkboxes))
1629 (define-key menu-map "l" '("List Item" . html-list-item))
1630 (define-key menu-map "u" '("Unordered List" . html-unordered-list))
1631 (define-key menu-map "o" '("Ordered List" . html-ordered-list))
1632 (define-key menu-map "-" '("Horizontal Rule" . html-horizontal-rule))
1633 (define-key menu-map "\n" '("Line Break" . html-line))
1634 (define-key menu-map "\r" '("Paragraph" . html-paragraph))
1635 (define-key menu-map "i" '("Image" . html-image))
1636 (define-key menu-map "h" '("Href Anchor" . html-href-anchor))
1637 (define-key menu-map "n" '("Name Anchor" . html-name-anchor))
1639 "Keymap for commands for use in HTML mode.")
1641 (defvar html-face-tag-alist
1646 "Value of `sgml-face-tag-alist' for HTML mode.")
1648 (defvar html-tag-face-alist
1651 ("blink" . highlight)
1654 ("h1" bold underline)
1655 ("h2" bold-italic underline)
1656 ("h3" italic underline)
1665 ("title" bold underline)
1669 "Value of `sgml-tag-face-alist' for HTML mode.")
1671 (defvar html-display-text
1675 "Value of `sgml-display-text' for HTML mode.")
1678 ;; should code exactly HTML 3 here when that is finished
1679 (defvar html-tag-alist
1680 (let* ((1-7 '(("1") ("2") ("3") ("4") ("5") ("6") ("7")))
1681 (1-9 `(,@1-7 ("8") ("9")))
1682 (align '(("align" ("left") ("center") ("right"))))
1683 (valign '(("top") ("middle") ("bottom") ("baseline")))
1684 (rel '(("next") ("previous") ("parent") ("subdocument") ("made")))
1685 (href '("href" ("ftp:") ("file:") ("finger:") ("gopher:") ("http:")
1686 ("mailto:") ("news:") ("rlogin:") ("telnet:") ("tn3270:")
1687 ("wais:") ("/cgi-bin/")))
1693 (list '((nil \n ("List item: " "<li>" str
1694 (if sgml-xml-mode "</li>") \n))))
1701 ;; put ,-expressions first, else byte-compile chokes (as of V19.29)
1702 ;; and like this it's more efficient anyway
1703 `(("a" ,name ,@link)
1706 ("font" nil "size" ("-1") ("+1") ("-2") ("+2") ,@1-7)
1707 ("form" (\n _ \n "<input type=\"submit\" value=\"\""
1708 (if sgml-xml-mode " />" ">"))
1709 ("action" ,@(cdr href)) ("method" ("get") ("post")))
1716 ("hr" t ("size" ,@1-9) ("width") ("noshade" t) ,@align)
1717 ("img" t ("align" ,@valign ("texttop") ("absmiddle") ("absbottom"))
1718 ("src") ("alt") ("width" "1") ("height" "1")
1719 ("border" "1") ("vspace" "1") ("hspace" "1") ("ismap" t))
1720 ("input" t ("size" ,@1-9) ("maxlength" ,@1-9) ("checked" t) ,name
1721 ("type" ("text") ("password") ("checkbox") ("radio")
1722 ("submit") ("reset"))
1726 ("ol" ,@list ("type" ("A") ("a") ("I") ("i") ("1")))
1730 "<option>" str (if sgml-xml-mode "</option>") \n))
1731 ,name ("size" ,@1-9) ("multiple" t))
1733 ((completing-read "Cell kind: " '(("td") ("th"))
1736 (if sgml-xml-mode (concat "<" str "></tr>")) \n))
1737 ("border" t ,@1-9) ("width" "10") ("cellpadding"))
1739 ("textarea" ,name ("rows" ,@1-9) ("cols" ,@1-9))
1741 ("ul" ,@list ("type" ("disc") ("circle") ("square")))
1749 ("Item: " "<item>" str (if sgml-xml-mode "</item>") \n))
1756 ("body" \n ("background" ".gif") ("bgcolor" "#") ("text" "#")
1757 ("link" "#") ("alink" "#") ("vlink" "#"))
1758 ("box" (nil _ "<over>" _ (if sgml-xml-mode "</over>")))
1759 ("br" t ("clear" ("left") ("right")))
1760 ("caption" ("valign" ("top") ("bottom")))
1764 ("dd" ,(not sgml-xml-mode))
1770 "<dt>" str (if sgml-xml-mode "</dt>")
1771 "<dd>" _ (if sgml-xml-mode "</dd>") \n)))
1772 ("dt" (t _ (if sgml-xml-mode "</dt>")
1773 "<dd>" (if sgml-xml-mode "</dd>") \n))
1775 ("fn" "id" "fn") ;; Footnotes were deprecated in HTML 3.2
1779 "<title>" (setq str (read-input "Title: ")) "</title>\n"
1781 "<body>\n<h1>" str "</h1>\n" _
1782 "\n<address>\n<a href=\"mailto:"
1784 "\">" (user-full-name) "</a>\n</address>\n"
1789 ("isindex" t ("action") ("prompt"))
1792 ("li" ,(not sgml-xml-mode))
1795 ("option" t ("value") ("label") ("selected" t))
1797 ("person") ;; Tag for person's name tag deprecated in HTML 3.2
1824 "*Value of `sgml-tag-alist' for HTML mode.")
1826 (defvar html-tag-help
1828 ("a" . "Anchor of point or link elsewhere")
1829 ("abbrev" . "Abbreviation")
1830 ("acronym" . "Acronym")
1831 ("address" . "Formatted mail address")
1832 ("array" . "Math array")
1835 ("base" . "Base address for URLs")
1836 ("big" . "Font size")
1837 ("blink" . "Blinking text")
1838 ("blockquote" . "Indented quotation")
1839 ("body" . "Document body")
1840 ("box" . "Math fraction")
1841 ("br" . "Line break")
1842 ("caption" . "Table caption")
1843 ("center" . "Centered text")
1844 ("changed" . "Change bars")
1845 ("cite" . "Citation of a document")
1846 ("code" . "Formatted source code")
1847 ("dd" . "Definition of term")
1848 ("del" . "Deleted text")
1849 ("dfn" . "Defining instance of a term")
1850 ("dir" . "Directory list (obsolete)")
1851 ("div" . "Generic block-level container")
1852 ("dl" . "Definition list")
1853 ("dt" . "Term to be definined")
1854 ("em" . "Emphasized")
1855 ("embed" . "Embedded data in foreign format")
1857 ("figa" . "Figure anchor")
1858 ("figd" . "Figure description")
1859 ("figt" . "Figure text")
1860 ("fn" . "Footnote") ;; No one supports special footnote rendering.
1861 ("font" . "Font size")
1862 ("form" . "Form with input fields")
1863 ("group" . "Document grouping")
1864 ("h1" . "Most important section headline")
1865 ("h2" . "Important section headline")
1866 ("h3" . "Section headline")
1867 ("h4" . "Minor section headline")
1868 ("h5" . "Unimportant section headline")
1869 ("h6" . "Least important section headline")
1870 ("head" . "Document header")
1871 ("hr" . "Horizontal rule")
1872 ("html" . "HTML Document")
1873 ("i" . "Italic face")
1874 ("img" . "Graphic image")
1875 ("input" . "Form input field")
1876 ("ins" . "Inserted text")
1877 ("isindex" . "Input field for index search")
1878 ("kbd" . "Keybard example face")
1879 ("lang" . "Natural language")
1880 ("li" . "List item")
1881 ("link" . "Link relationship")
1882 ("math" . "Math formula")
1883 ("menu" . "Menu list (obsolete)")
1884 ("mh" . "Form mail header")
1885 ("nextid" . "Allocate new id")
1886 ("nobr" . "Text without line break")
1887 ("ol" . "Ordered list")
1888 ("option" . "Selection list item")
1889 ("over" . "Math fraction rule")
1890 ("p" . "Paragraph start")
1891 ("panel" . "Floating panel")
1892 ("person" . "Person's name")
1893 ("pre" . "Preformatted fixed width text")
1895 ("rev" . "Reverse video")
1897 ("samp" . "Sample text")
1898 ("select" . "Selection list")
1899 ("small" . "Font size")
1900 ("sp" . "Nobreak space")
1901 ("span" . "Generic inline container")
1902 ("strong" . "Standout text")
1903 ("sub" . "Subscript")
1904 ("sup" . "Superscript")
1905 ("table" . "Table with rows and columns")
1906 ("tb" . "Table vertical break")
1907 ("td" . "Table data cell")
1908 ("textarea" . "Form multiline edit area")
1909 ("th" . "Table header cell")
1910 ("title" . "Document title")
1911 ("tr" . "Table row separator")
1912 ("tt" . "Typewriter face")
1913 ("u" . "Underlined text")
1914 ("ul" . "Unordered list")
1915 ("var" . "Math variable face")
1916 ("wbr" . "Enable <br> within <nobr>"))
1917 "*Value of `sgml-tag-help' for HTML mode.")
1921 (define-derived-mode html-mode sgml-mode '(sgml-xml-mode "XHTML" "HTML")
1922 "Major mode based on SGML mode for editing HTML documents.
1923 This allows inserting skeleton constructs used in hypertext documents with
1924 completion. See below for an introduction to HTML. Use
1925 \\[browse-url-of-buffer] to see how this comes out. See also `sgml-mode' on
1926 which this is based.
1928 Do \\[describe-variable] html- SPC and \\[describe-variable] sgml- SPC to see available variables.
1930 To write fairly well formatted pages you only need to know few things. Most
1931 browsers have a function to read the source code of the page being seen, so
1932 you can imitate various tricks. Here's a very short HTML primer which you
1933 can also view with a browser to see what happens:
1935 <title>A Title Describing Contents</title> should be on every page. Pages can
1936 have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
1937 <hr> Parts can be separated with horizontal rules.
1939 <p>Paragraphs only need an opening tag. Line breaks and multiple spaces are
1940 ignored unless the text is <pre>preformatted.</pre> Text can be marked as
1941 <b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal M-o or
1942 Edit/Text Properties/Face commands.
1944 Pages can have <a name=\"SOMENAME\">named points</a> and can link other points
1945 to them with <a href=\"#SOMENAME\">see also somename</a>. In the same way <a
1946 href=\"URL\">see also URL</a> where URL is a filename relative to current
1947 directory, or absolute as in `http://www.cs.indiana.edu/elisp/w3/docs.html'.
1949 Images in many formats can be inlined with <img src=\"URL\">.
1951 If you mainly create your own documents, `sgml-specials' might be
1952 interesting. But note that some HTML 2 browsers can't handle `''.
1953 To work around that, do:
1954 (eval-after-load \"sgml-mode\" '(aset sgml-char-names ?' nil))
1957 (set (make-local-variable 'sgml-display-text) html-display-text)
1958 (set (make-local-variable 'sgml-tag-face-alist) html-tag-face-alist)
1959 (make-local-variable 'sgml-tag-alist)
1960 (make-local-variable 'sgml-face-tag-alist)
1961 (make-local-variable 'sgml-tag-help)
1962 (make-local-variable 'outline-regexp)
1963 (make-local-variable 'outline-heading-end-regexp)
1964 (make-local-variable 'outline-level)
1965 (make-local-variable 'sentence-end-base)
1966 (setq sentence-end-base "[.?!][]\"'”)}]*\\(<[^>]*>\\)*"
1967 sgml-tag-alist html-tag-alist
1968 sgml-face-tag-alist html-face-tag-alist
1969 sgml-tag-help html-tag-help
1970 outline-regexp "^.*<[Hh][1-6]\\>"
1971 outline-heading-end-regexp "</[Hh][1-6]>"
1972 outline-level (lambda ()
1973 (char-before (match-end 0))))
1974 (setq imenu-create-index-function 'html-imenu-index)
1975 (set (make-local-variable 'sgml-empty-tags)
1976 ;; From HTML-4.01's loose.dtd, parsed with `sgml-parse-dtd',
1977 ;; plus manual addition of "wbr".
1978 '("area" "base" "basefont" "br" "col" "frame" "hr" "img" "input"
1979 "isindex" "link" "meta" "param" "wbr"))
1980 (set (make-local-variable 'sgml-unclosed-tags)
1981 ;; From HTML-4.01's loose.dtd, parsed with `sgml-parse-dtd'.
1982 '("body" "colgroup" "dd" "dt" "head" "html" "li" "option"
1983 "p" "tbody" "td" "tfoot" "th" "thead" "tr"))
1984 ;; It's for the user to decide if it defeats it or not -stef
1985 ;; (make-local-variable 'imenu-sort-function)
1986 ;; (setq imenu-sort-function nil) ; sorting the menu defeats the purpose
1989 (defvar html-imenu-regexp
1990 "\\s-*<h\\([1-9]\\)[^\n<>]*>\\(<[^\n<>]*>\\)*\\s-*\\([^\n<>]*\\)"
1991 "*A regular expression matching a head line to be added to the menu.
1992 The first `match-string' should be a number from 1-9.
1993 The second `match-string' matches extra tags and is ignored.
1994 The third `match-string' will be the used in the menu.")
1996 (defun html-imenu-index ()
1997 "Return a table of contents for an HTML buffer for use with Imenu."
2000 (goto-char (point-min))
2001 (while (re-search-forward html-imenu-regexp nil t)
2003 (cons (cons (concat (make-string
2004 (* 2 (1- (string-to-number (match-string 1))))
2007 (line-beginning-position))
2009 (nreverse toc-index)))
2011 (define-minor-mode html-autoview-mode
2012 "Toggle automatic viewing via `browse-url-of-buffer' upon saving buffer.
2013 With positive prefix ARG always turns viewing on, with negative ARG always off.
2014 Can be used as a value for `html-mode-hook'."
2017 (if html-autoview-mode
2018 (add-hook 'after-save-hook 'browse-url-of-buffer nil t)
2019 (remove-hook 'after-save-hook 'browse-url-of-buffer t)))
2022 (define-skeleton html-href-anchor
2023 "HTML anchor tag with href attribute."
2025 ;; '(setq input "http:")
2026 "<a href=\"" str "\">" _ "</a>")
2028 (define-skeleton html-name-anchor
2029 "HTML anchor tag with name attribute."
2031 "<a name=\"" str "\""
2032 (if sgml-xml-mode (concat " id=\"" str "\""))
2035 (define-skeleton html-headline-1
2036 "HTML level 1 headline tags."
2040 (define-skeleton html-headline-2
2041 "HTML level 2 headline tags."
2045 (define-skeleton html-headline-3
2046 "HTML level 3 headline tags."
2050 (define-skeleton html-headline-4
2051 "HTML level 4 headline tags."
2055 (define-skeleton html-headline-5
2056 "HTML level 5 headline tags."
2060 (define-skeleton html-headline-6
2061 "HTML level 6 headline tags."
2065 (define-skeleton html-horizontal-rule
2066 "HTML horizontal rule tag."
2068 (if sgml-xml-mode "<hr />" "<hr>") \n)
2070 (define-skeleton html-image
2073 "<img src=\"" str "\" alt=\"" _ "\""
2074 (if sgml-xml-mode " />" ">"))
2076 (define-skeleton html-line
2077 "HTML line break tag."
2079 (if sgml-xml-mode "<br />" "<br>") \n)
2081 (define-skeleton html-ordered-list
2082 "HTML ordered list tags."
2085 "<li>" _ (if sgml-xml-mode "</li>") \n
2088 (define-skeleton html-unordered-list
2089 "HTML unordered list tags."
2092 "<li>" _ (if sgml-xml-mode "</li>") \n
2095 (define-skeleton html-list-item
2096 "HTML list item tag."
2099 "<li>" _ (if sgml-xml-mode "</li>"))
2101 (define-skeleton html-paragraph
2102 "HTML paragraph tag."
2105 "<p>" _ (if sgml-xml-mode "</p>"))
2107 (define-skeleton html-checkboxes
2108 "Group of connected checkbox inputs."
2113 "<input type=\"" (identity "checkbox") ; see comment above about identity
2114 "\" name=\"" (or v1 (setq v1 (skeleton-read "Name: ")))
2115 "\" value=\"" str ?\"
2116 (when (y-or-n-p "Set \"checked\" attribute? ")
2117 (funcall skeleton-transformation-function
2118 (if sgml-xml-mode " checked=\"checked\"" " checked")))
2119 (if sgml-xml-mode " />" ">")
2120 (skeleton-read "Text: " (capitalize str))
2121 (or v2 (setq v2 (if (y-or-n-p "Newline after text? ")
2122 (funcall skeleton-transformation-function
2123 (if sgml-xml-mode "<br />" "<br>"))
2127 (define-skeleton html-radio-buttons
2128 "Group of connected radio button inputs."
2133 "<input type=\"" (identity "radio") ; see comment above about identity
2134 "\" name=\"" (or (car v2) (setcar v2 (skeleton-read "Name: ")))
2135 "\" value=\"" str ?\"
2136 (when (and (not v1) (setq v1 (y-or-n-p "Set \"checked\" attribute? ")))
2137 (funcall skeleton-transformation-function
2138 (if sgml-xml-mode " checked=\"checked\"" " checked")))
2139 (if sgml-xml-mode " />" ">")
2140 (skeleton-read "Text: " (capitalize str))
2141 (or (cdr v2) (setcdr v2 (if (y-or-n-p "Newline after text? ")
2142 (funcall skeleton-transformation-function
2143 (if sgml-xml-mode "<br />" "<br>"))
2147 (provide 'sgml-mode)
2149 ;; arch-tag: 9675da94-b7f9-4bda-ad19-73ed7b4fb401
2150 ;;; sgml-mode.el ends here