From 66f6be1c4e93f1e8a6cb4149bcd47c59b88705c0 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Wed, 18 May 2005 05:49:07 +0000 Subject: [PATCH] Fix XHTML validation error with
and
. * muse-html.el (muse-xhtml-markup-strings): Use the proper form of the BR and HR tags for XHTML publishing. This should fix a few validation errors that I've been noticing lately. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-32 --- ChangeLog | 15 +++++++++++++++ muse-html.el | 5 +++++ 2 files changed, 20 insertions(+) diff --git a/ChangeLog b/ChangeLog index d0dfc81..267d089 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,21 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-05-18 05:49:07 GMT Michael Olson patch-32 + + Summary: + Fix XHTML validation error with
and
. + Revision: + muse--main--1.0--patch-32 + + * muse-html.el (muse-xhtml-markup-strings): Use the proper form of the BR + and HR tags for XHTML publishing. This should fix a few validation + errors that I've been noticing lately. + + modified files: + ChangeLog muse-html.el + + 2005-05-12 22:46:10 GMT Michael Olson patch-31 Summary: diff --git a/muse-html.el b/muse-html.el index ca498cd..e77408f 100644 --- a/muse-html.el +++ b/muse-html.el @@ -280,9 +280,14 @@ differs little between the various styles." '((image-with-desc . "\"%s\"") (image-link . "\"\"") (url-with-image . "\"\"") + (rule . "
") + (fn-sep . "
\n") (begin-underline . "\n") (end-underline . "") (begin-center . "\n") + (end-verse-line . "
") + (last-stanza-end . "
") + (empty-verse-line . "
") (end-center . "\n
")) "Strings used for marking up text. These cover the most basic kinds of markup, the handling of which -- 2.11.4.GIT