If style is used twice, prompt for the directory.
[muse-el.git] / NEWS
blob2e0050f969ed3a7313cb6bfc4a74d6b97e2f0b12
1 Emacs Muse NEWS --- History of user-visible changes    -*- outline -*-
3 * Changes in Muse 3.03 (not yet released)
5 ** Blosxom publishing (lisp/muse-blosxom.el)
7 *** New option: muse-blosxom-use-tags.
8 This specifies whether or not we are using tags.  Tags allow a page to
9 belong to multiple categories, but they do not rely on the directory
10 structure for categorization.
12 ** Building Muse
14 *** Compile the contents of the contrib directory.
16 ** Core functionality (lisp/muse.el)
18 *** Fix an XEmacs beta byte-compiler issue.
20 *** Make nested list manipulation accessible to both Muse Mode
21 and Muse publishing.
23 *** Fix failure to recognize the .muse file extension.
24 Handle the case where the user customizes the file extension.
26 *** It is now easier to indicate that Muse should not use a file
27 extension.  Just do the following.
29 (setq muse-file-extension nil
30       muse-mode-auto-p t)
32 *** Allow tab characters in explicit links.
34 ** HTML publishing (lisp/muse-html.el)
36 *** Make sure spaces in URLs get escaped properly.
38 ** HTTP daemon (contrib/httpd.el)
40 *** Update this to work with newer versions of Emacs.
42 *** Fix a paragraph detection bug for paragraphs that occur after
43 verses.
45 ** Journal (lisp/muse-journal.el)
47 *** New option: muse-journal-rss-heading-regexp.
48 Determine the regexp to use when searching for an RSS heading.
50 *** Make sure that the date is in a format that RSS readers
51 can handle.
53 ** LaTeX publishing (lisp/muse-latex.el)
55 *** Improve escaping of specials.
57 *** Use \label{} and \ref{} for anchors and anchor references.
59 *** Emphasize table elements.
61 *** Improve table generation.
63 *** Use \url{} to publish bare URLs.
65 *** Handle case where a Muse page begins with a quote character.
67 *** Display footnotes when we have both a URL and description.
68 This makes the URLs show up on printed documents in a sensible
69 fashion.
71 *** Escape the "@" character in the entire document.
73 *** Make images take up 75% of the width of the page.
75 ** Muse Manual (muse.texi)
77 *** Implicit Links
79 **** Mention how to customize the WikiName recognition.
81 *** Extending Muse
83 **** Move "Common Elements" and "Deriving Styles" chapters here.
85 ** Muse Mode (lisp/muse-mode.el)
87 *** `C-c TAB' now inserts an object, prompting the user for which type.
88 `C-c TAB l' inserts a relative link.
89 `C-c TAB t' inserts a Muse tag.
90 `C-c TAB u' inserts a URL.
92 These keybindings may be modified by editing `muse-insert-map'.  Note
93 that the prompt you get when you hit `C-c TAB' will not change.
95 *** New list-oriented keybindings:
96 `M-RET' inserts a list item.
97 `C->' increases list item indentation.
98 `C-<' decreases list item indentation.
100 *** Slightly improvement speed of flyspell integration
102 *** Implement searching through Muse files.
104 **** `C-c C-s' performs a search through Muse files.
106 **** New option: muse-grep-command.
107 Customize this to specify the command used for searching.  In
108 particular, "glimpse" is handy.  Check the documentation for this
109 command for details.
111 *** Changed keybindings:
112 `C-c C-b' is now `muse-find-backlinks'
113 `C-c C-v' is now `muse-browse-result'
115 *** Don't require muse-publish.el, since publishing and viewing Muse
116 files are supposed to be completely separable.
118 *** Speed up searching for next and previous references.
120 *** Make filling definition lists work better.
122 *** Make editing existing links with `C-c C-e' work better.
124 *** Make browsing the resulting page with `C-c C-v' work better.
126 ** Muse Mode highlighting (lisp/muse-colors.el)
128 *** New option: muse-colors-inline-images.
129 This determines whether or not to inline an image.  The default is to
130 enable this behavior.
132 **** `C-c C-i' toggles whether images are inlined.
134 **** New option: muse-colors-inline-image-method.
135 This determines how to find an image that we want to inline.  The
136 default is to look in the current directory.  If set to
137 'muse-colors-use-publishing-directory, it will look in the directory
138 where the current page will be published.
140 *** Make faces conform the namespace better.
141 `muse-link-face' is renamed to `muse-link'.
142 `muse-bad-link-face' is renamed to `muse-bad-link'.
143 `muse-verbatim-face' is renamed to `muse-verbatim'.
145 *** Handle muse-emphasis faces better.
147 ** New modules
149 *** lisp/muse-backlink.el -- Provide backlink support for Muse.
151 *** lisp/muse-groff.el --  This introduces the publishing styles
152 "groff" and "groff-pdf".
154 *** lisp/muse-latex2png.el -- Publish embedded LaTeX content to a PNG file.
155 This introduces the <latex> tag.
157 *** lisp/muse-xml-common.el -- Common functionality used by XML-based
158 publishing styles, such as HTML, XML, and DocBook.
160 *** experimental/muse-mathml.el -- This introduces the "mathml"
161 publishing style and the <math> tag.
163 ** Project settings (lisp/muse-project.el)
165 *** Introduce the `with-muse-project' macro, which makes it easier
166 to switch to a given Muse project and execute some code.
168 *** Fix an error with `custom-quote'.
170 *** Ignore buffers that have no associated filename.
171 This fixes an annoyance where Muse prompts to save BBDB and ERC
172 buffers before publishing.
174 *** If we cannot find a project to publish, indicate this in an
175 error message.  This fixes an infinite loop.
177 *** Update the file-alist whenever a Muse file is saved.
179 ** Publishing (lisp/muse-publish.el)
181 *** Implement escaping of specials throughout the entire document.
182 This makes it much easier to publish documents to multiple kinds of
183 formats, since you no longer have to worry about putting <verbatim>
184 around specials.
186 *** Make escaping of specials context-sensitive.
187 Muse now realizes that URLs, normal document text, <example> regions,
188 and the like have different special characters to escape.
190 *** Distinguish links and footnotes better.
192 *** Simplify markup string for anchors.
194 *** Allow text like "%N%" in markup strings.
195 This makes it much easier to re-use the same text or put strings in
196 a different order.
198 *** Support nested lists.
199 Muse now determines the nested level of a list by its initial
200 whitespace.  Ordered lists, unordered lists, and definition lists can
201 all be nested.  It is even possible to force a line break in a list
202 item by inserting a blank line on the same level between the lines.
203 Blockquotes may also be nested inside of a list.
205 *** Create parent directories when publishing for the first time.
207 *** Allow empty elements in tables.
209 *** Handle case where we are trying to publish a file that has not
210 been saved.
212 *** Handle nested emphasis types better.
213 It should now publish exactly the way it looks in Muse Mode.
215 *** Fix XEmacs issue where text at beginning of buffer is read-only.
217 *** Allow publishing styles to specify a function to use for
218 escaping specials in a particular context.  This is especially handy
219 for HTML URLs, since they have a larger subset of special characters
220 than normal characters.
222 See `muse-xml-decide-specials' in muse-xml-common.el for details.
223 This functionality already exists for escaping specials in strings.
225 *** Fix an infinite loop problem.
227 *** Preserve whitespace around emdash.
228 This allows for more flexibility, since some people seem to prefer to
229 have the emdash directly against the surrounding text, while others
230 like it to be spaced.
232 *** If the #disable-tables publishing directive exists on the current
233 Muse page, do not generate a table.
235 *** Don't give an error when trying to define or derive an existing
236 style.  Just replace it.
238 *** Get rid of a warning that occurs when batch publishing.
240 *** Ignore list items that are part of higher-priority constructs
241 like emphasis.
243 *** New tags, see the Tag Summary section in the manual for details
245 **** <comment> -- Designate entire regions as comments.
247 **** <quote> -- Publish the region as a blockquote.
249 ** Texinfo publishing (lisp/muse-texinfo.el)
251 *** Escape commas in URLs.
253 *** Make it so that links to other info or PDF documents use the proper
254 suffix.
256 ** URL protocols (lisp/muse-protocols.el)
258 *** Add support for DOI's.
259 DOI's (digitial object identifiers) are a standard identifier used in
260 the publishing industry.
262 *** Add support for "dict:" URLs.
263 This is used to look up terms on the Wikipedia website.
265 **** New option: muse-wikipedia-country.
266 This specified the country code to use for Wikipedia.
268 ** Wiki (lisp/muse-wiki.el)
270 *** If the document does not have a valid title string, use the
271 empty string.
273 *** Fix some bugs.
275 *** New option: muse-wiki-wikiword-match-project-files.
276 Whether to extend WikiName functionality to also match
277 existing filenames, regardless of whether they are named in
278 WikiWord format.
280 If non-nil, Muse will color and publish implicit links to any
281 file in your project.  The default is nil.
283 *** Match filenames in the project before the general WikiWord
284 regexp.
286 *** Take the value of `muse-wiki-hide-nop-tag' into account.
288 *** New option: muse-wiki-ignore-implicit-links-to-current-page.
289 Whether to ignore implicit links to the current page.
291 If non-nil, Muse will not recognize implicit links to the current
292 page, both when formatting and publishing.
294 ** XML publishing (lisp/muse-xml.el)
296 *** Update examples/muse.rnc to handle nested list items.
298 *** Fix table generation when some attributes are not given.
300 * Changes in Muse 3.02.6
302 ** Building Muse
304 *** Autoloads for Muse are now generated in the muse-autoloads.el
305 file at build time.
307 ** HTML publishing (lisp/muse-html.el)
309 *** Don't escape "%" and "+" in URLs.
311 ** Muse Mode (lisp/muse-mode.el)
313 *** <lisp> tags are now evaluated at display time.
314 The actual contents of the buffer will not change, just the displayed
315 text.  To toggle this behavior, set `muse-colors-evaluate-lisp-tags'.
317 ** Publishing (lisp/muse-publish.el)
319 *** When errors happen during publishing, a more explanatory message
320 is displayed.
322 *** It is now possible to specify non-breaking-space with "~~"
323 (two tildes).  This helps prevent proper names from being split up in
324 the output.
326 *** Escape specials in all forms of emphasis.
328 *** Escape "[" and "]" in links that are entered using muse-make-link.
330 *** Errors from invalid lisp code in a <lisp> tag will be published
331 as a comment.  If you have `muse-publish-comments-p' set to nil, the
332 effect is to remove the error message.
334 *** Fix several publishing issues involving comments and numbered lists.
336 ** Wiki (lisp/muse-wiki.el)
338 *** Interwiki links in extended links that have special characters are
339 now handled properly.
341 ** XML publishing (lisp/muse-xml.el)
343 *** The XML publishing style is now considered stable.
344 Its schema is available in `examples/muse.rnc'.
346 * Changes in Muse 3.02.5
348 ** LaTeX publishing (lisp/muse-latex.el)
350 *** Use a better algorithm for determining how many times we need to
351 call pdflatex for publishing.  Anything with a Table of Contents needs
352 2 passes.
354 ** Muse Mode (lisp/muse-mode.el)
356 *** The 3 levels of emphasis now have corresponding muse-emphasis-N faces.
357 This permits the user to customize them, which may be useful if a font
358 does not have italic and/or bold versions.
360 *** Visiting pages with anchors works better.
362 *** Fix fill bug with semicolons in the middle of paragraphs.
364 *** Fix a bug with editing the link at point.
366 *** Fix a display bug with text like =<verbatim><example></verbatim>=.
368 ** Project settings (lisp/muse-project.el)
370 *** Fix an edge case that yielded a stringp: nil error.
372 *** Prevent auto-save files from being recognized as Muse files.
374 ** Wiki (lisp/muse-wiki.el)
376 *** By default, WikiWords can have consecutive capital letters.
378 *** Fix an error that occurs when muse-colors is not loaded.
380 *** It is now possible to specify a suffix for WikiWord links.
381 For example: WikiName''''s.  The WikiName part will be displayed and
382 colored as a link, but the "s" will be left alone.
384 * Changes in Muse 3.02.02
386 ** Configuration
388 *** A bug with customizing `muse-project-alist' has been fixed.
390 *** We use a file extension for Muse files by default.
391 To obtain the old behavior, set `muse-file-extension' to nil and
392 `muse-mode-auto-p' to t.
394 To go along with the new behavior, be sure to rename all of your Muse
395 files to have a ".muse" extension.
397 *** New option: `muse-wiki-ignore-bare-project-names'.
398 This causes Muse to ignore bare project names if specified.  The
399 default is to turn bare project names into links.
401 *** New option: `muse-publish-comments-p'.
402 This causes Muse to publish comments as markup.  The default is to
403 remove comments before publishing rather than trying to mark them up.
405 *** New option: `muse-wiki-allow-nonexistent-wikiword'.
406 Enabling this will cause WikiWords with no corresponding file to be
407 colored as bad links.  The default is not to color them and turn them
408 into links.
410 ** Muse Mode (lisp/muse-mode.el)
412 *** An error with intangible links has been fixed.
414 *** Visiting a page with an anchor works better than before.
416 *** Flyspell behaves better with Emacs21 than before.
418 *** Links to nonexistent files will be colored red by default.
419 This happened previously, but the algorithm was buggy and didn't cover
420 implicit links.
422 ** Project handling (lisp/muse-project.el)
424 *** A convenience macro called `with-muse-project' has been added.
425 This allows a code block to be executed after changing the current
426 Muse project.  It is analogous to emacs-wiki's
427 `with-emacs-wiki-project' function.
429 ** Publishing (lisp/muse-publish.el)
431 *** An issue involving anchors at the end of a line has been
432 addressed.
434 *** Non-word characters are now allowed before an anchor.
436 *** Comments may now be published, if desired.
437 This behavior may be controlled with the `muse-publish-comments-p'
438 option.  The default is to remove comments before publishing rather
439 than trying to mark them up.
441 *** Publishing directives may now include a dash character.
443 ** LaTeX publishing (lisp/muse-latex.el)
445 *** A bug with footnotes has been addressed.
446 An attempt has been made to make generated footnote markup look more
447 "natural" to experienced LaTeX users.
449 *** Table headers are underlined and table footers are overlined.
451 *** PDF publishing will cause pdflatex to be called as needed.
452 The previous behavior was to always call pdflatex twice.  Currently,
453 if pdflatex succeeds, it will not be called again.  Otherwise, call it
454 up to three times.
456 *** Escaping of special characters should be drastically improved.
457 An attempt has been made to get escaping done right in most contexts.
458 The only quirk is that you must surround dollar signs with equal signs
459 to ensure escaping.  This makes publishing PDF documents much more
460 useful.
462 ** Texinfo publishing (lisp/muse-texinfo.el.el)
464 *** An attempt was made to hone some of the markup.
466 * Changes in Muse 3.02.01
468 ** Muse Mode (lisp/muse-mode.el)
470 *** Links should no longer prevent moving the point, and help text for
471 links should no longer cause errors to occur.
473 ** Project handling (lisp/muse-project.el)
475 *** `muse-project-alist' -- This variable should now save customizations
476 to the correct form in the .emacs file.  Before, it was saving an
477 intermediate form of the variable.
479 If you have used the customize interface in the previous release of
480 Muse to set `muse-project-alist', please do the following to import
481 your settings.
483  - Open your .emacs file.
484  - Move the point to where `muse-project-alist' is set.
485  - Type `M-: (setq muse-project-alist-using-customize t) RET'.
486  - Type `C-M-x'.
487  - Type `M-x customize-save-variable RET muse-project-alist RET'.
489 *** `muse-project-alist' -- A bug involving the deleting of items
490 using Emacs21 and XEmacs21 has been fixed.
492 ** Publishing (lisp/muse-publish.el)
494 *** If 2 or more blank lines separate list or table items, each item
495 will be published in a separate list or table.
497 *** The #date directive is now populated by default with the last
498 modified time of each file, rather than the current time of day.  To
499 use this value, add '<lisp>(muse-publishing-directive "date")<lisp>'
500 to your header or footer.
502 ** HTML publishing (lisp/muse-html.el)
504 *** `muse-xhtml-style-sheet' -- New option that indicates the style
505 settings to use for XHTML documents.  This may be either a filename or
506 a string of stylesheet settings.
508 * Changes in Muse 3.02
510 ** New modules
512 *** lisp/muse-wiki.el --- Provide automatic linking for WikiWords and
513 InterWiki links.  These words are clickable and publish as links.
514 Project names from `muse-project-alist' are available for InterWiki
515 linking by default.  The list of InterWiki names and handlers may be
516 customized through `muse-wiki-interwiki-alist'.
518 WikiWords that do not correspond with real files will not be displayed
519 as links nor published as links.  It is expected that this behavior
520 will be made optional in future versions of Muse.
522 **** This module includes a few helper functions that may be added to
523 `muse-publish-desc-transforms' in order to modify link descriptions at
524 publish time.
526 **** The concept of "implicit links" and "explicit links" has been
527 introduced.  Explicit links are surrounded by brackets, i.e.
528 [[http://blah.org][this is a explicit link]].  Implicit links are URLs
529 and email addresses that are not surrounded by brackets: they will not
530 be colorized or published if surrounded by double-quotes.
532 ***** `muse-wiki-publish-pretty-title' causes words to be Title-cased,
533 ignoring words like `the' and `at' which should not be changed.
535 ***** `muse-wiki-publish-pretty-interwiki' changes the delimiter of
536 interwiki links according to the text of the
537 `muse-wiki-interwiki-replacement' option.
539 *** lisp/muse-protocols.el --- URL protocols that Muse recognizes.
540 This automatically-included module provides an easily customizable
541 list of URL protocols, how to browse them, and how to resolve them for
542 publishing.  Customize `muse-url-protocols' to add and remove
543 protocols.
545 ** Compatibility fixes
547 *** Muse has been tested with XEmacs 21.4, both Mule and non-Mule versions.
548 There are no known problems remaining.  To make things work by
549 default, the iso-8859-1 charset is used as a default option in some
550 places.
552 ** Configuration
554 *** `muse-file-extension' -- New option that allows the file extension
555 for Muse files to be specified.  For example, setting this to "muse"
556 assumes that you have renamed your Muse files with a ".muse"
557 extension.  Using this (and setting `muse-mode-auto-p' to nil) will
558 prevent miscellaneous non-Muse files from being accidentally opened in
559 Muse Mode.
561 *** `muse-ignored-extensions' -- New option that determines which file
562 extensions to omit from the ending of a Muse page name.
564 *** `muse-ignored-extensions-regexp' -- This is no longer customizable.
565 It will be automatically generated from `muse-file-extension' and
566 `muse-ignored-extensions'.
568 *** `muse-project-alist' -- The customize interface for this option has
569 been greatly improved, and much effort has been spent in order to make
570 this user-friendly.
572 *** The `:force-publish' tag may be specified in `muse-project-alist'.
573 This causes a particular list of files to be re-created every time the
574 publishing process is invoked, even if they haven't been changed
575 according to their timestamps.  One use for this is to keep an index
576 of available pages by adding the following to a file in this list.
578 <lisp>(muse-index-as-string t t t)</lisp>
580 *** `muse-project-ignore-regexp' -- By default, version control directories
581 are now included in this regexp so that they don't appear when you hit
582 C-c C-f to browse files in a project.
584 *** The `muse-project-alist-styles' and `muse-project-alist-dirs' functions
585 may be used in `muse-project-alist' to recursively add styles and
586 directory listings for a given directory.  The following is an
587 example.  We use a backtick instead of a single quote to begin the
588 list.
590 (setq muse-project-alist
591       `(("Blog"
592          (,@(muse-project-alist-dirs "~/proj/wiki/blog")  ;; base dir
593           :default "guestbook")
595          ,@(muse-project-alist-styles "~/proj/wiki/blog"  ;; base dir
596                                       ;; output dir
597                                       "~/personal-site/site/blog"
598                                       ;; style
599                                       "my-blosxom"))))
601 Note that if you use the customize interface for `muse-project-alist',
602 you will still have to manually add information for any new
603 sub-directories.
605 ** Debian packaging
607 *** Debian packages for Muse have entered Debian unstable, thanks
608 to Romain Francoise, my sponsor.
610 It is possible to roll your own Muse packages if you want to do so.
611 Packages may be built by using `make debrelease', once the proper
612 options in Makefile.defs are set.  Revisions may be built using `make
613 debrevision'.
615 The manual and relevant documentation files have been included with
616 the Debian package for Muse.
618 ** Muse Mode (lisp/muse-mode.el)
620 *** Allow use of Muse with outline-minor-mode.
622 *** Filling text does the right thing with list items and footnotes.
623 List items and footnotes will no longer be concatenated when hitting
624 M-q in the midst of consecutive items.
626 *** Links will never be split in the middle when using Fill.
628 *** Some flyspell crash issues were addressed.
629 Using intangible text can cause strange problems with flyspell mode.
630 Hence, by default, the intangible property will be ignored.  A new
631 option called `muse-mode-intangible-links' indicates whether this
632 should be the case.
634 *** Links will no longer be highlighted by flyspell.
635 If you're using XEmacs or Emacs 22, flyspell will ignore links,
636 including link text.  This keeps flyspell from making the links
637 unclickable.  If you're using Emacs 21, flyspell will continue to
638 interfere with links.  If you know how to fix this, please send a
639 patch!
641 *** A few edge cases for emphasis and underlining have been addressed.
643 *** <example>, <verbatim>, and =surrounded text= are now colored using
644 the new face `muse-verbatim-face'.
646 *** All marked up text properties, like emphasis and underlining,
647 will be removed for the text between <example>, <verbatim>, <code>,
648 <literal>, and <lisp> tags.
650 *** Links to temporary files may be visited.
651 A "temporary file" in this case is a buffer that is not associated
652 with any file.  For some dynamic content import scripts with Planner,
653 this is helpful.
655 *** Typing "#title" should never crash Emacs anymore.
657 ** Muse manual (muse.texi)
659 *** Fix problem with producing a PDF version of the manual.
661 *** Document WikiNames.
663 *** Bring up-to-date with latest features.
665 *** Massively update Common Elements section.
667 *** New Directives section.
668 This describes the use of #title and #author, as well as other
669 directives that may be used.
671 *** New Comments section.
672 Describes the use of "; comment text".
674 ** Publishing (lisp/muse-publish.el)
676 *** The order of rules should be much improved.
677 This means that emphasis characters like `*' and `_' will never be
678 interpreted as such if they are within links.
680 *** The user will be notified when `muse-publish-this-file' fails to
681 publish the current file.  This happens when the timestamp of the
682 current file indicates that it is up-to-date.
684 *** Special characters are escaped in link descriptions and links on a
685 more consistent basis.  What defines a "special character" varies
686 according to the publishing style.
688 *** Errors that occur during publish time will cause a warning to be
689 displayed prominently, rather than being ignored.  It should no longer
690 be possible to mess up a Muse source file by tweaking the Muse
691 publishing process.
693 *** Errors in <lisp> tags cause a warning to be displayed and
694 return "<!--INVALID LISP CODE-->".  Muse will try to continue
695 publishing the page.
697 *** An emdash ("--") can now be used after a list, as long as there is
698 a blank line between the end of the list and the emdash.
700 *** The <code> tag has been introduced.
701 It does the same thing that =equal signs= do: escape specials and
702 publish as teletype text.  Use it for short command snippets and the
703 like.  <example> is a better choice for large blocks of code, since it
704 preserves whitespace.
706 *** An edge case involving links at the beginning of a paragraph
707 has been addressed.
709 *** An edge case involving consecutive directives of the same size
710 has been addressed.
712 *** Every publishing style is now capable of specifying strings to use
713 for sections beyond the third level.
715 *** Every publishing style may specify an end-of-section string.
716 This is used, for example, by the experimental XML style and the
717 DocBook style.
719 *** Every publishing style may specify a method of handling "internal
720 link" markup.  An internal link is a link that refers to an anchor on
721 the current page.
723 *** Every publishing style may specify a link suffix to use.
724 This allows the file extensions in links to other Muse files to be
725 different from their actual extension.  Blosxom makes use of this
726 (since its published files are .txt and the dynamically-generated
727 output is .html), and it could come in handy for PHP stuff.
729 If a link suffix is not specified via :link-suffix, the value of
730 :suffix will be used.
732 ** Blosxom publishing (lisp/muse-blosxom.el)
734 *** muse-blosxom-new-entry: A #category directive is added by default.
735 Nothing is done with this yet, but it could be handy for tag-based
736 (multiple category) blogging, once we figure out a good way to do that
737 in both Muse and Pyblosxom.  Ideas are welcome, and patches even more
740 ** DocBook publishing (lisp/muse-docbook.el)
742 *** The markup has been comprehensively improved.
743 Published documents will now pass validation tests and look better in
744 general.
746 *** It is now possible to specify the encoding of DocBook documents.
747 The default encoding is utf-8.
749 *** Footnotes will be embedded into paragraphs, since this is
750 The DocBook Way.
752 *** Tables will be sorted by section.
753 Headers first, then footers, then the rest of the table.
755 *** Anchors are now handled correctly and publish to the best available
756 form.  Links to anchors are published with the <link> tag.
758 ** HTML publishing (lisp/muse-html.el)
760 *** Fix minor issue with anchors.
762 *** Paragraph publishing will no longer insert <div> tags before images.
763 This was causing too much hassle for some programs that were trying to
764 extend Muse, like the Muse port of Planner.
766 *** The `&', `<', and '>' characters will be escaped using their specific
767 HTML escape codes, rather than with "&#NNN;".  This makes the
768 published output display correctly in more web browsers.
770 *** Use HTML 4.0 Transitional by default for `muse-html-header'.
772 *** Include empty alt element in markup string for images that lack a
773 description.
775 *** Tables will be sorted by section.
776 Headers first, then footers, then the rest of the table.
778 *** `muse-xhtml-extension' -- The default extension for XHTML publishing.
779 This is a new option.
781 ** Journal publishing (lisp/muse-journal.el)
783 *** Use "div class=..." rather than "div id=..." for sections.
785 ** LaTeX publishing (lisp/muse-latex.el)
787 *** A newline will be appended to the default footer for the latex and
788 latexpdf publishing styles.  This keeps the PDF-building process from
789 failing due to lack of a newline at end of file.
791 *** Anchors and links to them now work properly.
793 *** When generating PDF files, call pdflatex twice.
794 This should ensure that the table of contents gets generated, if one
795 is due to be published.
797 *** PDF files with spaces may be published.
798 A bug preventing this has been fixed.
800 *** Teletype text is now published using \\texttt{...}.
802 *** An attempt has been made to escape special characters more
803 consistently.
805 ** Texinfo publishing (lisp/muse-texinfo.el)
807 *** Fix a fatal error that occurs when publishing tables.
809 *** Generate the contents in the header by default rather than the footer.
810 This is the way that most Texinfo manuals do it.
812 *** The info-pdf publishing style currently produces the best PDF output
813 on the maintainer's machine, so it is now used to publish the PDF
814 version of the Muse Manual.
816 *** The characters `{' and `}' will be treated as special characters that
817 need to be escaped at publish-time.
819 *** Improve dots and enddots markup strings.
821 *** Surround underlined text with "_" since Texinfo doesn't seem to have
822 any better options for producing underlined text.
824 *** Anchors and links to them now work properly.