Fix build failure for muse-ikiwiki.
[muse-el.git] / NEWS
blob2fbfc848f512fa0c2574b6024e1b3b96d08e9914
1 Emacs Muse NEWS --- History of user-visible changes    -*- outline -*-
3 * Changes in Muse 3.20
5 ** Fix bug with duplicates in completing-read of wiki page names.
7 ** Mark some tags as dangerous for text by untrusted contributors.
9 ** Implement <div> tag.
11 ** When viewing a page, publish it first.
13 ** Include non-working alpha of Ikiwiki publishing.
15 ** Make it easier to browse published PDF files.
17 ** Fix bug with C-c C-v on a file not part of any project.
19 ** Add workaround for Emacs 23 and htmlize issue.
21 ** muse-latex2png: Fix handling of filenames with spaces in them.
23 ** muse-colors: Separate highlighting rules according to major mode.
25 ** muse-latex: Make lecture notes and slides work with images,
26 title page, and table of contents.
28 ** Publishing
30 *** Fix end-of-line conversion bug when using Windows.
32 *** Fix bug where dates in journal entries could be published incorrectly.
34 *** Preserve the value of muse-current-project.
36 *** Conditionally interpret local variables.
38 *** Values set by file-local variables trump project variables.
40 *** muse-latex: Fix publishing of tags inside of <slide> tags.
42 *** Render <example> correctly in slides.
44 *** Fix bug in publishing of table.el style tables.
46 *** Fix bug where the first paragraph would not be published properly
47 if it started with a link.
49 ** Build system
51 *** Makefile.defs.default (INFODIR): Place files in .../share/info.
53 ** Manual
55 *** Miscellaneous updates.
57 * Changes in Muse 3.12
59 ** New interactive function `muse-update-values': Call this after
60 changing muse-project-alist, in order to update various autogenerated
61 values.
63 ** Tag attributes may now span multiple lines.
65 ** Don't keep track of undo data when publishing.
66 This should yield a speed-up.
68 ** Build system
70 *** Add support for the DESTDIR variable, which allows the destination
71 directory to be easily set.
73 ** Muse Mode highlighting (lisp/muse-colors.el)
75 *** Display message when muse-colors-toggle-inline-images is called.
77 ** ConTeXt publishing (lisp/muse-context.el)
79 *** Fix publishing bug in Windows.
81 ** HTML publishing (lisp/muse-html.el)
83 *** Fix bug where nested class tags were not working.
85 *** Fix error that occurred when a class tag had no name element.
86 In this case, we do not publish the tag at all.
88 ** LaTeX publishing (lisp/muse-latex.el)
90 *** Escape specials in image filenames properly
91 Previously, it was not possible to escape "/", "#", or "|" in image
92 filenames.  In order to make this work, be certain that you have the
93 following LaTeX code in your header.
95 \def\museincludegraphics{%
96   \begingroup
97   \catcode`\|=0
98   \catcode`\\=12
99   \catcode`\#=12
100   \includegraphics[width=0.75\textwidth]
103 *** Escape specials in the title string in headers
104 In order to achieve this effect in custom headers, replace
106   \title{<lisp>(muse-publishing-directive "title")</lisp>}
108 with
110   \title{<lisp>(muse-publish-escape-specials-in-string
111     (muse-publishing-directive "title") 'document)</lisp>}
113 in your headers.
115 *** Default to using UTF-8 rather than latin1 in headers.
117 *** Fix publishing bug in Windows.
119 *** Escape backslash as \textbackslash{} in monospace regions.
121 ** Publish embedded LaTeX content to a PNG file (lisp/muse-latex2png.el)
123 *** Detect whether the tag ends at the end of a line.
124 If not, do not use "$$" to publish it.
126 ** Muse Mode (lisp/muse-mode.el)
128 *** New option: `muse-insert-url-initial-input' specifies the initial text
129 to use when reading a URL.
131 *** Fix bug with browsing anchors that come after a link to them.
133 *** Fix bug involving filling and paragraphs next to headings.
135 *** Fill definition lists with two initial spaces in lines after the
136 definition list term.
138 ** Project support (lisp/muse-project.el)
140 *** Fix issue that occurred when saving several files at once, where only
141 one of them would make it into the project file-alist.
143 *** If the PAGE argument to `muse-project-page-file' is nil, then return
144 the first directory of the project.
146 *** Fix bug where directory names without slashes in projects were not
147 being recognized.
149 ** Publishing (lisp/muse-publish.el)
151 *** New tag <br> represents a line break when publishing.
152 This is supported in all publishing styles except for DocBook, which
153 has no notion of line breaks without stylesheet hacks.
155 *** Treat "---" as an mdash.
156 Before, it would publish as an mdash followed by a single dash.
158 *** Escape specials properly in footnotes in several styles.
160 *** Fix bug with publishing plain URLs.
162 *** Fix bad escaping of image links.
164 *** Save match adta in `muse-publish-classify-url'.
166 ** Wiki-like behavior (lisp/muse-wiki.el)
168 *** Display <nop> tags correctly.
170 *** Publish <nop> tags correctly.
172 * Changes in Muse 3.11
174 ** Update my example settings in examples/mwolson.
176 ** Fix several bugs with setting muse-file-extension to something else.
177 If you have both muse-file-extension set to some string, and
178 muse-mode-auto-p set to non-nil, please set muse-mode-auto-p to nil
179 from now on.  This was a workaround that some people used to deal with
180 a bug that has now been fixed.
182 ** Support for serving published Muse files with Blosxom.
183 See the end of the Blosxom Requirements section of the Muse manual for
184 details.
186 ** The metadate plugin for PyBlosxom is now included with Muse
187 in contrib/pyblosxom/metadate.py.
189 ** Compatibility fixes for Emacs21 and XEmacs
191 *** Use copy-tree instead of copy-alist.
193 *** Correctly require derived.el.
195 *** Deal with the lack of a `delete-and-extract-region' function in XEmacs
196 by making `muse-delete-and-extract-region'.
198 *** Fix XEmacs and Texinfo publishing bug.
200 *** Deal with lack of autoloads for the `man' function in some Emacs variants.
202 *** Fix XEmacs compilation error in muse-import-xml.el.
204 ** Muse Mode highlighting (lisp/muse-colors.el)
206 *** Fix display bug where emphasis becomes unhighlighted when moving
207 around the buffer.
209 ** ConTeXt publishing (lisp/muse-context.el)
211 *** Add support for #module directive.
212 Consult the ConTeXt section of the Muse manual for details.
214 ** DocBook publishing (lisp/muse-docbook.el)
216 *** Fix bug with paragraphs after <verse> tags.
218 ** HTML publishing (lisp/muse-html.el)
220 *** Fix bug with links not being interpreted in titles.
221 This fix also takes care of some additional escaping issues that were
222 addressed in the previous release by a different means.
224 ** Journal (lisp/muse-journal.el)
226 *** Fix bug with title anchors and CJK.
228 *** Fix bug with summarized entries.
230 ** LaTeX publishing (lisp/muse-latex.el)
232 *** Remove footnote references from headings.
233 The reason for this is that LaTeX will throw errors during the publishing
234 process if they exist.
236 ** Publishing (lisp/muse-publish.el)
238 *** Fix serious bug in definition list publishing.
239 We were skipping past the initial indented line, and that was causing
240 an erroneous blockquote to be inserted.
242 *** Revert fix for escaping bug involving headings and the <contents> tag,
243 because it was buggy.  This is instead handled by muse-html.el now.
245 ** Texinfo publishing (lisp/muse-texinfo.el)
247 *** Make url, link, and link-and-anchor output look better in texi2html
248 output, for people who want to run that command on texi output
249 produced by Muse.
251 ** XML publishing (lisp/muse-xml.el)
253 *** Add support for <cite> tag.
255 *** Bump the version of etc/muse.rnc to 1.1 to reflect support for <cite>.
257 ** Muse Manual (texi/muse.texi)
259 *** Document support for citations in new Citations section.
261 *** Document how to use the Pyblosxom metadate plugin in the
262 Blosxom Requirements section.
264 * Changes in Muse 3.10
266 ** Relicense to GPLv3.
268 ** Muse's source code development is now being managed with git.
269 Instructions for participating in Muse development using git are
270 available in the "Development" section of the Muse manual.
272 This yields not only speed improvements, but also space efficiency
273 improvements.  One person has found that Arch took 300MB to store one
274 of Muse's branches, but git takes only 4MB.  The information to store
275 the entire Muse development history only takes up 8.6MB.
277 If you are a Muse developer, please consult
278 http://emacswiki.org/cgi-bin/wiki/MuseDevelopment for instructions on
279 using git, and how to gain access to the shared Muse repository.
281 ** Remove unused markers when we are done with them.
282 This can speed up the publishing process.
284 ** Build system
286 *** Rename Makefile.defs to Makefile.defs.default.
287 Now, there is a Makefile.defs.default file included with Muse, rather
288 than Makefile.defs.  If you want to make changes to this file, first
289 copy it to Makefile.defs, and then make your changes there.  If you do
290 not need to make any changes, there is no need to copy the file.
292 *** Indicate dependencies between Emacs Lisp files, so that Muse can be
293 recompiled without running "make clean" after an update.
295 *** Don't activate VC when publishing files.
296 This avoids some annoying messages when building QuickStart in the
297 examples directory.
299 *** Make installing info files easier for XEmacs users.
300 There is now a commented-out install-info definition in
301 Makefile.defs.default, along with commented instructions.
303 ** Quickstart guide (examples/QuickStart.muse)
305 *** Fix some typos.
307 ** Core functionality (lisp/muse.el)
309 *** Work around a bad bug in color-theme.el involving its
310 overwriting of the `replace-in-string' function.
312 *** Fix a bug where Muse would lock up if muse-project-alist is nil.
314 *** New option: muse-completing-read-function.
315 Function to call when prompting user to choose between a list of options.
316 This should take the same arguments as `completing-read'.
318 One possible value for this is 'ido-completing-read.  The default
319 value is 'completing-read.
321 *** Make inserting file contents and writing files to be faster.
322 This involves defining the functions `muse-insert-file-contents' and
323 `muse-write-file'.  Consult their documentation for details.
325 ** Muse Mode highlighting (lisp/muse-colors.el)
327 *** Comments are now colored.
329 *** Fix bug with using <lisp> tags in #title directives.
330 Now any <lisp> tags in #title directives are guaranteed to be
331 evaluated after any other <lisp> tags that are nearby.
333 ** ConTeXt publishing (lisp/muse-context.el)
335 *** New file courtesy of Jean Magnan de Bornier that publishes files in
336 the ConTeXt format.  See the ConTeXt section of the Muse manual for
337 details on its use.
339 ** Journal (lisp/muse-journal.el)
341 *** Fix bug causing RDF output to have invalid syntax.
343 *** Make RSS output look nicer by adding some newlines.
345 *** Allow <lisp> and <markup> tags to be used in entry templates.
347 *** Fix escaping bugs in entry template text, quote-of-the-day, and title.
349 *** Mark up the <qotd> tag as if it <quote> were used.
351 *** New style journal-rss-entry indicates how we are to mark up
352 individual RSS and RDF entries.
354 *** Set `muse-journal-rdf-summarize-entries' to nil by default.
356 ** HTML publishing (lisp/muse-html.el)
358 *** Add xhtml1.0 style, which is an alias for the xhtml style.
360 *** Add xhtml1.1 style for those who want XHTML 1.1 compliant output.
362 *** When publishing <contents>, only strip links from titles, rather
363 than every tag.
365 ** Muse Mode (lisp/muse-mode.el)
367 *** Add new minor mode called muse-list-edit-minor-mode.
368 See the "Muse List Edit Minor Mode" section of the manual for details.
370 *** Don't try to indent line before inserting a comment.
372 ** Publish embedded LaTeX content to a PNG file (lisp/muse-latex2png.el)
374 *** Support ConTeXt.
376 ** Project settings (lisp/muse-project.el)
378 *** Handle nested projects correctly.
379 Now it is possible to have the directories of a project be the
380 subdirectories of another project.  Previously, it depended on the
381 order that the projects were defined.
383 *** Set project-specific variables at publish time as well as display time.
384 Previously, the variable settings specified by the :set attribute in
385 muse-project-alist projects were being ignored at publish time, but
386 applied in Muse mode.  Now they are applied at both times.
388 *** Fix bug when publishing a file that has multiple styles.
390 *** Fix bug when trying to publish a file in a project with multiple
391 directories.
393 *** Fix bug where links between files did not work if muse-file-extension
394 is nil.
396 *** Ignore .git metadata directories when looking for project files.
398 ** Publishing (lisp/muse-publish.el)
400 *** Add <cite> tag.  See "Tag Summary" in the manual for details on its use.
402 *** Fix bug where Muse locks up when trying to publish a malformed table.
404 *** Fix bug where tags other than <markup> and <lisp> were being acted on
405 in headers and footers.
407 *** Fix bug involving use of <lisp> inside of an <include> file.
409 *** Fix bug with nested list items that have an extra blank in front.
410 This was causing Muse to lock up when publishing some files.
412 *** Fix bug with definition list publishing when there are empty terms.
414 *** Fix bug where output from <verse> did not match output from verse
415 syntax.
417 *** Fix bug where directives were leaking out of <include> regions.
419 *** Fix escaping bug involving headings and the <contents> tag.
421 *** [Developers] Automatically widen before evaluating <lisp> contents.
423 ** Wiki (lisp/muse-wiki.el)
425 *** Fix a bug with three-part links that have descriptions.
427 *** (muse-wiki-resolve-project-page): If the project argument is nil,
428 default to the current project instead of the first project entry in
429 muse-project-alist.
431 ** Common functionality used by XML-based styles (lisp/muse-xml-common.el)
433 *** Don't escape parentheses in URLs.
435 * Changes in Muse 3.03
437 ** An emacs-wiki migration guide is available in
438 etc/emacs-wiki-migration.txt.
440 ** Ideas for the future and planned time of implementation can be
441 found in etc/IDEAS.muse.
443 ** Core functionality (lisp/muse.el)
445 *** Fix an XEmacs beta byte-compiler issue.
447 *** Fix failure to recognize the .muse file extension.
448 Handle the case where the user customizes the file extension.
450 *** It is now easier to indicate that Muse should not use a file
451 extension.  Just do the following.
453 (setq muse-file-extension nil
454       muse-mode-auto-p t)
456 If you visit a Muse file in your .emacs, however, and do not want a
457 file extension, then you must still do the following beforehand.
459 (add-hook 'find-file-hooks 'muse-mode-maybe)
461 *** Allow tab characters in explicit links.
463 *** Escape brackets in links, and then un-escape them when displaying
464 the link in a buffer of publishing it.  This allows brackets to be
465 safely used in link descriptions and links, as long as you use `C-c
466 TAB l', `C-c TAB u', `C-c C-e', or automatic Planner annotations.
468 *** Ensure that no recursive load situation can take place.
470 ** Blosxom publishing (lisp/muse-blosxom.el)
472 *** New option: muse-blosxom-use-tags.
473 This specifies whether or not we are using tags.  Tags allow a page to
474 belong to multiple categories, but they do not rely on the directory
475 structure for categorization.
477 *** Use `find-file' as the browsing function.
479 *** New example script: contrib/pyblosxom/make-blog.
480 This shows how to invoke contrib/pyblosxom/getstamps.py.
482 ** Book publishing (lisp/muse-book.el)
484 *** It is now possible to publish a book using a muse-project-alist entry.
485 See the "Book" section of the manual for details and an example.
487 ** DocBook publishing (lisp/muse-docbook.el)
489 *** A bug with multiple-stanza verses has been fixed.
491 ** HTML publishing (lisp/muse-html.el)
493 *** Make sure spaces in URLs get escaped properly.
495 *** Make the Table of Contents CSS easier to customize.
496 For an example, see examples/mwolson/stylesheets/screen.css.
498 *** Make Table of Contents publishing work with Planner.
500 *** Fix a paragraph detection bug for paragraphs that occur after
501 verses.
503 *** New tag: <src>
504 This tag is used to colorize (using HTML) source code of any language
505 for which Emacs has a mode available.  The "lang" attribute determines
506 the mode to call on the region.  Muse will look for the LANG-mode
507 function, call it, and then call htmlize.  You will need htmlize 1.34
508 or later for this to work.
510 If a non-HTML publishing style is used, this will be published the
511 same as an <example> region.
513 ** Importing LaTeX documents (lisp/muse-import-latex.el)
515 *** Rename from muse-convert.el, since Muse can now import
516 other formats as well.
518 ** Journal (lisp/muse-journal.el)
520 *** New option: muse-journal-rss-heading-regexp.
521 Determine the regexp to use when searching for an RSS heading.
523 *** Make sure that the date is in a format that RSS readers
524 can handle.
526 ** LaTeX publishing (lisp/muse-latex.el)
528 *** New publishing styles: slides and slides-pdf.
529 This allows you to use Beamer to publish slides.
531 *** New publishing styles: lecture-notes and lecture-notes-pdf.
532 These are similar to the slides styles, but are suitable for
533 publishing lecture notes.
535 *** New option: muse-latex-pdf-program.
536 The program to call in order to generate PDF content from LaTeX
537 content.
539 *** New option: muse-latex-pdf-cruft.
540 The extensions of files to remove after generating PDF output
541 successfully.
543 *** Improve escaping of specials.
545 *** Use \label{} and \ref{} for anchors and anchor references.
547 *** Emphasize table elements.
549 *** Improve table generation.
551 *** Use \url{} to publish bare URLs.
553 *** Handle case where a Muse page begins with a quote character.
555 *** Handle case where the path to the Muse source contains a tilde
556 character in one of the parent directories.  It is still possible to
557 run into this problem if you publish outside of a directory that has a
558 tilde, but with a source file that does have one -- this was deemed to
559 be a very unlikely case.
561 *** Display footnotes when we have both a URL and description.
562 This makes the URLs show up on printed documents in a sensible
563 fashion.
565 *** Escape the "@" character in the entire document.
567 *** Make images take up 75% of the width of the page.
569 *** New option: muse-latex-permit-contents-tag.
570 This specifies whether we should take action on the <contents> tag.
572 *** Allow for definitions to be separated from their terms,
573 much like the way HTML does it by default, if the user puts a blank
574 line or a line break between the term and the definition.
576 If the term and definition are on the same line, they will be that way
577 in the output as well.
579 *** Publish comments using the "%" character, rather than a custom
580 Latex command.
582 ** Publish embedded LaTeX content to a PNG file (lisp/muse-latex2png.el)
584 *** The <latex> tag has been modified to work with styles
585 other than just HTML.  It will even leave the region alone if you are
586 publishing a Latex-based publishing style.
588 *** New tag: <math>
589 The <math> tag acts similarly to the <latex> tag, except that it
590 surrounds the region with "$" characters first, and makes the
591 resulting image inline.
593 If the first line of the <math> tag begins with 6 spaces, then
594 surround the region with "$$" (or an equivalent markup) instead.  This
595 has the effect of "centering" the output on its own line.
597 ** Muse Manual (muse.texi)
599 *** Re-license under the GFDL instead of the GPL.
600 The rationale for this is that Muse may one day be included with
601 Emacs, so it should use the same manual license that Emacs itself
602 uses.  At this point, the matter is not open to debate, unless the FSF
603 brings it up.
605 *** Use better style for subsections.
607 *** Make sure the PDF file for the manual is properly generated.
609 *** Implicit Links
611 **** Mention how to customize the WikiName recognition.
613 *** Extending Muse
615 **** Move "Common Elements" and "Deriving Styles" chapters here.
617 *** Tag Summary
619 **** Mention new tags and updated syntax for some tags.
621 ** Muse Mode (lisp/muse-mode.el)
623 *** `C-c TAB' now inserts an object, prompting the user for which type.
624 `C-c TAB l' inserts a relative link.
625 `C-c TAB t' inserts a Muse tag.
626 `C-c TAB u' inserts a URL.
628 These keybindings may be modified by editing `muse-insert-map'.  Note
629 that the prompt you get when you hit `C-c TAB' will not change.
631 *** New list-oriented keybindings:
632 `M-RET' inserts a list item.
633 `C->' increases list item indentation.
634 `C-<' decreases list item indentation.
636 *** Slightly improved speed of flyspell integration
638 *** Implement searching through Muse files.
640 **** `C-c C-s' performs a search through Muse files.
642 **** New option: muse-grep-command.
643 Customize this to specify the command used for searching.  In
644 particular, "glimpse" is handy.  Check the documentation for this
645 command for details.
647 *** Changed keybindings:
648 `C-c C-b' is now `muse-find-backlinks'
649 `C-c C-v' is now `muse-browse-result'
651 *** The `C-c C-M-t' keybinding can be used in place of `C-c C-S-t',
652 since the latter is not available on some terminals.
654 *** Remove the C-c C-c keybinding, since it conflicts with other
655 modes like Planner.
657 *** Don't require muse-publish.el, since publishing and viewing Muse
658 files are supposed to be completely separable.
660 *** Speed up searching for next and previous references.
662 *** Make filling definition lists work better.
664 *** Make editing existing links with `C-c C-e' work better.
666 *** Make browsing the resulting page with `C-c C-v' work better.
668 *** Don't throw an error if doing flyspell or following link at
669 beginning of buffer.
671 *** When publishing a file with `C-c C-t', consult muse-project-alist
672 and use its publishing styles to intelligently prompt the user as to
673 the publishing style and output directory.
675 The old behavior of allowing the file to be published anywhere and
676 with any style has been moved to `C-c C-T'.
678 *** Clicking `mouse-2' now does the right thing when
679 mouse-yank-at-point is non-nil.
681 ** Muse Mode highlighting (lisp/muse-colors.el)
683 *** New option: muse-colors-inline-images.
684 This determines whether or not to inline an image when viewing Muse
685 source.  The default is to enable this behavior.  This feature is
686 currently considered to be in a beta state, because finding the real
687 paths of images consistently has not been worked out.
689 **** New option: muse-colors-inline-image-method.
690 This determines how to find an image that we want to inline.  The
691 default is to look in the current directory.  If set to
692 'muse-colors-use-publishing-directory, it will look in the directory
693 where the current page will be published.
695 **** New function: muse-colors-toggle-inline-images.
696 This toggles whether images are inlined.
698 *** Make links blue by default, like most other Emacs modes do.
700 *** Don't cause a long delay when highlighting remote (Tramp,
701 ange-ftp) links.
703 *** Make faces conform the namespace better.
704 `muse-link-face' is renamed to `muse-link'.
705 `muse-bad-link-face' is renamed to `muse-bad-link'.
706 `muse-verbatim-face' is renamed to `muse-verbatim'.
708 *** Handle muse-emphasis faces better.
710 *** Source-level change: The regexps in `muse-colors-markup' are now
711 permitted to have non-shy groupings.
713 ** New modules
715 *** lisp/muse-backlink.el -- Provide backlink support for Muse.
717 *** lisp/muse-groff.el --  This introduces the publishing styles
718 "groff" and "groff-pdf".
720 *** lisp/muse-import-docbook.el -- Convert Docbook XML into Muse format.
722 *** lisp/muse-import-xml.el -- Helper file for muse-import-docbook.el.
724 *** lisp/muse-latex2png.el -- Publish embedded LaTeX content to a PNG file.
725 This introduces the <latex> tag.
727 *** lisp/muse-xml-common.el -- Common functionality used by XML-based
728 publishing styles, such as HTML, XML, and DocBook.
730 *** experimental/muse-mathml.el -- This introduces the "mathml"
731 publishing style and the <mathml> tag.
733 *** experimental/muse-protocol-iw.el: Implements a simpler URL-like
734 interwiki protocol that handles subdirectories.
736 *** experimental/muse-split.el -- Splits published Muse files into several
737 smaller files.
739 ** Project settings (lisp/muse-project.el)
741 *** Introduce the `with-muse-project' macro, which makes it easier
742 to switch to a given Muse project and execute some code.
744 *** Fix an error with `custom-quote'.
746 *** Ignore buffers that have no associated filename.
747 This fixes an annoyance where Muse prompts to save BBDB and ERC
748 buffers before publishing.
750 *** If we cannot find a project to publish, indicate this in an
751 error message.  This fixes an infinite loop.
753 *** Update the file-alist whenever a Muse file is saved.
755 *** Prevent infinite recursion when updating the file alist.
757 *** In addition to Arch and CVS metadata directories, also ignore
758 these for Darcs, SVN, Mercurial, and Bazaar.  Also, don't erroneously
759 ignore files with "#" in them.
761 *** Make links to subdirectories work.
762 The idea is to include as much of the path that is needed in order to
763 disambiguate the link.  For example: "web/TestPage".
765 *** New variable: muse-current-output-style.
766 This holds the output style that is currently being used to publish a
767 file.
769 *** Permit non-Muse files in projects to be linked to.
771 *** Handle relative links to other Muse pages.
772 Relative links are prefixed with "./" or "../".
774 *** New option: muse-project-publish-private-files
775 If this is non-nil (the default), files will be published even if they
776 have "o-r" permissions set (that is, if no one except the owner and
777 possibly group are allowed to read them).  To get back the old
778 behavior, set this to nil.
780 *** Publishing functions can now be customized on per-project basis
781 You can now use :publish-project and :publish to specify what function
782 to call for publishing entire projects or just a single file.
783 :publish-project is meant to be specified in the first part of a
784 project entry, along with the directories.  :publish is meant to be
785 used in a (optionally derived) publishing style: after specifying such
786 a style, use its name in the latter part of a project entry.
788 ** Publishing (lisp/muse-publish.el)
790 *** Implement escaping of specials throughout the entire document.
791 This makes it much easier to publish documents to multiple kinds of
792 formats, since you no longer have to worry about putting <verbatim>
793 around specials.
795 *** Make escaping of specials context-sensitive.
796 Muse now realizes that URLs, normal document text, <example> regions,
797 and the like have different special characters to escape.
799 *** Support nested lists.
800 Muse now determines the nested level of a list by its initial
801 whitespace.  Ordered lists, unordered lists, and definition lists can
802 all be nested.  It is even possible to force a line break in a list
803 item by inserting a blank line on the same level between the lines.
804 Blockquotes may also be nested inside of a list.
806 *** It is now possible to force images to not be inlined.
807 To accomplish this, place the text "URL:" immediately in front of the
808 link text.
810 Example: [[URL:http://example.org/image.png]]
812 *** New interactive function: muse-publish-region.
813 This command publishes the current region, prompting for the title of
814 the page (if any) and the style to use.
816 This is handy for firing off quick blog entries and pasting the result
817 into a web browser -- for this use case, it is recommended to use the
818 blosxom-html or blosxom-xhtml styles, as they omit the large header
819 and footer.
821 *** Additional arguments for <literal> tag.
822 The optional "style" and "exact" attributes may now be specified,
823 which cause text to only be included if the current publishing style
824 matches some criteria -- the text will be removed otherwise.
826 Omitting these attributes causes <literal> to behave the same as
827 usual.
829 *** Table improvements
831 **** Support orgtbl-mode style tables.
832 Here is a quick example of what they look like.  For additional
833 information, consult the Org Mode manual.
835    | Name | Phone | Age |
836    |------+-------+-----|
837    | Pete |  1234 |  25 |
838    | Sara |  4321 |  22 |
840 If you are used to the way that Org Mode publishes these tables, then
841 customize `muse-html-table-attributes' to:
843   border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides"
845 in order to get a similar kind of output.
847 **** Support table.el-style tables.
848 If you have table.el somewhere in your load-path, Muse will publish
849 tables that are in the format used by table.el.
851 Currently, table.el tables can only be published for publishing styles
852 based on HTML, LaTeX, or DocBook.
854 **** Allow empty elements in tables.
856 **** Allow initial and trailing whitespace in tables, but strip it
857 out of the published result.
859 **** If the #disable-tables publishing directive exists on the current
860 Muse page, do not generate a table.
862 *** Require at least once space after "::" in definition lists, so
863 we avoid an ambiguity with interwiki link syntax.
865 *** Handle nested emphasis types better.
866 It should now publish exactly the way it looks in Muse Mode.
868 *** Preserve whitespace around emdash.
869 This allows for more flexibility, since some people seem to prefer to
870 have the emdash directly against the surrounding text, while others
871 like it to be spaced.
873 *** Fix paragraph detection when block-level markup comes immediately
874 after a paragraph.  Examples of block-level markup are: <example>,
875 verses, lists.
877 *** Allow the <lisp> tag to take the "markup" attribute.
878 see the Tag Summary section in the manual for details.
880 *** Publish image links with descriptions as captioned images.
881 This has been implemented for all Muse publishing styles.
883 The major change is that image links with descriptions will be
884 centered and the description will be displayed just below the image as
885 a "caption".  Thus, it is meant to only be used as its own paragraph,
886 not surrounded by other text.  Images without descriptions may still
887 have surrounding text.
889 *** Make comments higher priority than tags when publishing,
890 so that Muse comments within tags get stripped out.
892 *** Handle properly comments that have no text.
894 *** Distinguish links and footnotes better.
896 *** Do the right thing when a footnote reference exists but has no
897 corresponding footnote.
899 *** Simplify markup string for anchors.
901 *** Allow text like "%N%" in markup strings.
902 This makes it much easier to re-use the same text or put strings in
903 a different order.
905 *** Create parent directories when publishing for the first time.
907 *** Handle case where we are trying to publish a file that has not
908 been saved.
910 *** Fix XEmacs issue where text at beginning of buffer is read-only.
912 *** Allow publishing styles to specify a function to use for
913 escaping specials in a particular context.  This is especially handy
914 for HTML URLs, since they have a larger subset of special characters
915 than normal characters.
917 See `muse-xml-decide-specials' in muse-xml-common.el for details.
918 This functionality already exists for escaping specials in strings.
920 *** Don't give an error when trying to define or derive an existing
921 style.  Just replace it.
923 *** Get rid of a warning that occurs when batch publishing.
925 *** Ignore list items that are part of higher-priority constructs
926 like emphasis.
928 *** Don't markup emdash in a link, since otherwise it will be
929 incorrectly escaped.
931 *** Improve the published descriptions for implicit links and explicit
932 links with no provided description.
934 *** For headers and footers, use a better algorithm to detect whether
935 we have been given a filename or the real contents.
937 *** New option: muse-publish-date-format.
938 Format string of the date used when publishing files.
940 *** New option: muse-publish-markup-header-footer-tags.
941 This specifies which tags may be used when publishing headers and
942 footers.
944 *** New option: muse-publish-contents-depth.
945 This specifies the maximum depth of headings to include with
946 <contents> tags.
948 *** Allow `muse-publish-markup-buffer' to work even if the buffer
949 is not associated with a file.
951 *** Fix a compilation bug with XEmacs beta.
953 *** Source-level change: Use 'image instead of 'image-link to indicate
954 images without descriptions.  Use 'image-link instead of
955 'url-with-image to indicate URLs that have an image as their
956 description.
958 *** Self-nested tags are now supported.
959 Tags with the same name can now be nested inside one another.  This
960 only applies to the new <quote> tag and the <class> tag currently, but
961 it may be useful for custom tags as well.
963 To activate this, set the 4th element in a `muse-publish-markup-tag'
964 to non-nil.  Note that this involved a change to the structure of
965 `muse-publish-markup-tag', so be sure to change any custom tags
966 appropriately.
968 *** Fix bug with WikiName link descriptions and PDF output.
970 *** New convenience function: muse-style-derived-p
971 The new muse-style-derived-p function allows you to make custom tags
972 or inline <lisp> code that acts differently depending on whether the
973 current style is derived from (or equal to) another style.
975 For an example of its use, see `muse-publish-latex-tag' in
976 lisp/muse-latex2png.el.
978 *** New tags, see the Tag Summary section in the manual for details
980 **** <comment> -- Designate entire regions as comments.
982 **** <include> -- Insert the given file at publish time.
984 **** <markup> -- Mark up the text between the initial and ending tags.
986 **** <perl> -- Evaluate perl code.
988 **** <python> -- Evaluate python code.
990 **** <quote> -- Publish the region as a blockquote.
992 **** <ruby> -- Evaluate ruby code.
994 ** Texinfo publishing (lisp/muse-texinfo.el)
996 *** Escape commas in URLs.
998 *** Make it so that links to other info or PDF documents use the proper
999 suffix.
1001 *** Publish table headings properly.
1003 *** Handle case where the path to the Muse source contains a tilde
1004 character in one of the parent directories.  It is still possible to
1005 run into this problem if you publish outside of a directory that has a
1006 tilde, but with a source file that does have one -- this was deemed to
1007 be a very unlikely case.
1009 ** URL protocols (lisp/muse-protocols.el)
1011 *** Add support for DOI's.
1012 DOI's (digitial object identifiers) are a standard identifier used in
1013 the publishing industry.
1015 *** Add support for "dict:" URLs.
1016 This is used to look up terms on the Wikipedia website.
1018 **** New option: muse-wikipedia-country.
1019 This specified the country code to use for Wikipedia.
1021 *** Add support for "woman:" URLs.
1022 "woman" links are opened with Emacs' internal manpage viewer.
1024 ** Wiki (lisp/muse-wiki.el)
1026 *** Three-part links (example: Project::File#anchor) now work.
1028 *** New option: muse-wiki-wikiword-match-project-files.
1029 Whether to extend WikiName functionality to also match
1030 existing filenames, regardless of whether they are named in
1031 WikiWord format.
1033 If non-nil, Muse will color and publish implicit links to any
1034 file in your project.  The default is nil.
1036 *** New option: muse-wiki-ignore-implicit-links-to-current-page.
1037 Whether to ignore implicit links to the current page.
1039 If non-nil, Muse will not recognize implicit links to the current
1040 page, both when formatting and publishing.
1042 *** For interwiki links, prefer files that have the same file extension
1043 as the current file.
1045 *** Check the entire explicit link for a project name or complete
1046 interwiki link, not just part of it.  This allows page names with
1047 invalid WikiName characters to be referred to by using an explicit
1048 link.
1050 *** If the document does not have a valid title string, use the
1051 empty string.
1053 *** Take the value of `muse-wiki-hide-nop-tag' into account.
1055 *** Match filenames in the project before the general WikiWord
1056 regexp.
1058 *** Fix some bugs.
1060 ** XML publishing (lisp/muse-xml.el)
1062 *** The Muse XML schema has been moved from examples/muse.rnc
1063 to etc/muse.rnc.
1065 *** Update muse.rnc to handle nested list items.
1067 *** Fix table generation when some attributes are not given.
1069 * Changes in Muse 3.02.8
1071 ** Building Muse
1073 *** Compile the contents of the contrib directory.
1075 *** The debian/ directory has been moved into its own branch.
1076 It is now available at mwolson@gnu.org--2006/muse--debian--0.
1078 *** Further parametrize the build system, so that it can be easily
1079 used by other Emacs Lisp projects.
1081 *** Include autoloads file (lisp/muse-autoloads.el) with releases.
1083 ** CGI library (contrib/cgi.el)
1085 *** Make this not depend on cl.el at runtime.
1087 *** Re-add the example calendar application.
1089 ** HTTP daemon (contrib/httpd.el)
1091 *** Update this to work with newer versions of Emacs.
1093 * Changes in Muse 3.02.7
1095 ** Muse Mode highlighting (lisp/muse-colors.el)
1097 *** Fix bug that caused Muse not to work with recent builds of Emacs 22.
1099 * Changes in Muse 3.02.6
1101 ** Building Muse
1103 *** Autoloads for Muse are now generated in the muse-autoloads.el
1104 file at build time.
1106 ** HTML publishing (lisp/muse-html.el)
1108 *** Don't escape "%" and "+" in URLs.
1110 ** Muse Mode (lisp/muse-mode.el)
1112 *** <lisp> tags are now evaluated at display time.
1113 The actual contents of the buffer will not change, just the displayed
1114 text.  To toggle this behavior, set `muse-colors-evaluate-lisp-tags'.
1116 ** Publishing (lisp/muse-publish.el)
1118 *** When errors happen during publishing, a more explanatory message
1119 is displayed.
1121 *** It is now possible to specify non-breaking-space with "~~"
1122 (two tildes).  This helps prevent proper names from being split up in
1123 the output.
1125 *** Escape specials in all forms of emphasis.
1127 *** Escape "[" and "]" in links that are entered using muse-make-link.
1129 *** Errors from invalid lisp code in a <lisp> tag will be published
1130 as a comment.  If you have `muse-publish-comments-p' set to nil, the
1131 effect is to remove the error message.
1133 *** Fix several publishing issues involving comments and numbered lists.
1135 ** Wiki (lisp/muse-wiki.el)
1137 *** Interwiki links in extended links that have special characters are
1138 now handled properly.
1140 ** XML publishing (lisp/muse-xml.el)
1142 *** The XML publishing style is now considered stable.
1143 Its schema is available in `examples/muse.rnc'.
1145 * Changes in Muse 3.02.5
1147 ** LaTeX publishing (lisp/muse-latex.el)
1149 *** Use a better algorithm for determining how many times we need to
1150 call pdflatex for publishing.  Anything with a Table of Contents needs
1151 2 passes.
1153 ** Muse Mode (lisp/muse-mode.el)
1155 *** The 3 levels of emphasis now have corresponding muse-emphasis-N faces.
1156 This permits the user to customize them, which may be useful if a font
1157 does not have italic and/or bold versions.
1159 *** Visiting pages with anchors works better.
1161 *** Fix fill bug with semicolons in the middle of paragraphs.
1163 *** Fix a bug with editing the link at point.
1165 *** Fix a display bug with text like =<verbatim><example></verbatim>=.
1167 ** Project settings (lisp/muse-project.el)
1169 *** Fix an edge case that yielded a stringp: nil error.
1171 *** Prevent auto-save files from being recognized as Muse files.
1173 ** Wiki (lisp/muse-wiki.el)
1175 *** By default, WikiWords can have consecutive capital letters.
1177 *** Fix an error that occurs when muse-colors is not loaded.
1179 *** It is now possible to specify a suffix for WikiWord links.
1180 For example: WikiName''''s.  The WikiName part will be displayed and
1181 colored as a link, but the "s" will be left alone.
1183 * Changes in Muse 3.02.02
1185 ** Configuration
1187 *** A bug with customizing `muse-project-alist' has been fixed.
1189 *** We use a file extension for Muse files by default.
1190 To obtain the old behavior, set `muse-file-extension' to nil and
1191 `muse-mode-auto-p' to t.
1193 To go along with the new behavior, be sure to rename all of your Muse
1194 files to have a ".muse" extension.
1196 *** New option: `muse-wiki-ignore-bare-project-names'.
1197 This causes Muse to ignore bare project names if specified.  The
1198 default is to turn bare project names into links.
1200 *** New option: `muse-publish-comments-p'.
1201 This causes Muse to publish comments as markup.  The default is to
1202 remove comments before publishing rather than trying to mark them up.
1204 *** New option: `muse-wiki-allow-nonexistent-wikiword'.
1205 Enabling this will cause WikiWords with no corresponding file to be
1206 colored as bad links.  The default is not to color them and turn them
1207 into links.
1209 ** Muse Mode (lisp/muse-mode.el)
1211 *** An error with intangible links has been fixed.
1213 *** Visiting a page with an anchor works better than before.
1215 *** Flyspell behaves better with Emacs21 than before.
1217 *** Links to nonexistent files will be colored red by default.
1218 This happened previously, but the algorithm was buggy and didn't cover
1219 implicit links.
1221 ** Project handling (lisp/muse-project.el)
1223 *** A convenience macro called `with-muse-project' has been added.
1224 This allows a code block to be executed after changing the current
1225 Muse project.  It is analogous to emacs-wiki's
1226 `with-emacs-wiki-project' function.
1228 ** Publishing (lisp/muse-publish.el)
1230 *** An issue involving anchors at the end of a line has been
1231 addressed.
1233 *** Non-word characters are now allowed before an anchor.
1235 *** Comments may now be published, if desired.
1236 This behavior may be controlled with the `muse-publish-comments-p'
1237 option.  The default is to remove comments before publishing rather
1238 than trying to mark them up.
1240 *** Publishing directives may now include a dash character.
1242 ** LaTeX publishing (lisp/muse-latex.el)
1244 *** A bug with footnotes has been addressed.
1245 An attempt has been made to make generated footnote markup look more
1246 "natural" to experienced LaTeX users.
1248 *** Table headers are underlined and table footers are overlined.
1250 *** PDF publishing will cause pdflatex to be called as needed.
1251 The previous behavior was to always call pdflatex twice.  Currently,
1252 if pdflatex succeeds, it will not be called again.  Otherwise, call it
1253 up to three times.
1255 *** Escaping of special characters should be drastically improved.
1256 An attempt has been made to get escaping done right in most contexts.
1257 The only quirk is that you must surround dollar signs with equal signs
1258 to ensure escaping.  This makes publishing PDF documents much more
1259 useful.
1261 ** Texinfo publishing (lisp/muse-texinfo.el.el)
1263 *** An attempt was made to hone some of the markup.
1265 * Changes in Muse 3.02.01
1267 ** Muse Mode (lisp/muse-mode.el)
1269 *** Links should no longer prevent moving the point, and help text for
1270 links should no longer cause errors to occur.
1272 ** Project handling (lisp/muse-project.el)
1274 *** `muse-project-alist' -- This variable should now save customizations
1275 to the correct form in the .emacs file.  Before, it was saving an
1276 intermediate form of the variable.
1278 If you have used the customize interface in the previous release of
1279 Muse to set `muse-project-alist', please do the following to import
1280 your settings.
1282  - Open your .emacs file.
1283  - Move the point to where `muse-project-alist' is set.
1284  - Type `M-: (setq muse-project-alist-using-customize t) RET'.
1285  - Type `C-M-x'.
1286  - Type `M-x customize-save-variable RET muse-project-alist RET'.
1288 *** `muse-project-alist' -- A bug involving the deleting of items
1289 using Emacs21 and XEmacs21 has been fixed.
1291 ** Publishing (lisp/muse-publish.el)
1293 *** If 2 or more blank lines separate list or table items, each item
1294 will be published in a separate list or table.
1296 *** The #date directive is now populated by default with the last
1297 modified time of each file, rather than the current time of day.  To
1298 use this value, add '<lisp>(muse-publishing-directive "date")<lisp>'
1299 to your header or footer.
1301 ** HTML publishing (lisp/muse-html.el)
1303 *** `muse-xhtml-style-sheet' -- New option that indicates the style
1304 settings to use for XHTML documents.  This may be either a filename or
1305 a string of stylesheet settings.
1307 * Changes in Muse 3.02
1309 ** New modules
1311 *** lisp/muse-wiki.el --- Provide automatic linking for WikiWords and
1312 InterWiki links.  These words are clickable and publish as links.
1313 Project names from `muse-project-alist' are available for InterWiki
1314 linking by default.  The list of InterWiki names and handlers may be
1315 customized through `muse-wiki-interwiki-alist'.
1317 WikiWords that do not correspond with real files will not be displayed
1318 as links nor published as links.  It is expected that this behavior
1319 will be made optional in future versions of Muse.
1321 **** This module includes a few helper functions that may be added to
1322 `muse-publish-desc-transforms' in order to modify link descriptions at
1323 publish time.
1325 **** The concept of "implicit links" and "explicit links" has been
1326 introduced.  Explicit links are surrounded by brackets, i.e.
1327 [[http://blah.org][this is a explicit link]].  Implicit links are URLs
1328 and email addresses that are not surrounded by brackets: they will not
1329 be colorized or published if surrounded by double-quotes.
1331 ***** `muse-wiki-publish-pretty-title' causes words to be Title-cased,
1332 ignoring words like `the' and `at' which should not be changed.
1334 ***** `muse-wiki-publish-pretty-interwiki' changes the delimiter of
1335 interwiki links according to the text of the
1336 `muse-wiki-interwiki-replacement' option.
1338 *** lisp/muse-protocols.el --- URL protocols that Muse recognizes.
1339 This automatically-included module provides an easily customizable
1340 list of URL protocols, how to browse them, and how to resolve them for
1341 publishing.  Customize `muse-url-protocols' to add and remove
1342 protocols.
1344 ** Compatibility fixes
1346 *** Muse has been tested with XEmacs 21.4, both Mule and non-Mule versions.
1347 There are no known problems remaining.  To make things work by
1348 default, the iso-8859-1 charset is used as a default option in some
1349 places.
1351 ** Configuration
1353 *** `muse-file-extension' -- New option that allows the file extension
1354 for Muse files to be specified.  For example, setting this to "muse"
1355 assumes that you have renamed your Muse files with a ".muse"
1356 extension.  Using this (and setting `muse-mode-auto-p' to nil) will
1357 prevent miscellaneous non-Muse files from being accidentally opened in
1358 Muse Mode.
1360 *** `muse-ignored-extensions' -- New option that determines which file
1361 extensions to omit from the ending of a Muse page name.
1363 *** `muse-ignored-extensions-regexp' -- This is no longer customizable.
1364 It will be automatically generated from `muse-file-extension' and
1365 `muse-ignored-extensions'.
1367 *** `muse-project-alist' -- The customize interface for this option has
1368 been greatly improved, and much effort has been spent in order to make
1369 this user-friendly.
1371 *** The `:force-publish' tag may be specified in `muse-project-alist'.
1372 This causes a particular list of files to be re-created every time the
1373 publishing process is invoked, even if they haven't been changed
1374 according to their timestamps.  One use for this is to keep an index
1375 of available pages by adding the following to a file in this list.
1377 <lisp>(muse-index-as-string t t t)</lisp>
1379 *** `muse-project-ignore-regexp' -- By default, version control directories
1380 are now included in this regexp so that they don't appear when you hit
1381 C-c C-f to browse files in a project.
1383 *** The `muse-project-alist-styles' and `muse-project-alist-dirs' functions
1384 may be used in `muse-project-alist' to recursively add styles and
1385 directory listings for a given directory.  The following is an
1386 example.  We use a backtick instead of a single quote to begin the
1387 list.
1389 (setq muse-project-alist
1390       `(("Blog"
1391          (,@(muse-project-alist-dirs "~/proj/wiki/blog")  ;; base dir
1392           :default "guestbook")
1394          ,@(muse-project-alist-styles "~/proj/wiki/blog"  ;; base dir
1395                                       ;; output dir
1396                                       "~/personal-site/site/blog"
1397                                       ;; style
1398                                       "my-blosxom"))))
1400 Note that if you use the customize interface for `muse-project-alist',
1401 you will still have to manually add information for any new
1402 sub-directories.
1404 ** Debian packaging
1406 *** Debian packages for Muse have entered Debian unstable, thanks
1407 to Romain Francoise, my sponsor.
1409 It is possible to roll your own Muse packages if you want to do so.
1410 Packages may be built by using `make debrelease', once the proper
1411 options in Makefile.defs are set.  Revisions may be built using `make
1412 debrevision'.
1414 The manual and relevant documentation files have been included with
1415 the Debian package for Muse.
1417 ** Muse Mode (lisp/muse-mode.el)
1419 *** Allow use of Muse with outline-minor-mode.
1421 *** Filling text does the right thing with list items and footnotes.
1422 List items and footnotes will no longer be concatenated when hitting
1423 M-q in the midst of consecutive items.
1425 *** Links will never be split in the middle when using Fill.
1427 *** Some flyspell crash issues were addressed.
1428 Using intangible text can cause strange problems with flyspell mode.
1429 Hence, by default, the intangible property will be ignored.  A new
1430 option called `muse-mode-intangible-links' indicates whether this
1431 should be the case.
1433 *** Links will no longer be highlighted by flyspell.
1434 If you're using XEmacs or Emacs 22, flyspell will ignore links,
1435 including link text.  This keeps flyspell from making the links
1436 unclickable.  If you're using Emacs 21, flyspell will continue to
1437 interfere with links.  If you know how to fix this, please send a
1438 patch!
1440 *** A few edge cases for emphasis and underlining have been addressed.
1442 *** <example>, <verbatim>, and =surrounded text= are now colored using
1443 the new face `muse-verbatim-face'.
1445 *** All marked up text properties, like emphasis and underlining,
1446 will be removed for the text between <example>, <verbatim>, <code>,
1447 <literal>, and <lisp> tags.
1449 *** Links to temporary files may be visited.
1450 A "temporary file" in this case is a buffer that is not associated
1451 with any file.  For some dynamic content import scripts with Planner,
1452 this is helpful.
1454 *** Typing "#title" should never crash Emacs anymore.
1456 ** Muse manual (muse.texi)
1458 *** Fix problem with producing a PDF version of the manual.
1460 *** Document WikiNames.
1462 *** Bring up-to-date with latest features.
1464 *** Massively update Common Elements section.
1466 *** New Directives section.
1467 This describes the use of #title and #author, as well as other
1468 directives that may be used.
1470 *** New Comments section.
1471 Describes the use of "; comment text".
1473 ** Publishing (lisp/muse-publish.el)
1475 *** The order of rules should be much improved.
1476 This means that emphasis characters like `*' and `_' will never be
1477 interpreted as such if they are within links.
1479 *** The user will be notified when `muse-publish-this-file' fails to
1480 publish the current file.  This happens when the timestamp of the
1481 current file indicates that it is up-to-date.
1483 *** Special characters are escaped in link descriptions and links on a
1484 more consistent basis.  What defines a "special character" varies
1485 according to the publishing style.
1487 *** Errors that occur during publish time will cause a warning to be
1488 displayed prominently, rather than being ignored.  It should no longer
1489 be possible to mess up a Muse source file by tweaking the Muse
1490 publishing process.
1492 *** Errors in <lisp> tags cause a warning to be displayed and
1493 return "<!--INVALID LISP CODE-->".  Muse will try to continue
1494 publishing the page.
1496 *** An emdash ("--") can now be used after a list, as long as there is
1497 a blank line between the end of the list and the emdash.
1499 *** The <code> tag has been introduced.
1500 It does the same thing that =equal signs= do: escape specials and
1501 publish as teletype text.  Use it for short command snippets and the
1502 like.  <example> is a better choice for large blocks of code, since it
1503 preserves whitespace.
1505 *** An edge case involving links at the beginning of a paragraph
1506 has been addressed.
1508 *** An edge case involving consecutive directives of the same size
1509 has been addressed.
1511 *** Every publishing style is now capable of specifying strings to use
1512 for sections beyond the third level.
1514 *** Every publishing style may specify an end-of-section string.
1515 This is used, for example, by the experimental XML style and the
1516 DocBook style.
1518 *** Every publishing style may specify a method of handling "internal
1519 link" markup.  An internal link is a link that refers to an anchor on
1520 the current page.
1522 *** Every publishing style may specify a link suffix to use.
1523 This allows the file extensions in links to other Muse files to be
1524 different from their actual extension.  Blosxom makes use of this
1525 (since its published files are .txt and the dynamically-generated
1526 output is .html), and it could come in handy for PHP stuff.
1528 If a link suffix is not specified via :link-suffix, the value of
1529 :suffix will be used.
1531 ** Blosxom publishing (lisp/muse-blosxom.el)
1533 *** muse-blosxom-new-entry: A #category directive is added by default.
1534 Nothing is done with this yet, but it could be handy for tag-based
1535 (multiple category) blogging, once we figure out a good way to do that
1536 in both Muse and Pyblosxom.  Ideas are welcome, and patches even more
1539 ** DocBook publishing (lisp/muse-docbook.el)
1541 *** The markup has been comprehensively improved.
1542 Published documents will now pass validation tests and look better in
1543 general.
1545 *** It is now possible to specify the encoding of DocBook documents.
1546 The default encoding is utf-8.
1548 *** Footnotes will be embedded into paragraphs, since this is
1549 The DocBook Way.
1551 *** Tables will be sorted by section.
1552 Headers first, then footers, then the rest of the table.
1554 *** Anchors are now handled correctly and publish to the best available
1555 form.  Links to anchors are published with the <link> tag.
1557 ** HTML publishing (lisp/muse-html.el)
1559 *** Fix minor issue with anchors.
1561 *** Paragraph publishing will no longer insert <div> tags before images.
1562 This was causing too much hassle for some programs that were trying to
1563 extend Muse, like the Muse port of Planner.
1565 *** The `&', `<', and '>' characters will be escaped using their specific
1566 HTML escape codes, rather than with "&#NNN;".  This makes the
1567 published output display correctly in more web browsers.
1569 *** Use HTML 4.0 Transitional by default for `muse-html-header'.
1571 *** Include empty alt element in markup string for images that lack a
1572 description.
1574 *** Tables will be sorted by section.
1575 Headers first, then footers, then the rest of the table.
1577 *** `muse-xhtml-extension' -- The default extension for XHTML publishing.
1578 This is a new option.
1580 ** Journal publishing (lisp/muse-journal.el)
1582 *** Use "div class=..." rather than "div id=..." for sections.
1584 ** LaTeX publishing (lisp/muse-latex.el)
1586 *** A newline will be appended to the default footer for the latex and
1587 latexpdf publishing styles.  This keeps the PDF-building process from
1588 failing due to lack of a newline at end of file.
1590 *** Anchors and links to them now work properly.
1592 *** When generating PDF files, call pdflatex twice.
1593 This should ensure that the table of contents gets generated, if one
1594 is due to be published.
1596 *** PDF files with spaces may be published.
1597 A bug preventing this has been fixed.
1599 *** Teletype text is now published using \\texttt{...}.
1601 *** An attempt has been made to escape special characters more
1602 consistently.
1604 ** Texinfo publishing (lisp/muse-texinfo.el)
1606 *** Fix a fatal error that occurs when publishing tables.
1608 *** Generate the contents in the header by default rather than the footer.
1609 This is the way that most Texinfo manuals do it.
1611 *** The info-pdf publishing style currently produces the best PDF output
1612 on the maintainer's machine, so it is now used to publish the PDF
1613 version of the Muse Manual.
1615 *** The characters `{' and `}' will be treated as special characters that
1616 need to be escaped at publish-time.
1618 *** Improve dots and enddots markup strings.
1620 *** Surround underlined text with "_" since Texinfo doesn't seem to have
1621 any better options for producing underlined text.
1623 *** Anchors and links to them now work properly.