Quoth Leo <[EMAIL PROTECTED]>:
> My question is: Why is Muse generating the <h1> tag? How do I disable
> it and start with a blank page, instead of one with a self generated
> <h1> tag?
This h1 tag is being inserted because of the value of the variable
muse-html-header:
(defcustom muse-html-header
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">
<html>
<head>
[snip]
</head>
<body>
<h1><lisp>
(concat (muse-publishing-directive \"title\")
(let ((author (muse-publishing-directive \"author\")))
(if (not (string= author (user-full-name)))
(concat \" (by \" author \")\"))))</lisp></h1>
<!-- Page published by Emacs Muse begins here -->\n"
"Header used for publishing HTML files. This may be text or a filename."
:type 'string
:group 'muse-html)
See (info "(muse)Options for Projects"), specifically how to use the
':set' keyword, to change the value of muse-html-header in your project.
Sebastian
_______________________________________________
Muse-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/muse-el-discuss