1 ;;; sgml-mode.el --- SGML- and HTML-editing modes -*- coding: utf-8 -*-
3 ;; Copyright (C) 1992, 1995-1996, 1998, 2001-2014 Free Software
6 ;; Author: James Clark <jjc@jclark.com>
7 ;; Maintainer: emacs-devel@gnu.org
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.
41 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
44 (defcustom sgml-basic-offset
2
45 "Specifies the basic indentation level for `sgml-indent-line'."
49 (defcustom sgml-xml-mode nil
50 "When non-nil, tag insertion functions will be XML-compliant.
51 It is set to be buffer-local when the file has
52 a DOCTYPE or an XML declaration."
57 (defcustom sgml-transformation-function
'identity
58 "Default value for `skeleton-transformation-function' in SGML mode."
60 :initialize
'custom-initialize-default
61 :set
(lambda (sym val
)
64 (with-current-buffer buff
65 (and (derived-mode-p 'sgml-mode
)
67 (setq skeleton-transformation-function val
))))
71 (put 'sgml-transformation-function
'variable-interactive
72 "aTransformation function: ")
73 (defvaralias 'sgml-transformation
'sgml-transformation-function
)
75 (defcustom sgml-mode-hook nil
76 "Hook run by command `sgml-mode'.
77 `text-mode-hook' is run first."
81 ;; As long as Emacs's syntax can't be complemented with predicates to context
82 ;; sensitively confirm the syntax of characters, we have to live with this
83 ;; kludgy kind of tradeoff.
84 (defvar sgml-specials
'(?
\")
85 "List of characters that have a special meaning for SGML mode.
86 This list is used when first loading the `sgml-mode' library.
87 The supported characters and potential disadvantages are:
89 ?\\\" Makes \" in text start a string.
90 ?' Makes ' in text start a string.
91 ?- Makes -- in text start a comment.
93 When only one of ?\\\" or ?' are included, \"'\" or '\"', as can be found in
94 DTDs, start a string. To partially avoid this problem this also makes these
95 self insert as named entities depending on `sgml-quick-keys'.
97 Including ?- has the problem of affecting dashes that have nothing to do
98 with comments, so we normally turn it off.")
100 (defvar sgml-quick-keys nil
101 "Use <, >, &, /, SPC and `sgml-specials' keys \"electrically\" when non-nil.
102 This takes effect when first loading the `sgml-mode' library.")
104 (defvar sgml-mode-map
105 (let ((map (make-keymap)) ;`sparse' doesn't allow binding to charsets.
106 (menu-map (make-sparse-keymap "SGML")))
107 (define-key map
"\C-c\C-i" 'sgml-tags-invisible
)
108 (define-key map
"/" 'sgml-slash
)
109 (define-key map
"\C-c\C-n" 'sgml-name-char
)
110 (define-key map
"\C-c\C-t" 'sgml-tag
)
111 (define-key map
"\C-c\C-a" 'sgml-attributes
)
112 (define-key map
"\C-c\C-b" 'sgml-skip-tag-backward
)
113 (define-key map
[?\C-c left
] 'sgml-skip-tag-backward
)
114 (define-key map
"\C-c\C-f" 'sgml-skip-tag-forward
)
115 (define-key map
[?\C-c right
] 'sgml-skip-tag-forward
)
116 (define-key map
"\C-c\C-d" 'sgml-delete-tag
)
117 (define-key map
"\C-c\^?" 'sgml-delete-tag
)
118 (define-key map
"\C-c?" 'sgml-tag-help
)
119 (define-key map
"\C-c]" 'sgml-close-tag
)
120 (define-key map
"\C-c/" 'sgml-close-tag
)
122 ;; Redundant keybindings, for consistency with TeX mode.
123 (define-key map
"\C-c\C-o" 'sgml-tag
)
124 (define-key map
"\C-c\C-e" 'sgml-close-tag
)
126 (define-key map
"\C-c8" 'sgml-name-8bit-mode
)
127 (define-key map
"\C-c\C-v" 'sgml-validate
)
128 (when sgml-quick-keys
129 (define-key map
"&" 'sgml-name-char
)
130 (define-key map
"<" 'sgml-tag
)
131 (define-key map
" " 'sgml-auto-attributes
)
132 (define-key map
">" 'sgml-maybe-end-tag
)
133 (when (memq ?
\" sgml-specials
)
134 (define-key map
"\"" 'sgml-name-self
))
135 (when (memq ?
' sgml-specials
)
136 (define-key map
"'" 'sgml-name-self
)))
139 (while (< (setq c
(1+ c
)) 256)
140 (aset map c
'sgml-maybe-name-self
)))
141 (define-key map
[menu-bar sgml
] (cons "SGML" menu-map
))
142 (define-key menu-map
[sgml-validate
] '("Validate" . sgml-validate
))
143 (define-key menu-map
[sgml-name-8bit-mode
]
144 '("Toggle 8 Bit Insertion" . sgml-name-8bit-mode
))
145 (define-key menu-map
[sgml-tags-invisible
]
146 '("Toggle Tag Visibility" . sgml-tags-invisible
))
147 (define-key menu-map
[sgml-tag-help
]
148 '("Describe Tag" . sgml-tag-help
))
149 (define-key menu-map
[sgml-delete-tag
]
150 '("Delete Tag" . sgml-delete-tag
))
151 (define-key menu-map
[sgml-skip-tag-forward
]
152 '("Forward Tag" . sgml-skip-tag-forward
))
153 (define-key menu-map
[sgml-skip-tag-backward
]
154 '("Backward Tag" . sgml-skip-tag-backward
))
155 (define-key menu-map
[sgml-attributes
]
156 '("Insert Attributes" . sgml-attributes
))
157 (define-key menu-map
[sgml-tag
] '("Insert Tag" . sgml-tag
))
159 "Keymap for SGML mode. See also `sgml-specials'.")
161 (defun sgml-make-syntax-table (specials)
162 (let ((table (make-syntax-table text-mode-syntax-table
)))
163 (modify-syntax-entry ?
< "(>" table
)
164 (modify-syntax-entry ?
> ")<" table
)
165 (modify-syntax-entry ?
: "_" table
)
166 (modify-syntax-entry ?_
"_" table
)
167 (modify-syntax-entry ?.
"_" table
)
168 (if (memq ?- specials
)
169 (modify-syntax-entry ?-
"_ 1234" table
))
170 (if (memq ?
\" specials
)
171 (modify-syntax-entry ?
\" "\"\"" table
))
172 (if (memq ?
' specials
)
173 (modify-syntax-entry ?
\' "\"'" table
))
176 (defvar sgml-mode-syntax-table
(sgml-make-syntax-table sgml-specials
)
177 "Syntax table used in SGML mode. See also `sgml-specials'.")
179 (defconst sgml-tag-syntax-table
180 (let ((table (sgml-make-syntax-table sgml-specials
)))
181 (dolist (char '(?\
( ?\
) ?\
{ ?\
} ?\
[ ?\
] ?$ ?% ?
& ?
* ?
+ ?
/))
182 (modify-syntax-entry char
"." table
))
183 (unless (memq ?
' sgml-specials
)
184 ;; Avoid that skipping a tag backwards skips any "'" prefixing it.
185 (modify-syntax-entry ?
' "w" table
))
187 "Syntax table used to parse SGML tags.")
189 (defcustom sgml-name-8bit-mode nil
190 "When non-nil, insert non-ASCII characters as named entities."
194 (defvar sgml-char-names
195 [nil nil nil nil nil nil nil nil
196 nil nil nil nil nil nil nil nil
197 nil nil nil nil nil nil nil nil
198 nil nil nil nil nil nil nil nil
199 "nbsp" "excl" "quot" "num" "dollar" "percnt" "amp" "apos"
200 "lpar" "rpar" "ast" "plus" "comma" "hyphen" "period" "sol"
201 nil nil nil nil nil nil nil nil
202 nil nil
"colon" "semi" "lt" "eq" "gt" "quest"
203 "commat" nil nil nil nil nil nil nil
204 nil nil nil nil nil nil nil nil
205 nil nil nil nil nil nil nil nil
206 nil nil nil
"lsqb" nil
"rsqb" "uarr" "lowbar"
207 "lsquo" nil nil nil nil nil nil nil
208 nil nil nil nil nil nil nil nil
209 nil nil nil nil nil nil nil nil
210 nil nil nil
"lcub" "verbar" "rcub" "tilde" nil
211 nil nil nil nil nil nil nil nil
212 nil nil nil nil nil nil nil nil
213 nil nil nil nil nil nil nil nil
214 nil nil nil nil nil nil nil nil
215 "nbsp" "iexcl" "cent" "pound" "curren" "yen" "brvbar" "sect"
216 "uml" "copy" "ordf" "laquo" "not" "shy" "reg" "macr"
217 "ring" "plusmn" "sup2" "sup3" "acute" "micro" "para" "middot"
218 "cedil" "sup1" "ordm" "raquo" "frac14" "frac12" "frac34" "iquest"
219 "Agrave" "Aacute" "Acirc" "Atilde" "Auml" "Aring" "AElig" "Ccedil"
220 "Egrave" "Eacute" "Ecirc" "Euml" "Igrave" "Iacute" "Icirc" "Iuml"
221 "ETH" "Ntilde" "Ograve" "Oacute" "Ocirc" "Otilde" "Ouml" nil
222 "Oslash" "Ugrave" "Uacute" "Ucirc" "Uuml" "Yacute" "THORN" "szlig"
223 "agrave" "aacute" "acirc" "atilde" "auml" "aring" "aelig" "ccedil"
224 "egrave" "eacute" "ecirc" "euml" "igrave" "iacute" "icirc" "iuml"
225 "eth" "ntilde" "ograve" "oacute" "ocirc" "otilde" "ouml" "divide"
226 "oslash" "ugrave" "uacute" "ucirc" "uuml" "yacute" "thorn" "yuml"]
227 "Vector of symbolic character names without `&' and `;'.")
229 (put 'sgml-table
'char-table-extra-slots
0)
231 (defvar sgml-char-names-table
232 (let ((table (make-char-table 'sgml-table
))
236 (setq elt
(aref sgml-char-names i
))
237 (if elt
(aset table
(make-char 'latin-iso8859-1 i
) elt
))
240 "A table for mapping non-ASCII characters into SGML entity names.
241 Currently, only Latin-1 characters are supported.")
243 ;; nsgmls is a free SGML parser in the SP suite available from
244 ;; ftp.jclark.com and otherwise packaged for GNU systems.
245 ;; Its error messages can be parsed by next-error.
246 ;; The -s option suppresses output.
248 (defcustom sgml-validate-command
"nsgmls -s" ; replaced old `sgmls'
249 "The command to validate an SGML document.
250 The file name of current buffer file name will be appended to this,
251 separated by a space."
256 (defvar sgml-saved-validate-command nil
257 "The command last used to validate in this buffer.")
259 ;; I doubt that null end tags are used much for large elements,
260 ;; so use a small distance here.
261 (defcustom sgml-slash-distance
1000
262 "If non-nil, is the maximum distance to search for matching `/'."
263 :type
'(choice (const nil
) integer
)
266 (defconst sgml-namespace-re
"[_[:alpha:]][-_.[:alnum:]]*")
267 (defconst sgml-name-re
"[_:[:alpha:]][-_.:[:alnum:]]*")
268 (defconst sgml-tag-name-re
(concat "<\\([!/?]?" sgml-name-re
"\\)"))
269 (defconst sgml-attrs-re
"\\(?:[^\"'/><]\\|\"[^\"]*\"\\|'[^']*'\\)*")
270 (defconst sgml-start-tag-regex
(concat "<" sgml-name-re sgml-attrs-re
)
271 "Regular expression that matches a non-empty start tag.
272 Any terminating `>' or `/' is not matched.")
274 (defface sgml-namespace
275 '((t (:inherit font-lock-builtin-face
)))
276 "`sgml-mode' face used to highlight the namespace part of identifiers."
278 (defvar sgml-namespace-face
'sgml-namespace
)
281 (defconst sgml-font-lock-keywords-1
282 `((,(concat "<\\([!?]" sgml-name-re
"\\)") 1 font-lock-keyword-face
)
283 ;; We could use the simpler "\\(" sgml-namespace-re ":\\)?" instead,
284 ;; but it would cause a bit more backtracking in the re-matcher.
285 (,(concat "</?\\(" sgml-namespace-re
"\\)\\(?::\\(" sgml-name-re
"\\)\\)?")
286 (1 (if (match-end 2) sgml-namespace-face font-lock-function-name-face
))
287 (2 font-lock-function-name-face nil t
))
288 ;; FIXME: this doesn't cover the variables using a default value.
289 ;; The first shy-group is an important anchor: it prevents an O(n^2)
290 ;; pathological case where we otherwise keep retrying a failing match
291 ;; against a very long word at every possible position within the word.
292 (,(concat "\\(?:^\\|[ \t]\\)\\(" sgml-namespace-re
"\\)\\(?::\\("
293 sgml-name-re
"\\)\\)?=[\"']")
294 (1 (if (match-end 2) sgml-namespace-face font-lock-variable-name-face
))
295 (2 font-lock-variable-name-face nil t
))
296 (,(concat "[&%]" sgml-name-re
";?") . font-lock-variable-name-face
)))
298 (defconst sgml-font-lock-keywords-2
300 sgml-font-lock-keywords-1
303 (regexp-opt (mapcar 'car sgml-tag-face-alist
) t
)
304 "\\([ \t][^>]*\\)?>\\([^<]+\\)</\\1>")
305 '(3 (cdr (assoc-string (match-string 1) sgml-tag-face-alist t
))
308 ;; for font-lock, but must be defvar'ed after
309 ;; sgml-font-lock-keywords-1 and sgml-font-lock-keywords-2 above
310 (defvar sgml-font-lock-keywords sgml-font-lock-keywords-1
311 "Rules for highlighting SGML code. See also `sgml-tag-face-alist'.")
313 (defconst sgml-syntax-propertize-function
314 (syntax-propertize-rules
315 ;; Use the `b' style of comments to avoid interference with the -- ... --
316 ;; comments recognized when `sgml-specials' includes ?-.
317 ;; FIXME: beware of <!--> blabla <!--> !!
318 ("\\(<\\)!--" (1 "< b"))
319 ("--[ \t\n]*\\(>\\)" (1 "> b"))
320 ;; Double quotes outside of tags should not introduce strings.
321 ;; Be careful to call `syntax-ppss' on a position before the one we're
322 ;; going to change, so as not to need to flush the data we just computed.
323 ("\"" (0 (if (prog1 (zerop (car (syntax-ppss (match-beginning 0))))
324 (goto-char (match-end 0)))
325 (string-to-syntax ".")))))
326 "Syntactic keywords for `sgml-mode'.")
329 (defvar sgml-face-tag-alist
()
330 "Alist of face and tag name for facemenu.")
332 (defvar sgml-tag-face-alist
()
333 "Tag names and face or list of faces to fontify with when invisible.
334 When `font-lock-maximum-decoration' is 1 this is always used for fontifying.
335 When more these are fontified together with `sgml-font-lock-keywords'.")
337 (defvar sgml-display-text
()
338 "Tag names as lowercase symbols, and display string when invisible.")
341 (defvar sgml-tags-invisible nil
)
343 (defcustom sgml-tag-alist
344 '(("![" ("ignore" t
) ("include" t
))
349 "Alist of tag names for completing read and insertion rules.
350 This alist is made up as
355 TAGRULE is a list of optionally t (no endtag) or `\\n' (separate endtag by
356 newlines) or a skeleton with nil, t or `\\n' in place of the interactor
357 followed by an ATTRIBUTERULE (for an always present attribute) or an
360 The attribute alist is made up as
362 ((\"attribute\" . ATTRIBUTERULE)
365 ATTRIBUTERULE is a list of optionally t (no value when no input) followed by
366 an optional alist of possible values."
367 :type
'(repeat (cons (string :tag
"Tag Name")
368 (repeat :tag
"Tag Rule" sexp
)))
370 (put 'sgml-tag-alist
'risky-local-variable t
)
372 (defcustom sgml-tag-help
373 '(("!" .
"Empty declaration for comment")
374 ("![" .
"Embed declarations with parser directive")
375 ("!attlist" .
"Tag attributes declaration")
376 ("!doctype" .
"Document type (DTD) declaration")
377 ("!element" .
"Tag declaration")
378 ("!entity" .
"Entity (macro) declaration"))
379 "Alist of tag name and short description."
380 :type
'(repeat (cons (string :tag
"Tag Name")
381 (string :tag
"Description")))
384 (defvar sgml-empty-tags nil
385 "List of tags whose !ELEMENT definition says EMPTY.")
387 (defvar sgml-unclosed-tags nil
388 "List of tags whose !ELEMENT definition says the end-tag is optional.")
390 (defun sgml-xml-guess ()
391 "Guess whether the current buffer is XML. Return non-nil if so."
393 (goto-char (point-min))
394 (or (string= "xml" (file-name-extension (or buffer-file-name
"")))
395 ;; Maybe the buffer-size check isn't needed, I don't know.
396 (and (zerop (buffer-size))
397 (string= "xhtml" (file-name-extension (or buffer-file-name
""))))
398 (looking-at "\\s-*<\\?xml")
399 (when (re-search-forward
402 '("<!DOCTYPE" "\\(\\w+\\)" "\\(\\w+\\)"
403 "\"\\([^\"]+\\)\"" "\"\\([^\"]+\\)\"")
406 (string-match "X\\(HT\\)?ML" (match-string 3))))))
408 (defvar v2
) ; free for skeleton
410 (defun sgml-comment-indent-new-line (&optional soft
)
411 (let ((comment-start "-- ")
412 (comment-start-skip "\\(<!\\)?--[ \t]*")
414 (comment-style 'plain
))
415 (comment-indent-new-line soft
)))
417 (defun sgml-mode-facemenu-add-face-function (face end
)
418 (let ((tag-face (cdr (assq face sgml-face-tag-alist
))))
420 (setq tag-face
(funcall skeleton-transformation-function tag-face
))
421 (setq facemenu-end-add-face
(concat "</" tag-face
">"))
422 (concat "<" tag-face
">"))
426 (memq (caar face
) '(:foreground
:background
)))
427 (setq facemenu-end-add-face
"</span>")
428 (format "<span style=\"%s:%s\">"
429 (if (eq (caar face
) :foreground
)
434 (error "Face not configured for %s mode"
435 (format-mode-line mode-name
))))))
437 (defun sgml-fill-nobreak ()
438 "Don't break between a tag name and its first argument.
439 This function is designed for use in `fill-nobreak-predicate'.
441 <a href=\"some://where\" type=\"text/plain\">
443 | no break here | but still allowed here"
445 (skip-chars-backward " \t")
446 (and (not (zerop (skip-syntax-backward "w_")))
447 (skip-chars-backward "/?!")
448 (eq (char-before) ?
<))))
451 (define-derived-mode sgml-mode text-mode
'(sgml-xml-mode "XML" "SGML")
452 "Major mode for editing SGML documents.
454 Keys <, &, SPC within <>, \", / and ' can be electric depending on
457 An argument of N to a tag-inserting command means to wrap it around
458 the next N words. In Transient Mark mode, when the mark is active,
459 N defaults to -1, which means to wrap it around the current region.
461 If you like upcased tags, put (setq sgml-transformation-function 'upcase)
464 Use \\[sgml-validate] to validate your document with an SGML parser.
466 Do \\[describe-variable] sgml- SPC to see available variables.
467 Do \\[describe-key] on the following bindings to discover what they do.
469 (make-local-variable 'sgml-saved-validate-command
)
470 (make-local-variable 'facemenu-end-add-face
)
471 ;;(make-local-variable 'facemenu-remove-face-function)
472 ;; A start or end tag by itself on a line separates a paragraph.
473 ;; This is desirable because SGML discards a newline that appears
474 ;; immediately after a start tag or immediately before an end tag.
475 (setq-local paragraph-start
(concat "[ \t]*$\\|\
476 \[ \t]*</?\\(" sgml-name-re sgml-attrs-re
"\\)?>"))
477 (setq-local paragraph-separate
(concat paragraph-start
"$"))
478 (setq-local adaptive-fill-regexp
"[ \t]*")
479 (add-hook 'fill-nobreak-predicate
'sgml-fill-nobreak nil t
)
480 (setq-local indent-line-function
'sgml-indent-line
)
481 (setq-local comment-start
"<!-- ")
482 (setq-local comment-end
" -->")
483 (setq-local comment-indent-function
'sgml-comment-indent
)
484 (setq-local comment-line-break-function
'sgml-comment-indent-new-line
)
485 (setq-local skeleton-further-elements
'((completion-ignore-case t
)))
486 (setq-local skeleton-end-hook
489 (not (or (eq v2
'\n) (eq (car-safe v2
) '\n)))
490 (newline-and-indent))))
491 (setq font-lock-defaults
'((sgml-font-lock-keywords
492 sgml-font-lock-keywords-1
493 sgml-font-lock-keywords-2
)
495 (setq-local syntax-propertize-function sgml-syntax-propertize-function
)
496 (setq-local facemenu-add-face-function
'sgml-mode-facemenu-add-face-function
)
497 (setq-local sgml-xml-mode
(sgml-xml-guess))
498 (unless sgml-xml-mode
499 (setq-local skeleton-transformation-function sgml-transformation-function
))
500 ;; This will allow existing comments within declarations to be
502 ;; I can't find a clear description of SGML/XML comments, but it seems that
503 ;; the only reliable ones are <!-- ... --> although it's not clear what
504 ;; "..." can contain. It used to accept -- ... -- as well, but that was
505 ;; apparently a mistake.
506 (setq-local comment-start-skip
"<!--[ \t]*")
507 (setq-local comment-end-skip
"[ \t]*--[ \t\n]*>")
508 ;; This definition has an HTML leaning but probably fits well for other modes.
509 (setq imenu-generic-expression
511 ,(concat "<!\\(element\\|entity\\)[ \t\n]+%?[ \t\n]*\\("
515 ,(concat "<[^>]+[ \t\n]+[Ii][Dd]=\\(['\"]"
516 (if sgml-xml-mode
"" "?")
517 "\\)\\(" sgml-name-re
"\\)\\1")
520 ,(concat "<[^>]+[ \t\n]+[Nn][Aa][Mm][Ee]=\\(['\"]"
521 (if sgml-xml-mode
"" "?")
522 "\\)\\(" sgml-name-re
"\\)\\1")
525 (defun sgml-comment-indent ()
526 (if (looking-at "--") comment-column
0))
528 (defun sgml-slash (arg)
529 "Insert ARG slash characters.
530 Behaves electrically if `sgml-quick-keys' is non-nil."
533 ((not (and (eq (char-before) ?
<) (= arg
1)))
534 (sgml-slash-matching arg
))
535 ((eq sgml-quick-keys
'indent
)
537 (indent-according-to-mode))
538 ((eq sgml-quick-keys
'close
)
542 (sgml-slash-matching arg
))))
544 (defun sgml-slash-matching (arg)
545 "Insert `/' and display any previous matching `/'.
546 Two `/'s are treated as matching if the first `/' ends a net-enabling
547 start tag, and the second `/' is the corresponding null end tag."
551 (let ((oldpos (point))
556 (if sgml-slash-distance
557 (narrow-to-region (max (point-min)
558 (- (point) sgml-slash-distance
))
560 (if (and (re-search-backward sgml-start-tag-regex
(point-min) t
)
561 (eq (match-end 0) (1- oldpos
)))
563 (goto-char (1- oldpos
))
564 (while (and (not blinkpos
)
565 (search-backward "/" (point-min) t
))
566 (let ((tagend (save-excursion
567 (if (re-search-backward sgml-start-tag-regex
571 (if (eq tagend
(point))
573 (setq blinkpos
(point))
574 (setq level
(1- level
)))
575 (setq level
(1+ level
)))))))
578 (if (pos-visible-in-window-p)
580 (message "Matches %s"
581 (buffer-substring (line-beginning-position)
582 (1+ blinkpos
)))))))))
584 ;; Why doesn't this use the iso-cvt table or, preferably, generate the
585 ;; inverse of the extensive table in the SGML Quail input method? -- fx
586 ;; I guess that's moot since it only works with Latin-1 anyhow.
587 (defun sgml-name-char (&optional char
)
588 "Insert a symbolic character name according to `sgml-char-names'.
589 Non-ASCII chars may be inserted either with the meta key, as in M-SPC for
590 no-break space or M-- for a soft hyphen; or via an input method or
591 encoded keyboard operation."
595 (setq char
(read-quoted-char "Enter char or octal number")))
601 (defun sgml-namify-char ()
602 "Change the char before point into its `&name;' equivalent.
603 Uses `sgml-char-names'."
605 (let* ((char (char-before))
608 ((null char
) (error "No char before point"))
609 ((< char
256) (or (aref sgml-char-names char
) char
))
610 ((aref sgml-char-names-table char
))
611 ((encode-char char
'ucs
)))))
613 (error "Don't know the name of `%c'" char
)
615 (insert (format (if (numberp name
) "&#%d;" "&%s;") name
)))))
617 (defun sgml-name-self ()
618 "Insert a symbolic character name according to `sgml-char-names'."
620 (sgml-name-char last-command-event
))
622 (defun sgml-maybe-name-self ()
623 "Insert a symbolic character name according to `sgml-char-names'."
625 (if sgml-name-8bit-mode
626 (sgml-name-char last-command-event
)
627 (self-insert-command 1)))
629 (defun sgml-name-8bit-mode ()
630 "Toggle whether to insert named entities instead of non-ASCII characters.
631 This only works for Latin-1 input."
633 (setq sgml-name-8bit-mode
(not sgml-name-8bit-mode
))
634 (message "sgml name entity mode is now %s"
635 (if sgml-name-8bit-mode
"ON" "OFF")))
637 ;; When an element of a skeleton is a string "str", it is passed
638 ;; through `skeleton-transformation-function' and inserted.
639 ;; If "str" is to be inserted literally, one should obtain it as
640 ;; the return value of a function, e.g. (identity "str").
642 (defvar sgml-tag-last nil
)
643 (defvar sgml-tag-history nil
)
644 (define-skeleton sgml-tag
645 "Prompt for a tag and insert it, optionally with attributes.
646 Completion and configuration are done according to `sgml-tag-alist'.
647 If you like tags and attributes in uppercase, customize
648 `sgml-transformation-function' to 'upcase."
649 (funcall (or skeleton-transformation-function
'identity
)
652 (if (> (length sgml-tag-last
) 0)
653 (format "Tag (default %s): " sgml-tag-last
)
655 sgml-tag-alist nil nil nil
'sgml-tag-history sgml-tag-last
)))
657 (("") -
1 '(undo-boundary) (identity "<")) |
; see comment above
658 `(("") '(setq v2
(sgml-attributes ,str t
)) ?
>
662 '(("") " [ " _
" ]]"))
663 ((and (eq v2 t
) sgml-xml-mode
(member ,str sgml-empty-tags
))
665 ((or (and (eq v2 t
) (not sgml-xml-mode
)) (string-match "^[/!?]" ,str
))
668 ;; Make sure we don't fall into an infinite loop.
669 ;; For xhtml's `tr' tag, we should maybe use \n instead.
670 (if (eq v2 t
) (setq v2 nil
))
671 ;; We use `identity' to prevent skeleton from passing
672 ;; `str' through `skeleton-transformation-function' a second time.
673 '(("") v2 _ v2
"</" (identity ',str
) ?
> >))
675 (cons '("") (cdr v2
)))
677 (append '(("") (car v2
))
679 '(resume: (car v2
) _
"</" (identity ',str
) ?
> >))))))
681 (autoload 'skeleton-read
"skeleton")
683 (defun sgml-attributes (tag &optional quiet
)
684 "When at top level of a tag, interactively insert attributes.
686 Completion and configuration of TAG are done according to `sgml-tag-alist'.
687 If QUIET, do not print a message when there are no attributes for TAG."
688 (interactive (list (save-excursion (sgml-beginning-of-tag t
))))
689 (or (stringp tag
) (error "Wrong context for adding attribute"))
691 (let ((completion-ignore-case t
)
692 (alist (cdr (assoc (downcase tag
) sgml-tag-alist
)))
694 (if (or (symbolp (car alist
))
695 (symbolp (car (car alist
))))
696 (setq car
(car alist
)
699 (message "No attributes configured."))
700 (if (stringp (car alist
))
702 (insert (if (eq (preceding-char) ?\s
) "" ?\s
)
703 (funcall skeleton-transformation-function
(car alist
)))
705 (setq i
(length alist
))
708 (insert (funcall skeleton-transformation-function
710 (skeleton-read '(completing-read
713 (if (string= "" attribute
)
715 (sgml-value (assoc (downcase attribute
) alist
))
717 (if (eq (preceding-char) ?\s
)
721 (defun sgml-auto-attributes (arg)
722 "Self insert the character typed; at top level of tag, prompt for attributes.
723 With prefix argument, only self insert."
725 (let ((point (point))
728 (not sgml-tag-alist
) ; no message when nothing configured
729 (symbolp (setq tag
(save-excursion (sgml-beginning-of-tag t
))))
730 (eq (aref tag
0) ?
/))
731 (self-insert-command (prefix-numeric-value arg
))
732 (sgml-attributes tag
)
733 (setq last-command-event ?\s
)
734 (or (> (point) point
)
735 (self-insert-command 1)))))
737 (defun sgml-tag-help (&optional tag
)
738 "Display description of tag TAG. If TAG is omitted, use the tag at point."
740 (list (let ((def (save-excursion
741 (if (eq (following-char) ?
<) (forward-char))
742 (sgml-beginning-of-tag))))
743 (completing-read (if def
744 (format "Tag (default %s): " def
)
746 sgml-tag-alist nil nil nil
747 'sgml-tag-history def
))))
748 (or (and tag
(> (length tag
) 0))
750 (if (eq (following-char) ?
<)
752 (setq tag
(sgml-beginning-of-tag))))
754 (error "No tag selected"))
755 (setq tag
(downcase tag
))
757 (or (cdr (assoc (downcase tag
) sgml-tag-help
))
758 (and (eq (aref tag
0) ?
/)
759 (cdr (assoc (downcase (substring tag
1)) sgml-tag-help
)))
760 "No description available")))
762 (defun sgml-maybe-end-tag (&optional arg
)
763 "Name self unless in position to end a tag or a prefix ARG is given."
765 (if (or arg
(eq (car (sgml-lexical-context)) 'tag
))
766 (self-insert-command (prefix-numeric-value arg
))
769 (defun sgml-skip-tag-backward (arg)
770 "Skip to beginning of tag or matching opening tag if present.
771 With prefix argument ARG, repeat this ARG times.
772 Return non-nil if we skipped over matched tags."
774 ;; FIXME: use sgml-get-context or something similar.
777 (search-backward "<" nil t
)
778 (if (looking-at "</\\([^ \n\t>]+\\)")
779 ;; end tag, skip any nested pairs
780 (let ((case-fold-search t
)
781 (re (concat "</?" (regexp-quote (match-string 1))
782 ;; Ignore empty tags like <foo/>.
783 "\\([^>]*[^/>]\\)?>")))
784 (while (and (re-search-backward re nil t
)
785 (eq (char-after (1+ (point))) ?
/))
787 (sgml-skip-tag-backward 1)))
792 (defvar sgml-electric-tag-pair-overlays nil
)
793 (defvar sgml-electric-tag-pair-timer nil
)
795 (defun sgml-electric-tag-pair-before-change-function (beg end
)
799 (skip-chars-backward "[:alnum:]-_.:")
800 (if (and ;; (<= (point) beg) ; This poses problems for downcase-word.
801 (or (eq (char-before) ?
<)
802 (and (eq (char-before) ?
/)
803 (eq (char-before (1- (point))) ?
<)))
804 (null (get-char-property (point) 'text-clones
)))
805 (let* ((endp (eq (char-before) ?
/))
807 (cl-end (progn (skip-chars-forward "[:alnum:]-_.:") (point)))
810 (when (sgml-skip-tag-backward 1) (forward-char 1) t
)
811 (with-syntax-table sgml-tag-syntax-table
813 (when (sgml-skip-tag-forward 1)
817 (clones (get-char-property (point) 'text-clones
)))
820 (equal (buffer-substring cl-start cl-end
)
821 (buffer-substring (point)
823 (skip-chars-forward "[:alnum:]-_.:")
825 (or (not endp
) (eq (char-after cl-end
) ?
>)))
827 (message "sgml-electric-tag-pair-before-change-function: deleting old OLs")
828 (mapc 'delete-overlay clones
))
829 (message "sgml-electric-tag-pair-before-change-function: new clone")
830 (text-clone-create cl-start cl-end
'spread
"[[:alnum:]-_.:]+")
831 (setq sgml-electric-tag-pair-overlays
832 (append (get-char-property (point) 'text-clones
)
833 sgml-electric-tag-pair-overlays
))))))
835 (error (message "Error in sgml-electric-pair-mode: %s" err
))))
837 (defun sgml-electric-tag-pair-flush-overlays ()
838 (while sgml-electric-tag-pair-overlays
839 (delete-overlay (pop sgml-electric-tag-pair-overlays
))))
841 (define-minor-mode sgml-electric-tag-pair-mode
842 "Toggle SGML Electric Tag Pair mode.
843 With a prefix argument ARG, enable the mode if ARG is positive,
844 and disable it otherwise. If called from Lisp, enable the mode
845 if ARG is omitted or nil.
847 SGML Electric Tag Pair mode is a buffer-local minor mode for use
848 with `sgml-mode' and related major modes. When enabled, editing
849 an opening markup tag automatically updates the closing tag."
851 (if sgml-electric-tag-pair-mode
853 (add-hook 'before-change-functions
854 'sgml-electric-tag-pair-before-change-function
856 (unless sgml-electric-tag-pair-timer
857 (setq sgml-electric-tag-pair-timer
858 (run-with-idle-timer 5 'repeat
'sgml-electric-tag-pair-flush-overlays
))))
859 (remove-hook 'before-change-functions
860 'sgml-electric-tag-pair-before-change-function
862 ;; We leave the timer running for other buffers.
866 (defun sgml-skip-tag-forward (arg)
867 "Skip to end of tag or matching closing tag if present.
868 With prefix argument ARG, repeat this ARG times.
869 Return t if after a closing tag."
871 ;; FIXME: Use sgml-get-context or something similar.
872 ;; It currently might jump to an unrelated </P> if the <P>
873 ;; we're skipping has no matching </P>.
875 (with-syntax-table sgml-tag-syntax-table
877 (skip-chars-forward "^<>")
878 (if (eq (following-char) ?
>)
880 (if (looking-at "<\\([^/ \n\t>]+\\)\\([^>]*[^/>]\\)?>")
881 ;; start tag, skip any nested same pairs _and_ closing tag
882 (let ((case-fold-search t
)
883 (re (concat "</?" (regexp-quote (match-string 1))
884 ;; Ignore empty tags like <foo/>.
885 "\\([^>]*[^/>]\\)?>"))
889 ;; FIXME: This re-search-forward will mistakenly match
890 ;; tag-like text inside attributes.
891 (while (and (re-search-forward re nil t
)
893 (eq (char-after (1+ (match-beginning 0))) ?
/)))
894 (goto-char (match-beginning 0))
895 (sgml-skip-tag-forward 1))
904 (defsubst sgml-looking-back-at
(str)
905 "Return t if the test before point matches STR."
906 (let ((start (- (point) (length str
))))
907 (and (>= start
(point-min))
908 (equal str
(buffer-substring-no-properties start
(point))))))
910 (defun sgml-delete-tag (arg)
911 ;; FIXME: Should be called sgml-kill-tag or should not touch the kill-ring.
912 "Delete tag on or after cursor, and matching closing or opening tag.
913 With prefix argument ARG, repeat this ARG times."
918 (if (looking-at "[ \t\n]*<")
920 (if (eq (char-after (match-end 0)) ?
/)
924 (goto-char (match-end 0))))
926 (or (save-excursion (setq close
(sgml-beginning-of-tag)
927 close
(and (stringp close
)
928 (eq (aref close
0) ?
/)
930 ;; not on closing tag
931 (let ((point (point)))
932 (sgml-skip-tag-backward 1)
933 (if (or (not (eq (following-char) ?
<))
937 (error "Not on or before tag")))))
940 (sgml-skip-tag-backward 1)
945 (when (and (sgml-skip-tag-forward 1)
946 (not (sgml-looking-back-at "/>")))
948 ;; Delete any resulting empty line. If we didn't kill-sexp,
949 ;; this *should* do nothing, because we're right after the tag.
950 (if (progn (forward-line 0) (looking-at "\\(?:[ \t]*$\\)\n?"))
951 (delete-region (match-beginning 0) (match-end 0)))
954 (if (progn (forward-line 0) (looking-at "\\(?:[ \t]*$\\)\n?"))
955 (delete-region (match-beginning 0) (match-end 0)))))
956 (setq arg
(1- arg
))))
959 ;; Put read-only last to enable setting this even when read-only enabled.
960 (or (get 'sgml-tag
'invisible
)
962 (append '(invisible t
963 point-entered sgml-point-entered
966 (symbol-plist 'sgml-tag
))))
968 (defun sgml-tags-invisible (arg)
969 "Toggle visibility of existing tags."
971 (let ((modified (buffer-modified-p))
972 (inhibit-read-only t
)
973 (inhibit-modification-hooks t
)
974 ;; Avoid spurious the `file-locked' checks.
975 (buffer-file-name nil
)
976 ;; This is needed in case font lock gets called,
977 ;; since it moves point and might call sgml-point-entered.
978 ;; How could it get called? -stef
979 (inhibit-point-motion-hooks t
)
983 (goto-char (point-min))
984 (if (setq-local sgml-tags-invisible
986 (>= (prefix-numeric-value arg
) 0)
987 (not sgml-tags-invisible
)))
988 (while (re-search-forward sgml-tag-name-re nil t
)
990 (cdr (assq (intern-soft (downcase (match-string 1)))
992 (goto-char (match-beginning 0))
993 (and (stringp string
)
994 (not (overlays-at (point)))
995 (let ((ol (make-overlay (point) (match-beginning 1))))
996 (overlay-put ol
'before-string string
)
997 (overlay-put ol
'sgml-tag t
)))
998 (put-text-property (point)
999 (progn (forward-list) (point))
1000 'category
'sgml-tag
))
1001 (let ((pos (point-min)))
1002 (while (< (setq pos
(next-overlay-change pos
)) (point-max))
1003 (dolist (ol (overlays-at pos
))
1004 (if (overlay-get ol
'sgml-tag
)
1005 (delete-overlay ol
)))))
1006 (remove-text-properties (point-min) (point-max) '(category nil
))))
1007 (restore-buffer-modified-p modified
))
1008 (run-hooks 'sgml-tags-invisible-hook
)
1011 (defun sgml-point-entered (x y
)
1012 ;; Show preceding or following hidden tag, depending of cursor direction.
1013 (let ((inhibit-point-motion-hooks t
))
1016 (message "Invisible tag: %s"
1017 ;; Strip properties, otherwise, the text is invisible.
1018 (buffer-substring-no-properties
1020 (if (or (and (> x y
)
1021 (not (eq (following-char) ?
<)))
1023 (eq (preceding-char) ?
>)))
1030 (defun sgml-validate (command)
1031 "Validate an SGML document.
1032 Runs COMMAND, a shell command, in a separate process asynchronously
1033 with output going to the buffer `*compilation*'.
1034 You can then use the command \\[next-error] to find the next error message
1035 and move to the line in the SGML document that caused it."
1037 (list (read-string "Validate command: "
1038 (or sgml-saved-validate-command
1039 (concat sgml-validate-command
1041 (shell-quote-argument
1042 (let ((name (buffer-file-name)))
1044 (file-name-nondirectory name
)))))))))
1045 (setq sgml-saved-validate-command command
)
1046 (save-some-buffers (not compilation-ask-about-save
) nil
)
1047 (compilation-start command
))
1049 (defsubst sgml-at-indentation-p
()
1050 "Return true if point is at the first non-whitespace character on the line."
1052 (skip-chars-backward " \t")
1055 (defun sgml-lexical-context (&optional limit
)
1056 "Return the lexical context at point as (TYPE . START).
1057 START is the location of the start of the lexical element.
1058 TYPE is one of `string', `comment', `tag', `cdata', `pi', or `text'.
1060 Optional argument LIMIT is the position to start parsing from.
1061 If nil, start from a preceding tag at indentation."
1067 ;; Skip tags backwards until we find one at indentation
1068 (while (and (ignore-errors (sgml-parse-tag-backward))
1069 (not (sgml-at-indentation-p)))))
1070 (with-syntax-table sgml-tag-syntax-table
1071 (while (< (point) pos
)
1072 ;; When entering this loop we're inside text.
1073 (setq text-start
(point))
1074 (skip-chars-forward "^<" pos
)
1078 ;; We got to the end without seeing a tag.
1080 ((looking-at "<!\\[[A-Z]+\\[")
1081 ;; We've found a CDATA section or similar.
1082 (let ((cdata-start (point)))
1083 (unless (search-forward "]]>" pos
'move
)
1084 (list 0 nil nil
'cdata nil nil nil nil cdata-start
))))
1085 ((looking-at comment-start-skip
)
1086 ;; parse-partial-sexp doesn't handle <!-- comments -->,
1087 ;; or only if ?- is in sgml-specials, so match explicitly
1088 (let ((start (point)))
1089 (unless (re-search-forward comment-end-skip pos
'move
)
1090 (list 0 nil nil nil t nil nil nil start
))))
1091 ((and sgml-xml-mode
(looking-at "<\\?"))
1092 ;; Processing Instructions.
1093 ;; In SGML, it's basically a normal tag of the form
1094 ;; <?NAME ...> but in XML, it takes the form <? ... ?>.
1095 (let ((pi-start (point)))
1096 (unless (search-forward "?>" pos
'move
)
1097 (list 0 nil nil
'pi nil nil nil nil pi-start
))))
1099 ;; We've reached a tag. Parse it.
1100 ;; FIXME: Handle net-enabling start-tags
1101 (parse-partial-sexp (point) pos
0))))))
1103 ((memq (nth 3 state
) '(cdata pi
)) (cons (nth 3 state
) (nth 8 state
)))
1104 ((nth 3 state
) (cons 'string
(nth 8 state
)))
1105 ((nth 4 state
) (cons 'comment
(nth 8 state
)))
1106 ((and state
(> (nth 0 state
) 0)) (cons 'tag
(nth 1 state
)))
1107 (t (cons 'text text-start
))))))
1109 (defun sgml-beginning-of-tag (&optional top-level
)
1110 "Skip to beginning of tag and return its name.
1111 If this can't be done, return nil."
1112 (let ((context (sgml-lexical-context)))
1113 (if (eq (car context
) 'tag
)
1115 (goto-char (cdr context
))
1116 (when (looking-at sgml-tag-name-re
)
1117 (match-string-no-properties 1)))
1119 (when (not (eq (car context
) 'text
))
1120 (goto-char (cdr context
))
1121 (sgml-beginning-of-tag t
))))))
1123 (defun sgml-value (alist)
1124 "Interactively insert value taken from attribute-rule ALIST.
1125 See `sgml-tag-alist' for info about attribute rules."
1126 (setq alist
(cdr alist
))
1127 (if (stringp (car alist
))
1128 (insert "=\"" (car alist
) ?
\")
1129 (if (and (eq (car alist
) t
) (not sgml-xml-mode
))
1132 (setq alist
(skeleton-read '(completing-read "Value: " (cdr alist
))))
1133 (if (string< "" alist
)
1138 (insert (skeleton-read '(completing-read "Value: " alist
)))
1140 (insert (skeleton-read '(read-string "Value: ")))))
1143 (defun sgml-quote (start end
&optional unquotep
)
1144 "Quote SGML text in region START ... END.
1145 Only &, < and > are quoted, the rest is left untouched.
1146 With prefix argument UNQUOTEP, unquote the region."
1147 (interactive "r\nP")
1149 (narrow-to-region start end
)
1150 (goto-char (point-min))
1152 ;; FIXME: We should unquote other named character references as well.
1153 (while (re-search-forward
1154 "\\(&\\(amp\\|\\(l\\|\\(g\\)\\)t\\)\\)[][<>&;\n\t \"%!'(),/=?]"
1156 (replace-match (if (match-end 4) ">" (if (match-end 3) "<" "&")) t t
1157 nil
(if (eq (char-before (match-end 0)) ?\
;) 0 1)))
1158 (while (re-search-forward "[&<>]" nil t
)
1159 (replace-match (cdr (assq (char-before) '((?
& .
"&")
1164 (defun sgml-pretty-print (beg end
)
1165 "Simple-minded pretty printer for SGML.
1166 Re-indents the code and inserts newlines between BEG and END.
1167 You might want to turn on `auto-fill-mode' to get better results."
1169 ;; - insert newline between some start-tag and text.
1170 ;; - don't insert newline in front of some end-tags.
1178 ;; Don't use narrowing because it screws up auto-indent.
1179 (setq end
(copy-marker end t
))
1180 (with-syntax-table sgml-tag-syntax-table
1181 (while (re-search-forward "<" end t
)
1182 (goto-char (match-beginning 0))
1183 (unless (or ;;(looking-at "</")
1184 (progn (skip-chars-backward " \t") (bolp)))
1185 (reindent-then-newline-and-indent))
1187 ;; (indent-region beg end)
1193 (cl-defstruct (sgml-tag
1194 (:constructor sgml-make-tag
(type start end name
)))
1195 type start end name
)
1197 (defsubst sgml-parse-tag-name
()
1198 "Skip past a tag-name, and return the name."
1199 (buffer-substring-no-properties
1200 (point) (progn (skip-syntax-forward "w_") (point))))
1202 (defun sgml-tag-text-p (start end
)
1203 "Return non-nil if text between START and END is a tag.
1204 Checks among other things that the tag does not contain spurious
1205 unquoted < or > chars inside, which would indicate that it
1206 really isn't a tag after all."
1208 (with-syntax-table sgml-tag-syntax-table
1209 (let ((pps (parse-partial-sexp start end
2)))
1210 (and (= (nth 0 pps
) 0))))))
1212 (defun sgml-parse-tag-backward (&optional limit
)
1213 "Parse an SGML tag backward, and return information about the tag.
1214 Assume that parsing starts from within a textual context.
1215 Leave point at the beginning of the tag."
1217 (let (tag-type tag-start tag-end name
)
1218 (or (re-search-backward "[<>]" limit
'move
)
1219 (error "No tag found"))
1220 (when (eq (char-after) ?
<)
1221 ;; Oops!! Looks like we were not in a textual context after all!.
1222 ;; Let's try to recover.
1223 ;; Remember the tag-start so we don't need to look for it later.
1224 ;; This is not just an optimization but also makes sure we don't get
1225 ;; stuck in infloops in cases where "looking back for <" would not go
1227 (setq tag-start
(point))
1228 (with-syntax-table sgml-tag-syntax-table
1229 (let ((pos (point)))
1231 ;; FIXME: This does not correctly skip over PI an CDATA tags.
1234 ;; This < seems to be just a spurious one, let's ignore it.
1236 (throw 'found
(sgml-parse-tag-backward limit
))))
1237 ;; Check it is really a tag, without any extra < or > inside.
1238 (unless (sgml-tag-text-p pos
(point))
1240 (throw 'found
(sgml-parse-tag-backward limit
)))
1241 (forward-char -
1))))
1242 (setq tag-end
(1+ (point)))
1244 ((sgml-looking-back-at "--") ; comment
1245 (setq tag-type
'comment
1246 tag-start
(or tag-start
(search-backward "<!--" nil t
))))
1247 ((sgml-looking-back-at "]]") ; cdata
1248 (setq tag-type
'cdata
1249 tag-start
(or tag-start
1250 (re-search-backward "<!\\[[A-Z]+\\[" nil t
))))
1251 ((sgml-looking-back-at "?") ; XML processing-instruction
1253 ;; IIUC: SGML processing instructions take the form <?foo ...>
1254 ;; i.e. a "normal" tag, handled below. In XML this is changed
1255 ;; to <?foo ... ?> where "..." can contain < and > and even <?
1256 ;; but not ?>. This means that when parsing backward, there's
1257 ;; no easy way to make sure that we find the real beginning of
1259 tag-start
(or tag-start
(search-backward "<?" nil t
))))
1263 (with-syntax-table sgml-tag-syntax-table
1268 ;; This > isn't really the end of a tag. Skip it.
1269 (goto-char (1- tag-end
))
1270 (throw 'found
(sgml-parse-tag-backward limit
))))
1272 (goto-char (1+ tag-start
))
1274 (?
! (setq tag-type
'decl
)) ; declaration
1275 (??
(setq tag-type
'pi
)) ; processing-instruction
1276 (?%
(setq tag-type
'jsp
)) ; JSP tags
1279 (setq tag-type
'close
1280 name
(sgml-parse-tag-name)))
1281 (_ ; open or empty tag
1282 (setq tag-type
'open
1283 name
(sgml-parse-tag-name))
1284 (if (or (eq ?
/ (char-before (- tag-end
1)))
1285 (sgml-empty-tag-p name
))
1286 (setq tag-type
'empty
))))))
1287 (goto-char tag-start
)
1288 (sgml-make-tag tag-type tag-start tag-end name
))))
1290 (defun sgml-get-context (&optional until
)
1291 "Determine the context of the current position.
1292 By default, parse until we find a start-tag as the first thing on a line.
1293 If UNTIL is `empty', return even if the context is empty (i.e.
1294 we just skipped over some element and got to a beginning of line).
1296 The context is a list of tag-info structures. The last one is the tag
1297 immediately enclosing the current position.
1299 Point is assumed to be outside of any tag. If we discover that it's
1300 not the case, the first tag returned is the one inside which we are."
1301 (let ((here (point))
1306 ;; CONTEXT keeps track of the tag-stack
1307 ;; STACK keeps track of the end tags we've seen (and thus the start-tags
1308 ;; we'll have to ignore) when skipping over matching open..close pairs.
1309 ;; IGNORE is a list of tags that can be ignored because they have been
1310 ;; closed implicitly.
1311 (skip-chars-backward " \t\n") ; Make sure we're not at indentation.
1313 (and (not (eq until
'now
))
1315 (not (if until
(eq until
'empty
) context
))
1316 (not (sgml-at-indentation-p))
1318 (/= (point) (sgml-tag-start (car context
)))
1319 (sgml-unclosed-tag-p (sgml-tag-name (car context
)))))
1320 (setq tag-info
(ignore-errors (sgml-parse-tag-backward))))
1322 ;; This tag may enclose things we thought were tags. If so,
1325 (> (sgml-tag-end tag-info
)
1326 (sgml-tag-end (car context
))))
1327 (setq context
(cdr context
)))
1330 ((> (sgml-tag-end tag-info
) here
)
1331 ;; Oops!! Looks like we were not outside of any tag, after all.
1332 (push tag-info context
)
1336 ((eq (sgml-tag-type tag-info
) 'open
)
1339 (if (assoc-string (sgml-tag-name tag-info
) ignore t
)
1340 ;; There was an implicit end-tag.
1342 (push tag-info context
)
1343 ;; We're changing context so the tags implicitly closed inside
1344 ;; the previous context aren't implicitly closed here any more.
1345 ;; [ Well, actually it depends, but we don't have the info about
1346 ;; when it doesn't and when it does. --Stef ]
1348 ((eq t
(compare-strings (sgml-tag-name tag-info
) nil nil
1349 (car stack
) nil nil t
))
1350 (setq stack
(cdr stack
)))
1352 ;; The open and close tags don't match.
1353 (if (not sgml-xml-mode
)
1354 (unless (sgml-unclosed-tag-p (sgml-tag-name tag-info
))
1355 (message "Unclosed tag <%s>" (sgml-tag-name tag-info
))
1357 ;; We could just assume that the tag is simply not closed
1358 ;; but it's a bad assumption when tags *are* closed but
1359 ;; not properly nested.
1360 (while (and (cdr tmp
)
1361 (not (eq t
(compare-strings
1362 (sgml-tag-name tag-info
) nil nil
1363 (cadr tmp
) nil nil t
))))
1364 (setq tmp
(cdr tmp
)))
1365 (if (cdr tmp
) (setcdr tmp
(cddr tmp
)))))
1366 (message "Unmatched tags <%s> and </%s>"
1367 (sgml-tag-name tag-info
) (pop stack
)))))
1369 (if (and (null stack
) (sgml-unclosed-tag-p (sgml-tag-name tag-info
)))
1370 ;; This is a top-level open of an implicitly closed tag, so any
1371 ;; occurrence of such an open tag at the same level can be ignored
1372 ;; because it's been implicitly closed.
1373 (push (sgml-tag-name tag-info
) ignore
)))
1376 ((eq (sgml-tag-type tag-info
) 'close
)
1377 (if (sgml-empty-tag-p (sgml-tag-name tag-info
))
1378 (message "Spurious </%s>: empty tag" (sgml-tag-name tag-info
))
1379 (push (sgml-tag-name tag-info
) stack
)))
1385 (defun sgml-show-context (&optional full
)
1386 "Display the current context.
1387 If FULL is non-nil, parse back to the beginning of the buffer."
1389 (with-output-to-temp-buffer "*XML Context*"
1391 (let ((context (sgml-get-context)))
1394 (while (setq more
(sgml-get-context))
1395 (setq context
(nconc more context
)))))
1399 ;; Editing shortcuts
1401 (defun sgml-close-tag ()
1402 "Close current element.
1403 Depending on context, inserts a matching close-tag, or closes
1404 the current start-tag or the current comment or the current cdata, ..."
1406 (pcase (car (sgml-lexical-context))
1407 (`comment
(insert " -->"))
1408 (`cdata
(insert "]]>"))
1409 (`pi
(insert " ?>"))
1410 (`jsp
(insert " %>"))
1411 (`tag
(insert " />"))
1413 (let ((context (save-excursion (sgml-get-context))))
1416 (insert "</" (sgml-tag-name (car (last context
))) ">")
1417 (indent-according-to-mode)))))
1419 (error "Nothing to close"))))
1421 (defun sgml-empty-tag-p (tag-name)
1422 "Return non-nil if TAG-NAME is an implicitly empty tag."
1423 (and (not sgml-xml-mode
)
1424 (assoc-string tag-name sgml-empty-tags
'ignore-case
)))
1426 (defun sgml-unclosed-tag-p (tag-name)
1427 "Return non-nil if TAG-NAME is a tag for which an end-tag is optional."
1428 (and (not sgml-xml-mode
)
1429 (assoc-string tag-name sgml-unclosed-tags
'ignore-case
)))
1432 (defun sgml-calculate-indent (&optional lcon
)
1433 "Calculate the column to which this line should be indented.
1434 LCON is the lexical context, if any."
1435 (unless lcon
(setq lcon
(sgml-lexical-context)))
1437 ;; Indent comment-start markers inside <!-- just like comment-end markers.
1438 (if (and (eq (car lcon
) 'tag
)
1440 (save-excursion (goto-char (cdr lcon
)) (looking-at "<!--")))
1441 (setq lcon
(cons 'comment
(+ (cdr lcon
) 2))))
1446 ;; Go back to previous non-empty line.
1447 (while (and (> (point) (cdr lcon
))
1448 (zerop (forward-line -
1))
1449 (looking-at "[ \t]*$")))
1450 (if (> (point) (cdr lcon
))
1451 ;; Previous line is inside the string.
1452 (current-indentation)
1453 (goto-char (cdr lcon
))
1454 (1+ (current-column))))
1457 (let ((mark (looking-at "--")))
1458 ;; Go back to previous non-empty line.
1459 (while (and (> (point) (cdr lcon
))
1460 (zerop (forward-line -
1))
1461 (or (looking-at "[ \t]*$")
1462 (if mark
(not (looking-at "[ \t]*--"))))))
1463 (if (> (point) (cdr lcon
))
1464 ;; Previous line is inside the comment.
1465 (skip-chars-forward " \t")
1466 (goto-char (cdr lcon
))
1467 ;; Skip `<!' to get to the `--' with which we want to align.
1468 (search-forward "--")
1469 (goto-char (match-beginning 0)))
1470 (when (and (not mark
) (looking-at "--"))
1471 (forward-char 2) (skip-chars-forward " \t"))
1474 ;; We don't know how to indent it. Let's be honest about it.
1476 ;; We don't know how to indent it. Let's be honest about it.
1480 (goto-char (1+ (cdr lcon
)))
1481 (skip-chars-forward "^ \t\n") ;Skip tag name.
1482 (skip-chars-forward " \t")
1485 ;; This is the first attribute: indent.
1486 (goto-char (1+ (cdr lcon
)))
1487 (+ (current-column) sgml-basic-offset
)))
1490 (while (looking-at "</")
1492 (skip-chars-forward " \t"))
1493 (let* ((here (point))
1494 (unclosed (and ;; (not sgml-xml-mode)
1495 (looking-at sgml-tag-name-re
)
1496 (assoc-string (match-string 1)
1497 sgml-unclosed-tags
'ignore-case
)
1500 ;; If possible, align on the previous non-empty text line.
1501 ;; Otherwise, do a more serious parsing to find the
1502 ;; tag(s) relative to which we should be indenting.
1503 (if (and (not unclosed
) (skip-chars-backward " \t")
1504 (< (skip-chars-backward " \t\n") 0)
1505 (back-to-indentation)
1506 (> (point) (cdr lcon
)))
1509 (nreverse (sgml-get-context (if unclosed nil
'empty
)))))
1511 ;; Ignore previous unclosed start-tag in context.
1512 (while (and context unclosed
1513 (eq t
(compare-strings
1514 (sgml-tag-name (car context
)) nil nil
1515 unclosed nil nil t
)))
1516 (setq context
(cdr context
)))
1517 ;; Indent to reflect nesting.
1519 ;; If we were not in a text context after all, let's try again.
1520 ((and context
(> (sgml-tag-end (car context
)) here
))
1522 (sgml-calculate-indent
1523 (cons (if (memq (sgml-tag-type (car context
)) '(comment cdata
))
1524 (sgml-tag-type (car context
)) 'tag
)
1525 (sgml-tag-start (car context
)))))
1526 ;; Align on the first element after the nearest open-tag, if any.
1528 (goto-char (sgml-tag-end (car context
)))
1529 (skip-chars-forward " \t\n")
1530 (< (point) here
) (sgml-at-indentation-p))
1535 (* sgml-basic-offset
(length context
)))))))
1538 (error "Unrecognized context %s" (car lcon
)))
1542 (defun sgml-indent-line ()
1543 "Indent the current line as SGML."
1545 (let* ((savep (point))
1548 (back-to-indentation)
1549 (if (>= (point) savep
) (setq savep nil
))
1550 (sgml-calculate-indent))))
1551 (if (null indent-col
)
1554 (save-excursion (indent-line-to indent-col
))
1555 (indent-line-to indent-col
)))))
1557 (defun sgml-guess-indent ()
1558 "Guess an appropriate value for `sgml-basic-offset'.
1559 Base the guessed indentation level on the first indented tag in the buffer.
1560 Add this to `sgml-mode-hook' for convenience."
1563 (goto-char (point-min))
1564 (if (re-search-forward "^\\([ \t]+\\)<" 500 'noerror
)
1566 (setq-local sgml-basic-offset
(1- (current-column)))
1567 (message "Guessed sgml-basic-offset = %d"
1571 (defun sgml-parse-dtd ()
1572 "Simplistic parse of the current buffer as a DTD.
1573 Currently just returns (EMPTY-TAGS UNCLOSED-TAGS)."
1574 (goto-char (point-min))
1577 (while (re-search-forward "<!ELEMENT[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+[-O][ \t\n]+\\([-O]\\)[ \t\n]+\\([^ \t\n]+\\)" nil t
)
1579 ((string= (match-string 3) "EMPTY")
1580 (push (match-string-no-properties 1) empty
))
1581 ((string= (match-string 2) "O")
1582 (push (match-string-no-properties 1) unclosed
))))
1583 (setq empty
(sort (mapcar 'downcase empty
) 'string
<))
1584 (setq unclosed
(sort (mapcar 'downcase unclosed
) 'string
<))
1585 (list empty unclosed
)))
1589 (defcustom html-mode-hook nil
1590 "Hook run by command `html-mode'.
1591 `text-mode-hook' and `sgml-mode-hook' are run first."
1594 :options
'(html-autoview-mode))
1596 (defvar html-quick-keys sgml-quick-keys
1597 "Use C-c X combinations for quick insertion of frequent tags when non-nil.
1598 This defaults to `sgml-quick-keys'.
1599 This takes effect when first loading the library.")
1601 (defvar html-mode-map
1602 (let ((map (make-sparse-keymap))
1603 (menu-map (make-sparse-keymap "HTML")))
1604 (set-keymap-parent map sgml-mode-map
)
1605 (define-key map
"\C-c6" 'html-headline-6
)
1606 (define-key map
"\C-c5" 'html-headline-5
)
1607 (define-key map
"\C-c4" 'html-headline-4
)
1608 (define-key map
"\C-c3" 'html-headline-3
)
1609 (define-key map
"\C-c2" 'html-headline-2
)
1610 (define-key map
"\C-c1" 'html-headline-1
)
1611 (define-key map
"\C-c\r" 'html-paragraph
)
1612 (define-key map
"\C-c\n" 'html-line
)
1613 (define-key map
"\C-c\C-c-" 'html-horizontal-rule
)
1614 (define-key map
"\C-c\C-co" 'html-ordered-list
)
1615 (define-key map
"\C-c\C-cu" 'html-unordered-list
)
1616 (define-key map
"\C-c\C-cr" 'html-radio-buttons
)
1617 (define-key map
"\C-c\C-cc" 'html-checkboxes
)
1618 (define-key map
"\C-c\C-cl" 'html-list-item
)
1619 (define-key map
"\C-c\C-ch" 'html-href-anchor
)
1620 (define-key map
"\C-c\C-cn" 'html-name-anchor
)
1621 (define-key map
"\C-c\C-ci" 'html-image
)
1622 (when html-quick-keys
1623 (define-key map
"\C-c-" 'html-horizontal-rule
)
1624 (define-key map
"\C-co" 'html-ordered-list
)
1625 (define-key map
"\C-cu" 'html-unordered-list
)
1626 (define-key map
"\C-cr" 'html-radio-buttons
)
1627 (define-key map
"\C-cc" 'html-checkboxes
)
1628 (define-key map
"\C-cl" 'html-list-item
)
1629 (define-key map
"\C-ch" 'html-href-anchor
)
1630 (define-key map
"\C-cn" 'html-name-anchor
)
1631 (define-key map
"\C-ci" 'html-image
))
1632 (define-key map
"\C-c\C-s" 'html-autoview-mode
)
1633 (define-key map
"\C-c\C-v" 'browse-url-of-buffer
)
1634 (define-key map
[menu-bar html
] (cons "HTML" menu-map
))
1635 (define-key menu-map
[html-autoview-mode
]
1636 '("Toggle Autoviewing" . html-autoview-mode
))
1637 (define-key menu-map
[browse-url-of-buffer
]
1638 '("View Buffer Contents" . browse-url-of-buffer
))
1639 (define-key menu-map
[nil] '("--"))
1640 ;;(define-key menu-map "6" '("Heading 6" . html-headline-6))
1641 ;;(define-key menu-map "5" '("Heading 5" . html-headline-5))
1642 ;;(define-key menu-map "4" '("Heading 4" . html-headline-4))
1643 (define-key menu-map "3" '("Heading 3" . html-headline-3))
1644 (define-key menu-map "2" '("Heading 2" . html-headline-2))
1645 (define-key menu-map "1" '("Heading 1" . html-headline-1))
1646 (define-key menu-map "l" '("Radio Buttons" . html-radio-buttons))
1647 (define-key menu-map "c" '("Checkboxes" . html-checkboxes))
1648 (define-key menu-map "l" '("List Item" . html-list-item))
1649 (define-key menu-map "u" '("Unordered List" . html-unordered-list))
1650 (define-key menu-map "o" '("Ordered List" . html-ordered-list))
1651 (define-key menu-map "-" '("Horizontal Rule" . html-horizontal-rule))
1652 (define-key menu-map "\n" '("Line Break" . html-line))
1653 (define-key menu-map "\r" '("Paragraph" . html-paragraph))
1654 (define-key menu-map "i" '("Image" . html-image))
1655 (define-key menu-map "h" '("Href Anchor" . html-href-anchor))
1656 (define-key menu-map "n" '("Name Anchor" . html-name-anchor))
1658 "Keymap for commands for use in HTML mode.")
1660 (defvar html-face-tag-alist
1664 (mode-line . "rev"))
1665 "Value of `sgml-face-tag-alist' for HTML mode.")
1667 (defvar html-tag-face-alist
1670 ("blink" . highlight)
1673 ("h1" bold underline)
1674 ("h2" bold-italic underline)
1675 ("h3" italic underline)
1684 ("title" bold underline)
1688 "Value of `sgml-tag-face-alist' for HTML mode.")
1690 (defvar html-display-text
1694 "Value of `sgml-display-text' for HTML mode.")
1697 ;; should code exactly HTML 3 here when that is finished
1698 (defvar html-tag-alist
1699 (let* ((1-7 '(("1") ("2") ("3") ("4") ("5") ("6") ("7")))
1700 (1-9 `(,@1-7 ("8") ("9")))
1701 (align '(("align" ("left") ("center") ("right"))))
1702 (valign '(("top") ("middle") ("bottom") ("baseline")))
1703 (rel '(("next") ("previous") ("parent") ("subdocument") ("made")))
1704 (href '("href" ("ftp:") ("file:") ("finger:") ("gopher:") ("http:")
1705 ("mailto:") ("news:") ("rlogin:") ("telnet:") ("tn3270:")
1706 ("wais:") ("/cgi-bin/")))
1712 (list '((nil \n ("List item: " "<li>" str
1713 (if sgml-xml-mode "</li>") \n))))
1720 ;; put ,-expressions first, else byte-compile chokes (as of V19.29)
1721 ;; and like this it's more efficient anyway
1722 `(("a" ,name ,@link)
1725 ("font" nil "size" ("-1") ("+1") ("-2") ("+2") ,@1-7)
1726 ("form" (\n _ \n "<input type=\"submit\" value=\"\""
1727 (if sgml-xml-mode " />" ">"))
1728 ("action" ,@(cdr href)) ("method" ("get") ("post")))
1735 ("hr" t ("size" ,@1-9) ("width") ("noshade" t) ,@align)
1736 ("img" t ("align" ,@valign ("texttop") ("absmiddle") ("absbottom"))
1737 ("src") ("alt") ("width" "1") ("height" "1")
1738 ("border" "1") ("vspace" "1") ("hspace" "1") ("ismap" t))
1739 ("input" t ("size" ,@1-9) ("maxlength" ,@1-9) ("checked" t) ,name
1740 ("type" ("text") ("password") ("checkbox") ("radio")
1741 ("submit") ("reset"))
1745 ("ol" ,@list ("type" ("A") ("a") ("I") ("i") ("1")))
1749 "<option>" str (if sgml-xml-mode "</option>") \n))
1750 ,name ("size" ,@1-9) ("multiple" t))
1752 ((completing-read "Cell kind: " '(("td") ("th"))
1755 (if sgml-xml-mode (concat "<" str "></tr>")) \n))
1756 ("border" t ,@1-9) ("width" "10") ("cellpadding"))
1758 ("textarea" ,name ("rows" ,@1-9) ("cols" ,@1-9))
1760 ("ul" ,@list ("type" ("disc") ("circle") ("square")))
1768 ("Item: " "<item>" str (if sgml-xml-mode "</item>") \n))
1775 ("body" \n ("background" ".gif") ("bgcolor" "#") ("text" "#")
1776 ("link" "#") ("alink" "#") ("vlink" "#"))
1777 ("box" (nil _ "<over>" _ (if sgml-xml-mode "</over>")))
1778 ("br" t ("clear" ("left") ("right")))
1779 ("caption" ("valign" ("top") ("bottom")))
1783 ("dd" ,(not sgml-xml-mode))
1789 "<dt>" str (if sgml-xml-mode "</dt>")
1790 "<dd>" _ (if sgml-xml-mode "</dd>") \n)))
1791 ("dt" (t _ (if sgml-xml-mode "</dt>")
1792 "<dd>" (if sgml-xml-mode "</dd>") \n))
1794 ("fn" "id" "fn") ;; Footnotes were deprecated in HTML 3.2
1798 "<title>" (setq str (read-input "Title: ")) "</title>\n"
1800 "<body>\n<h1>" str "</h1>\n" _
1801 "\n<address>\n<a href=\"mailto:"
1803 "\">" (user-full-name) "</a>\n</address>\n"
1808 ("isindex" t ("action") ("prompt"))
1811 ("li" ,(not sgml-xml-mode))
1814 ("option" t ("value") ("label") ("selected" t))
1816 ("person") ;; Tag for person's name tag deprecated in HTML 3.2
1843 "Value of `sgml-tag-alist' for HTML mode.")
1845 (defvar html-tag-help
1847 ("a" . "Anchor of point or link elsewhere")
1848 ("abbrev" . "Abbreviation")
1849 ("acronym" . "Acronym")
1850 ("address" . "Formatted mail address")
1851 ("array" . "Math array")
1854 ("base" . "Base address for URLs")
1855 ("big" . "Font size")
1856 ("blink" . "Blinking text")
1857 ("blockquote" . "Indented quotation")
1858 ("body" . "Document body")
1859 ("box" . "Math fraction")
1860 ("br" . "Line break")
1861 ("caption" . "Table caption")
1862 ("center" . "Centered text")
1863 ("changed" . "Change bars")
1864 ("cite" . "Citation of a document")
1865 ("code" . "Formatted source code")
1866 ("dd" . "Definition of term")
1867 ("del" . "Deleted text")
1868 ("dfn" . "Defining instance of a term")
1869 ("dir" . "Directory list (obsolete)")
1870 ("div" . "Generic block-level container")
1871 ("dl" . "Definition list")
1872 ("dt" . "Term to be defined")
1873 ("em" . "Emphasized")
1874 ("embed" . "Embedded data in foreign format")
1876 ("figa" . "Figure anchor")
1877 ("figd" . "Figure description")
1878 ("figt" . "Figure text")
1879 ("fn" . "Footnote") ;; No one supports special footnote rendering.
1880 ("font" . "Font size")
1881 ("form" . "Form with input fields")
1882 ("group" . "Document grouping")
1883 ("h1" . "Most important section headline")
1884 ("h2" . "Important section headline")
1885 ("h3" . "Section headline")
1886 ("h4" . "Minor section headline")
1887 ("h5" . "Unimportant section headline")
1888 ("h6" . "Least important section headline")
1889 ("head" . "Document header")
1890 ("hr" . "Horizontal rule")
1891 ("html" . "HTML Document")
1892 ("i" . "Italic face")
1893 ("img" . "Graphic image")
1894 ("input" . "Form input field")
1895 ("ins" . "Inserted text")
1896 ("isindex" . "Input field for index search")
1897 ("kbd" . "Keyboard example face")
1898 ("lang" . "Natural language")
1899 ("li" . "List item")
1900 ("link" . "Link relationship")
1901 ("math" . "Math formula")
1902 ("menu" . "Menu list (obsolete)")
1903 ("mh" . "Form mail header")
1904 ("nextid" . "Allocate new id")
1905 ("nobr" . "Text without line break")
1906 ("ol" . "Ordered list")
1907 ("option" . "Selection list item")
1908 ("over" . "Math fraction rule")
1909 ("p" . "Paragraph start")
1910 ("panel" . "Floating panel")
1911 ("person" . "Person's name")
1912 ("pre" . "Preformatted fixed width text")
1914 ("rev" . "Reverse video")
1916 ("samp" . "Sample text")
1917 ("select" . "Selection list")
1918 ("small" . "Font size")
1919 ("sp" . "Nobreak space")
1920 ("span" . "Generic inline container")
1921 ("strong" . "Standout text")
1922 ("sub" . "Subscript")
1923 ("sup" . "Superscript")
1924 ("table" . "Table with rows and columns")
1925 ("tb" . "Table vertical break")
1926 ("td" . "Table data cell")
1927 ("textarea" . "Form multiline edit area")
1928 ("th" . "Table header cell")
1929 ("title" . "Document title")
1930 ("tr" . "Table row separator")
1931 ("tt" . "Typewriter face")
1932 ("u" . "Underlined text")
1933 ("ul" . "Unordered list")
1934 ("var" . "Math variable face")
1935 ("wbr" . "Enable <br> within <nobr>"))
1936 "Value of variable `sgml-tag-help' for HTML mode.")
1938 (defvar outline-regexp)
1939 (defvar outline-heading-end-regexp)
1940 (defvar outline-level)
1942 (defun html-current-defun-name ()
1943 "Return the name of the last HTML title or heading, or nil."
1945 (if (re-search-backward
1948 "\\(?:[hH][0-6]\\|title\\|TITLE\\|Title\\)"
1951 "\\([^<\r\n]*[^ <\t\r\n]+\\)")
1953 (match-string-no-properties 1))))
1957 (define-derived-mode html-mode sgml-mode '(sgml-xml-mode "XHTML" "HTML")
1958 "Major mode based on SGML mode for editing HTML documents.
1959 This allows inserting skeleton constructs used in hypertext documents with
1960 completion. See below for an introduction to HTML. Use
1961 \\[browse-url-of-buffer] to see how this comes out. See also `sgml-mode' on
1962 which this is based.
1964 Do \\[describe-variable] html- SPC and \\[describe-variable] sgml- SPC to see available variables.
1966 To write fairly well formatted pages you only need to know few things. Most
1967 browsers have a function to read the source code of the page being seen, so
1968 you can imitate various tricks. Here's a very short HTML primer which you
1969 can also view with a browser to see what happens:
1971 <title>A Title Describing Contents</title> should be on every page. Pages can
1972 have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
1973 <hr> Parts can be separated with horizontal rules.
1975 <p>Paragraphs only need an opening tag. Line breaks and multiple spaces are
1976 ignored unless the text is <pre>preformatted.</pre> Text can be marked as
1977 <b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal M-o or
1978 Edit/Text Properties/Face commands.
1980 Pages can have <a name=\"SOMENAME\">named points</a> and can link other points
1981 to them with <a href=\"#SOMENAME\">see also somename</a>. In the same way <a
1982 href=\"URL\">see also URL</a> where URL is a filename relative to current
1983 directory, or absolute as in `http://www.cs.indiana.edu/elisp/w3/docs.html'.
1985 Images in many formats can be inlined with <img src=\"URL\">.
1987 If you mainly create your own documents, `sgml-specials' might be
1988 interesting. But note that some HTML 2 browsers can't handle `''.
1989 To work around that, do:
1990 (eval-after-load \"sgml-mode\" '(aset sgml-char-names ?' nil))
1993 (setq-local sgml-display-text html-display-text)
1994 (setq-local sgml-tag-face-alist html-tag-face-alist)
1995 (setq-local sgml-tag-alist html-tag-alist)
1996 (setq-local sgml-face-tag-alist html-face-tag-alist)
1997 (setq-local sgml-tag-help html-tag-help)
1998 (setq-local outline-regexp "^.*<[Hh][1-6]\\>")
1999 (setq-local outline-heading-end-regexp "</[Hh][1-6]>")
2000 (setq-local outline-level
2001 (lambda () (char-before (match-end 0))))
2002 (setq-local add-log-current-defun-function #'html-current-defun-name)
2003 (setq-local sentence-end-base "[.?!][]\"'”)}]*\\(<[^>]*>\\)*")
2005 (setq imenu-create-index-function 'html-imenu-index)
2007 (setq-local sgml-empty-tags
2008 ;; From HTML-4.01's loose.dtd, parsed with
2009 ;; `sgml-parse-dtd', plus manual addition of "wbr".
2010 '("area" "base" "basefont" "br" "col" "frame" "hr" "img" "input"
2011 "isindex" "link" "meta" "param" "wbr"))
2012 (setq-local sgml-unclosed-tags
2013 ;; From HTML-4.01's loose.dtd, parsed with `sgml-parse-dtd'.
2014 '("body" "colgroup" "dd" "dt" "head" "html" "li" "option"
2015 "p" "tbody" "td" "tfoot" "th" "thead" "tr"))
2016 ;; It's for the user to decide if it defeats it or not -stef
2017 ;; (make-local-variable 'imenu-sort-function)
2018 ;; (setq imenu-sort-function nil) ; sorting the menu defeats the purpose
2021 (defvar html-imenu-regexp
2022 "\\s-*<h\\([1-9]\\)[^\n<>]*>\\(<[^\n<>]*>\\)*\\s-*\\([^\n<>]*\\)"
2023 "A regular expression matching a head line to be added to the menu.
2024 The first `match-string' should be a number from 1-9.
2025 The second `match-string' matches extra tags and is ignored.
2026 The third `match-string' will be the used in the menu.")
2028 (defun html-imenu-index ()
2029 "Return a table of contents for an HTML buffer for use with Imenu."
2032 (goto-char (point-min))
2033 (while (re-search-forward html-imenu-regexp nil t)
2035 (cons (cons (concat (make-string
2036 (* 2 (1- (string-to-number (match-string 1))))
2039 (line-beginning-position))
2041 (nreverse toc-index)))
2043 (define-minor-mode html-autoview-mode
2044 "Toggle viewing of HTML files on save (HTML Autoview mode).
2045 With a prefix argument ARG, enable HTML Autoview mode if ARG is
2046 positive, and disable it otherwise. If called from Lisp, enable
2047 the mode if ARG is omitted or nil.
2049 HTML Autoview mode is a buffer-local minor mode for use with
2050 `html-mode'. If enabled, saving the file automatically runs
2051 `browse-url-of-buffer' to view it."
2054 (if html-autoview-mode
2055 (add-hook 'after-save-hook 'browse-url-of-buffer nil t)
2056 (remove-hook 'after-save-hook 'browse-url-of-buffer t)))
2059 (define-skeleton html-href-anchor
2060 "HTML anchor tag with href attribute."
2062 ;; '(setq input "http:")
2063 "<a href=\"" str "\">" _ "</a>")
2065 (define-skeleton html-name-anchor
2066 "HTML anchor tag with name attribute."
2068 "<a name=\"" str "\""
2069 (if sgml-xml-mode (concat " id=\"" str "\""))
2072 (define-skeleton html-headline-1
2073 "HTML level 1 headline tags."
2077 (define-skeleton html-headline-2
2078 "HTML level 2 headline tags."
2082 (define-skeleton html-headline-3
2083 "HTML level 3 headline tags."
2087 (define-skeleton html-headline-4
2088 "HTML level 4 headline tags."
2092 (define-skeleton html-headline-5
2093 "HTML level 5 headline tags."
2097 (define-skeleton html-headline-6
2098 "HTML level 6 headline tags."
2102 (define-skeleton html-horizontal-rule
2103 "HTML horizontal rule tag."
2105 (if sgml-xml-mode "<hr />" "<hr>") \n)
2107 (define-skeleton html-image
2110 "<img src=\"" str "\" alt=\"" _ "\""
2111 (if sgml-xml-mode " />" ">"))
2113 (define-skeleton html-line
2114 "HTML line break tag."
2116 (if sgml-xml-mode "<br />" "<br>") \n)
2118 (define-skeleton html-ordered-list
2119 "HTML ordered list tags."
2122 "<li>" _ (if sgml-xml-mode "</li>") \n
2125 (define-skeleton html-unordered-list
2126 "HTML unordered list tags."
2129 "<li>" _ (if sgml-xml-mode "</li>") \n
2132 (define-skeleton html-list-item
2133 "HTML list item tag."
2136 "<li>" _ (if sgml-xml-mode "</li>"))
2138 (define-skeleton html-paragraph
2139 "HTML paragraph tag."
2142 "<p>" _ (if sgml-xml-mode "</p>"))
2144 (define-skeleton html-checkboxes
2145 "Group of connected checkbox inputs."
2150 "<input type=\"" (identity "checkbox") ; see comment above about identity
2151 "\" name=\"" (or v1 (setq v1 (skeleton-read "Name: ")))
2152 "\" value=\"" str ?\"
2153 (when (y-or-n-p "Set \"checked\" attribute? ")
2154 (funcall skeleton-transformation-function
2155 (if sgml-xml-mode " checked=\"checked\"" " checked")))
2156 (if sgml-xml-mode " />" ">")
2157 (skeleton-read "Text: " (capitalize str))
2158 (or v2 (setq v2 (if (y-or-n-p "Newline after text? ")
2159 (funcall skeleton-transformation-function
2160 (if sgml-xml-mode "<br />" "<br>"))
2164 (define-skeleton html-radio-buttons
2165 "Group of connected radio button inputs."
2170 "<input type=\"" (identity "radio") ; see comment above about identity
2171 "\" name=\"" (or (car v2) (setcar v2 (skeleton-read "Name: ")))
2172 "\" value=\"" str ?\"
2173 (when (and (not v1) (setq v1 (y-or-n-p "Set \"checked\" attribute? ")))
2174 (funcall skeleton-transformation-function
2175 (if sgml-xml-mode " checked=\"checked\"" " checked")))
2176 (if sgml-xml-mode " />" ">")
2177 (skeleton-read "Text: " (capitalize str))
2178 (or (cdr v2) (setcdr v2 (if (y-or-n-p "Newline after text? ")
2179 (funcall skeleton-transformation-function
2180 (if sgml-xml-mode "<br />" "<br>"))
2184 (provide 'sgml-mode)
2186 ;;; sgml-mode.el ends here