yatex

annotate docs/yahtmle @ 272:78d0fdc0459c

Add `@directory' entries to info sources.
author HIROSE Yuuji <yuuji@gentei.org>
date Fri, 11 May 2012 15:43:40 +0900
parents d467c0fb6083
children 784b25b062cc
rev   line source
yuuji@271 1 Info file: yahtmle, -*-Text-*-
yuuji@271 2 produced by `texinfo-format-buffer'
yuuji@271 3 from file `yahtmle.tex'
yuuji@271 4 using `texinfmt.el' version 2.38 of 3 July 1998.
yuuji@271 5
yuuji@272 6 START-INFO-DIR-ENTRY
yuuji@272 7 * yahtml-e: (yahtmle). Yet Another html-mode for Emacs (English).
yuuji@272 8 END-INFO-DIR-ENTRY
yuuji@272 9
yuuji@271 10
yuuji@271 11
yuuji@271 12
yuuji@271 13
yuuji@271 14 
yuuji@271 15 File: yahtmle, Node: Top, Next: Intro, Prev: (dir), Up: (dir)
yuuji@271 16
yuuji@271 17 * Menu:
yuuji@271 18
yuuji@271 19 * Intro:: Introduction
yuuji@271 20 * Installation:: Installing yahtml
yuuji@271 21 * Command Invocation:: Using External Commands
yuuji@271 22 * Completion:: Input with Completion
yuuji@271 23 * Jump:: Moving the Cursor
yuuji@271 24 * Changing and Deleting:: Changing and Deleting
yuuji@271 25 * CSS Support:: Style Sheet Support
yuuji@271 26 * Customizations:: List of Customize Variables
yuuji@271 27 * Copying:: Copyright
yuuji@271 28 * Concept Index:: Index
yuuji@271 29
yuuji@271 30
yuuji@271 31 
yuuji@271 32 File: yahtmle, Node: Intro, Next: Installation, Prev: Top, Up: Top
yuuji@271 33
yuuji@271 34 Introduction
yuuji@271 35 ************
yuuji@271 36
yuuji@271 37 yahtml is a package to support creating HTML documents on Emacsens. Easy
yuuji@271 38 input of elements (tags) by completion, syntax checking with programs like
yuuji@271 39 weblint, and invoking the appropriate browser or image viewer depending on
yuuji@271 40 the cursor position is its main features.
yuuji@271 41
yuuji@271 42 (This Info is still incomplete)
yuuji@271 43
yuuji@271 44
yuuji@271 45 
yuuji@271 46 File: yahtmle, Node: Installation, Next: Command Invocation, Prev: Intro, Up: Top
yuuji@271 47
yuuji@271 48 Installing yahtml
yuuji@271 49 *****************
yuuji@271 50 * Menu:
yuuji@271 51
yuuji@271 52 * Setting up yahtml::
yuuji@271 53 * Setting environments for weblint browsers and image viewers::
yuuji@271 54 * Setting environment variables for WWW pages::
yuuji@271 55
yuuji@271 56
yuuji@271 57 
yuuji@271 58 File: yahtmle, Node: Setting up yahtml, Next: Setting environments for weblint browsers and image viewers, Prev: Installation, Up: Installation
yuuji@271 59
yuuji@271 60 Setting up yahtml
yuuji@271 61 =================
yuuji@271 62
yuuji@271 63
yuuji@271 64 Add the following to `~/.emacs'
yuuji@271 65
yuuji@271 66 (setq auto-mode-alist
yuuji@271 67 (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
yuuji@271 68 (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
yuuji@271 69
yuuji@271 70 Next, add to load-path the directory with the yahtml files (`yahtml.el',
yuuji@271 71 `yatexlib.el', `yatexprc.el'). For example, if you put them in
yuuji@271 72 `~/src/emacs/yahtml',
yuuji@271 73
yuuji@271 74 (setq load-path (cons (expand-file-name "~/src/emacs/yahtml") load-path))
yuuji@271 75
yuuji@271 76 is what you add.
yuuji@271 77
yuuji@271 78 By this, yahtml will be automatically loaded when editing files with .html
yuuji@271 79 extensions. "yahtml" will be displayed on the mode line if no errors
yuuji@271 80 occurred.
yuuji@271 81
yuuji@271 82
yuuji@271 83 
yuuji@271 84 File: yahtmle, Node: Setting environments for weblint browsers and image viewers, Next: Setting environment variables for WWW pages, Prev: Setting up yahtml, Up: Installation
yuuji@271 85
yuuji@271 86 Setting environments for weblint, browsers, and image viewers
yuuji@271 87 =============================================================
yuuji@271 88
yuuji@271 89 Check the variables for invoking external commands and modify as needed.
yuuji@271 90 Defaults are in parenthesis.
yuuji@271 91
yuuji@271 92 `yahtml-www-browser'
yuuji@271 93 ... browser command name (netscape)
yuuji@271 94 `yahtml-image-viewer'
yuuji@271 95 ... image viewer command name (xv)
yuuji@271 96 `yahtml-lint-program'
yuuji@271 97 ... syntax check programs command name (jweblint)
yuuji@271 98 `yahtml-kanji-code'
yuuji@271 99 ... kanji code for HTML files
yuuji@271 100
yuuji@271 101
yuuji@271 102 
yuuji@271 103 File: yahtmle, Node: Setting environment variables for WWW pages, Prev: Setting environments for weblint browsers and image viewers, Up: Installation
yuuji@271 104
yuuji@271 105 Setting environment variables for WWW pages
yuuji@271 106 ===========================================
yuuji@271 107
yuuji@271 108 Variables regarding path names for files that will be your home page.
yuuji@271 109 `yahtml-path-url-alist'
yuuji@271 110 ... list of matching path name on file system and URLs
yuuji@271 111 `yahtml-directory-index'
yuuji@271 112 ... index file displayed when none is given in URL. Usually
yuuji@271 113 `index.html' on NCSA type httpd and `Welcome.html' on CERN types.
yuuji@271 114
yuuji@271 115 Examples for `yahtml-path-url-alist'. If `/home/yuuji/http/' is
yuuji@271 116 `http://localhost/~yuuji' at home and `/usr/home/yuuji/www/' is
yuuji@271 117 `http://www.keio.ac.jp/~yuuji/' at work, then
yuuji@271 118
yuuji@271 119 (setq yahtml-path-url-alist
yuuji@271 120 '(("/home/yuuji/http" . "http://localhost/~yuuji")
yuuji@271 121 ("/usr/home/yuuji/www" . "http://www.keio.ac.jp/~yuuji")))
yuuji@271 122
yuuji@271 123 Any number of additions can be made to this list.
yuuji@271 124
yuuji@271 125
yuuji@271 126 
yuuji@271 127 File: yahtmle, Node: Command Invocation, Next: Completion, Prev: Installation, Up: Top
yuuji@271 128
yuuji@271 129 Invoking external commands
yuuji@271 130 **************************
yuuji@271 131
yuuji@271 132 For easy use of commands that are handy when editing HTML files.
yuuji@271 133 `[prefix] t j'
yuuji@271 134 ... Invoke HTML syntax checker (jweblint)
yuuji@271 135 `[prefix] t p'
yuuji@271 136 ... Display current page in browser
yuuji@271 137 `[prefix] t r'
yuuji@271 138 ... Reload current page if browser is already running
yuuji@271 139
yuuji@271 140
yuuji@271 141 
yuuji@271 142 File: yahtmle, Node: Completion, Next: Jump, Prev: Command Invocation, Up: Top
yuuji@271 143
yuuji@271 144 Completion Input
yuuji@271 145 ****************
yuuji@271 146
yuuji@271 147 Completion input of HTML elements is done through the same key strokes as
yuuji@271 148 YaTeX's begin-type completion, section-type completion, large-type
yuuji@271 149 completion, maketitle-type completion, and accent completion.
yuuji@271 150 Corresponding elements in this order is; elements that span multiple
yuuji@271 151 lines, empty elements such as img, tags that start and end in a single
yuuji@271 152 line, elements with no attributes or contents, and special or symbol
yuuji@271 153 entities.
yuuji@271 154
yuuji@271 155 `[prefix] b (YaTeX begin-type completion)'
yuuji@271 156 ...
yuuji@271 157 <ul>
yuuji@271 158 </ul>
yuuji@271 159
yuuji@271 160 Completion for elements that the start tag and the end tag span
yuuji@271 161 multiple lines. Mostly block-level elements.
yuuji@271 162
yuuji@271 163 `[prefix] s (YateX section-type completion)'
yuuji@271 164 ...
yuuji@271 165 <img src="foo.gif" alt="photo">
yuuji@271 166
yuuji@271 167 Completion for elements that do not have end tags and require only
yuuji@271 168 attributes. Possible completions are, <img>, <input>.
yuuji@271 169
yuuji@271 170 `[prefix] l (YaTeX large-type completion)'
yuuji@271 171 ...
yuuji@271 172
yuuji@271 173 <big> ` </big>
yuuji@271 174
yuuji@271 175 Similar to begin-type completion but used for elements that start and
yuuji@271 176 end on a single line.
yuuji@271 177
yuuji@271 178
yuuji@271 179 `[prefix] m (YaTeX maketitle-type completion)'
yuuji@271 180 ... Completion for elements without attributes or contents. Possible
yuuji@271 181 completion is <br>
yuuji@271 182
yuuji@271 183 `[prefix] a (YaTeX accent completion)'
yuuji@271 184 ... Used to enter special or symbol entities. By default completion
yuuji@271 185 for < (&lt;), > (&gt;), & (&amp;), " (&quot;), ' (&apos;), blank
yuuji@271 186 (&nbsp;) is possible.
yuuji@271 187
yuuji@271 188
yuuji@271 189 
yuuji@271 190 File: yahtmle, Node: Jump, Next: Changing and Deleting, Prev: Completion, Up: Top
yuuji@271 191
yuuji@271 192 Cursor Movement
yuuji@271 193 ***************
yuuji@271 194 By using
yuuji@271 195
yuuji@271 196 `[prefix] g'
yuuji@271 197 ... move to corresponding object
yuuji@271 198
yuuji@271 199 the cursor will go to the corresponding object according to the context.
yuuji@271 200 Recognized contexts are
yuuji@271 201
yuuji@271 202 * `<TAG>' <--> `</TAG>'
yuuji@271 203 * `<img src="image.file">' -> invoke viewer
yuuji@271 204 * `<a href="link.to.somewhere">' -> move cursor to linked target
yuuji@271 205 * `<applet code="program">' -> open Java source
yuuji@271 206
yuuji@271 207
yuuji@271 208 
yuuji@271 209 File: yahtmle, Node: Changing and Deleting, Next: CSS Support, Prev: Jump, Up: Top
yuuji@271 210
yuuji@271 211 Changing and Deleting
yuuji@271 212 *********************
yuuji@271 213
yuuji@271 214 * Menu:
yuuji@271 215
yuuji@271 216 * Changing tags in pairs::
yuuji@271 217 * Changing entities::
yuuji@271 218 * URLencoding of strings within region::
yuuji@271 219 * td-enclosure/tr-enclosure::
yuuji@271 220
yuuji@271 221
yuuji@271 222 
yuuji@271 223 File: yahtmle, Node: Changing tags in pairs, Next: Changing entities, Prev: Changing and Deleting, Up: Changing and Deleting
yuuji@271 224
yuuji@271 225 Changing tags in pairs
yuuji@271 226 ======================
yuuji@271 227 By using
yuuji@271 228
yuuji@271 229 `[prefix] c'
yuuji@271 230 ... change tags in matching pairs
yuuji@271 231
yuuji@271 232 the content can be changed according to the context of the HTML document
yuuji@271 233 where the cursor is located.
yuuji@271 234
yuuji@271 235 * `<TAG>'``</TAG>'
yuuji@271 236 ... change `TAG' element name
yuuji@271 237 * attributes such as `<img src="image.file" alt="photo">'
yuuji@271 238 ... change attributes
yuuji@271 239
yuuji@271 240
yuuji@271 241 
yuuji@271 242 File: yahtmle, Node: Changing entities, Next: URLencoding of strings within region, Prev: Changing tags in pairs, Up: Changing and Deleting
yuuji@271 243
yuuji@271 244 Changing entities
yuuji@271 245 =================
yuuji@271 246 Special characters such as < or > must be written as &lt; and &gt;. Easy
yuuji@271 247 conversion of these characters can be done when importing text from non
yuuji@271 248 HTML files.
yuuji@271 249
yuuji@271 250
yuuji@271 251 `[prefix] ;'
yuuji@271 252 ... convert char to special entity in marked region
yuuji@271 253 `[prefix] :'
yuuji@271 254 ... convert special entity to original char in marked region
yuuji@271 255 (reverse of [prefix] ;)
yuuji@271 256
yuuji@271 257
yuuji@271 258
yuuji@271 259 
yuuji@271 260 File: yahtmle, Node: URLencoding of strings within region, Next: td-enclosure/tr-enclosure, Prev: Changing entities, Up: Changing and Deleting
yuuji@271 261
yuuji@271 262 URLencoding of strings within region
yuuji@271 263 ====================================
yuuji@271 264
yuuji@271 265 `[prefix] #'
yuuji@271 266 ... encode chars that needs to be URLencoded within region
yuuji@271 267
yuuji@271 268
yuuji@271 269 
yuuji@271 270 File: yahtmle, Node: td-enclosure/tr-enclosure, Prev: URLencoding of strings within region, Up: Changing and Deleting
yuuji@271 271
yuuji@271 272 td-enclosure/tr-enclosure
yuuji@271 273 =========================
yuuji@271 274 If you wan to convert series of field into <td>...</td> repetitions for
yuuji@271 275 table element, td-enclosure or tr-enclosure is convenient.
yuuji@271 276
yuuji@271 277 `[prefix] }'
yuuji@271 278
yuuji@271 279 ... Enclose each field in a region into <td>...</td>'s.
yuuji@271 280 `[prefix] ]'
yuuji@271 281
yuuji@271 282 ... Enclose each line in a region into <tr>...</tr>'s, with every
yuuji@271 283 line converted to <td>...</td> repetition. They presume white space as
yuuji@271 284 field separator by default. To change this, enter other delimiting
yuuji@271 285 character for a query. You can convert CSV, for example, into table by
yuuji@271 286 specifying comma(,) as a delimiter.
yuuji@271 287
yuuji@271 288 If you want to enclose fields with th, call with universal-argument
yuuji@271 289 (`C-u'). Enter `th' to enclose fields with <th>...</th>. The special
yuuji@271 290 answer `thd' means that enclose the only first column with th, and the
yuuji@271 291 rest with td.
yuuji@271 292
yuuji@271 293
yuuji@271 294 
yuuji@271 295 File: yahtmle, Node: CSS Support, Next: Customizations, Prev: Changing and Deleting, Up: Top
yuuji@271 296
yuuji@271 297 CSS(Style Sheets) Support
yuuji@271 298 *************************
yuuji@271 299
yuuji@271 300 * Menu:
yuuji@271 301
yuuji@271 302 * CSS-class completion::
yuuji@271 303 * Reread CSS definition::
yuuji@271 304
yuuji@271 305
yuuji@271 306 
yuuji@271 307 File: yahtmle, Node: CSS-class completion, Next: Reread CSS definition, Prev: CSS Support, Up: CSS Support
yuuji@271 308
yuuji@271 309 CSS class-name completion
yuuji@271 310 =========================
yuuji@271 311 You can input a class name in your CSS definition with completion. If you
yuuji@271 312 have CSS defined as below;
yuuji@271 313
yuuji@271 314 h1.foo, h2.foo { background-color: 0xffffff; }
yuuji@271 315 h1.bar, h2.bar { font-size: 120%; }
yuuji@271 316
yuuji@271 317 when you input h1(or h2) tag with completing-read by [prefix] b or
yuuji@271 318 [prefix] l, yahtml prompts you to input class name with completion from
yuuji@271 319 the words which are effective to h1 or h2. And if you defined global
yuuji@271 320 class like this;
yuuji@271 321
yuuji@271 322 .caution { font-size: 120%; background-color: 0xc00000;}
yuuji@271 323
yuuji@271 324 when you input any tags via completing-read, yahtml prompts you to input
yuuji@271 325 class name. If this is bothering, typing `C-j' instead of `RET' (or
yuuji@271 326 `C-m') cancels the next prompt to class name completion.
yuuji@271 327
yuuji@271 328
yuuji@271 329 
yuuji@271 330 File: yahtmle, Node: Reread CSS definition, Prev: CSS-class completion, Up: CSS Support
yuuji@271 331
yuuji@271 332 Re-reading CSS definition
yuuji@271 333 =========================
yuuji@271 334 If you add some class to your CSS file and you want yahtml to load new
yuuji@271 335 definitions, type `M-x yahtml-mode RET' to make yahtml do.
yuuji@271 336
yuuji@271 337
yuuji@271 338 
yuuji@271 339 File: yahtmle, Node: Customizations, Next: Copying, Prev: CSS Support, Up: Top
yuuji@271 340
yuuji@271 341 Customizations
yuuji@271 342 **************
yuuji@271 343
yuuji@271 344 Variables that modify yahtml's behavior.
yuuji@271 345
yuuji@271 346 * Menu:
yuuji@271 347
yuuji@271 348 * All customizable variables:: List of customizable variables
yuuji@271 349 * Hook variables:: hook variables
yuuji@271 350
yuuji@271 351
yuuji@271 352 
yuuji@271 353 File: yahtmle, Node: All customizable variables, Next: Hook variables, Prev: Customizations, Up: Customizations
yuuji@271 354
yuuji@271 355 List of customizable variables. Defaults in parenthesis
yuuji@271 356 ========================================================
yuuji@271 357
yuuji@271 358 -- Variable: yahtml-prefix
yuuji@271 359 Prefix key for yahtml-mode. (`\C-c')
yuuji@271 360
yuuji@271 361 -- Variable: yahtml-image-viewer
yuuji@271 362 Command to view image files refered by img. (xv)
yuuji@271 363
yuuji@271 364 -- Variable: yahtml-www-browser
yuuji@271 365 Browser to view external pages with `[prefix]g'. (netscape)
yuuji@271 366
yuuji@271 367 -- Variable: yahtml-kanji-code
yuuji@271 368 Default kanji code. 1=sjis, 2=jis, 3=euc, 4=utf-8 (2) If AddType
yuuji@271 369 "text/html; charset=xxx" .html is written in .htaccess, this will
yuuji@271 370 override yahtml-kanji-code.
yuuji@271 371
yuuji@271 372 -- Variable: yahtml-fill-column
yuuji@271 373 Columns to auto-fill (72)
yuuji@271 374
yuuji@271 375 -- Variable: yahtml-fill-prefix
yuuji@271 376 fill-prefix specific to yahtml-mode. (`nil')
yuuji@271 377
yuuji@271 378 -- Variable: yahtml-path-url-alist
yuuji@271 379 Matching list of URL and full path name on OS's file system.
yuuji@271 380
yuuji@271 381 -- Variable: yahtml-directory-index
yuuji@271 382 Default index filed opened when accessing a server without a
yuuji@271 383 filename, usually index.html. (`"index.html"')
yuuji@271 384
yuuji@271 385 -- Variable: yahtml-lint-program
yuuji@271 386 HTML syntax check program. (`"jweblint"')
yuuji@271 387
yuuji@271 388 -- Variable: yahtml-hate-too-deep-indentation
yuuji@271 389 setq to t when indentations for nested enumerate elements are too
yuuji@271 390 deep. (`nil')
yuuji@271 391
yuuji@271 392 -- Variable: yahtml-always-/p
yuuji@271 393 setq to t if you always want `</p>' after `</p>'. `nil'
yuuji@271 394
yuuji@271 395 -- Variable: yahtml-p-prefered-env-regexp
yuuji@271 396 Elements that `<p>' will be automatically inserted.
yuuji@271 397 (`"^\\(body\\|dl\\|blockquote\\)"')
yuuji@271 398
yuuji@271 399 -- Variable: yahtml-template-file
yuuji@271 400 File to automatically insert when editing a new HTML file.
yuuji@271 401 `"~/http/template.html"'
yuuji@271 402
yuuji@271 403 -- Variable: yahtml-prefer-upcases
yuuji@271 404 Use uppercase for tags. `nil'
yuuji@271 405
yuuji@271 406 -- Variable: yahtml-prefer-upcase-attributes
yuuji@271 407 Use uppercase for attributes. `nil'
yuuji@271 408
yuuji@271 409 -- Variable: yahtml-server-type
yuuji@271 410 setq to 'apache if using a Apache server, and will refer ./.htaccess.
yuuji@271 411 `'apache'
yuuji@271 412
yuuji@271 413 -- Variable: yahtml-apache-access-file
yuuji@271 414 When `yahtml-server-type' is `'apache', define name of access
yuuji@271 415 restriction file. `".htaccess"'
yuuji@271 416
yuuji@271 417 -- Variable: yahtml-shell-command-option
yuuji@271 418 Options needed to invoke shell commands.
yuuji@271 419
yuuji@271 420 -- Variable: yahtml-translate-hyphens-when-comment-region
yuuji@271 421 Whether to change hyphens to `&#45;' when commenting out region.
yuuji@271 422 (`t')
yuuji@271 423
yuuji@271 424 -- Variable: yahtml-entity-reference-chars-alist
yuuji@271 425 alist of characters that needs to be written by Entity Reference.
yuuji@271 426 Enter as `'(?char . "EntityReference")'. By default, `<', `>', `&',
yuuji@271 427 `'', is set. Add as needed. Do not include `&' at beginning and `;'
yuuji@271 428 at end of cdr portion of `"EntityReference"'.
yuuji@271 429
yuuji@271 430 -- Variable: yahtml-faithful-to-htmllint
yuuji@271 431 When using htmllint to check syntax, it will complain about excess
yuuji@271 432 spaces. setq to `t' to avoid this.
yuuji@271 433
yuuji@271 434 -- Variable: yahtml-use-css
yuuji@271 435 Use style-sheet support or not (`t')
yuuji@271 436
yuuji@271 437 -- Variable: yahtml-image-inspection-bytes
yuuji@271 438 Number of bytes to inspect the image for geometry information
yuuji@271 439 (`10000')
yuuji@271 440
yuuji@271 441 -- Variable: yahtml:img-default-alt-format
yuuji@271 442 format of img entity's ALT attributes. %x: width, %y: height, %s:
yuuji@271 443 size in bytes, %c: first comment string, %f: filename
yuuji@271 444 (`"%xx%y(%sbytes)"')
yuuji@271 445
yuuji@271 446 -- Variable: yahtml-escape-chars
yuuji@271 447 When, completing href-s, Escape reserved characters to URL-encoding
yuuji@271 448 or not. Nil for never, t for everytime, and 'ask for inquiring at
yuuji@271 449 each reserved chars. (`'ask')
yuuji@271 450
yuuji@271 451 -- Variable: yahtml-use-font-lock
yuuji@271 452 Use font-lock to fontify buffer or not (`(featurep 'font-lock)')
yuuji@271 453
yuuji@271 454 -- Variable: yahtml-use-hilit19
yuuji@271 455 Use hilit19 to highlight buffer or not (`(featurep 'hilit19)')
yuuji@271 456
yuuji@271 457 -- Variable: yahtml-indentation-boundary
yuuji@271 458 Boundary regexp for indentation calculation. (`"^\\s *<h[1-3]>"')
yuuji@271 459
yuuji@271 460
yuuji@271 461 
yuuji@271 462 File: yahtmle, Node: Hook variables, Prev: All customizable variables, Up: Customizations
yuuji@271 463
yuuji@271 464 hook variables
yuuji@271 465 ==============
yuuji@271 466
yuuji@271 467
yuuji@271 468
yuuji@271 469 
yuuji@271 470 File: yahtmle, Node: Copying, Next: Concept Index, Prev: Customizations, Up: Top
yuuji@271 471
yuuji@271 472 Copying
yuuji@271 473 *******
yuuji@271 474
yuuji@271 475 This program is distributed as freesoftware. The author will take no
yuuji@271 476 responsibility to any damages due to the usage of this software
yuuji@271 477 whatsoever. There are no restrictions to its redistribution, just use
yuuji@271 478 common sense. Mail me your thoughts on this program and I will be more
yuuji@271 479 than willing to help.
yuuji@271 480
yuuji@271 481 Complaints, requests, bug reports and comments are welcome. Make contacts
yuuji@271 482 to yuuji@yatex.org@(as of December 2000)
yuuji@271 483
yuuji@271 484 If you like this program and use it on a regular basis, please join the
yuuji@271 485 mailing list "fj Wild Bird Society". Procedures can be found in the "etc"
yuuji@271 486 section of `docs/htmlqa.eng' in this package.
yuuji@271 487
yuuji@271 488
yuuji@271 489 HIROSE, Yuuji
yuuji@271 490
yuuji@271 491
yuuji@271 492
yuuji@271 493 
yuuji@271 494 File: yahtmle, Node: Concept Index, Prev: Copying, Up: Top
yuuji@271 495
yuuji@271 496 Index
yuuji@271 497 *****
yuuji@271 498
yuuji@271 499 * Menu:
yuuji@271 500
yuuji@271 501 * Customize: Customizations. 4.
yuuji@271 502 * Demacs: Intro. 4.
yuuji@271 503 * Key Assign: Customizations. 4.
yuuji@271 504 * LaTeX: Intro. 4.
yuuji@271 505 * Mule: Intro. 4.
yuuji@271 506 * yahtml: Intro. 4.
yuuji@271 507
yuuji@271 508
yuuji@271 509
yuuji@271 510 
yuuji@271 511 Tag table:
yuuji@272 512 Node: Top259
yuuji@272 513 Node: Intro836
yuuji@272 514 Node: Installation1234
yuuji@272 515 Node: Setting up yahtml1515
yuuji@272 516 Node: Setting environments for weblint browsers and image viewers2306
yuuji@272 517 Node: Setting environment variables for WWW pages3002
yuuji@272 518 Node: Command Invocation3973
yuuji@272 519 Node: Completion4401
yuuji@272 520 Node: Jump5917
yuuji@272 521 Node: Changing and Deleting6397
yuuji@272 522 Node: Changing tags in pairs6681
yuuji@272 523 Node: Changing entities7176
yuuji@272 524 Node: URLencoding of strings within region7712
yuuji@272 525 Node: td-enclosure/tr-enclosure8013
yuuji@272 526 Node: CSS Support8979
yuuji@272 527 Node: CSS-class completion9205
yuuji@272 528 Node: Reread CSS definition10058
yuuji@272 529 Node: Customizations10333
yuuji@272 530 Node: All customizable variables10609
yuuji@272 531 Node: Hook variables14377
yuuji@272 532 Node: Copying14503
yuuji@272 533 Node: Concept Index15294
yuuji@271 534 
yuuji@271 535 End tag table