* org-html.el (org-export-as-html): Add a "title" meta tag.
This commit is contained in:
parent
db04ef7498
commit
767f5188ee
|
@ -1298,11 +1298,11 @@ PUB-DIR is set, use this as the publishing directory."
|
||||||
"%s
|
"%s
|
||||||
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
|
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
|
||||||
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
|
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
|
||||||
<html xmlns=\"http://www.w3.org/1999/xhtml\"
|
<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"%s\" xml:lang=\"%s\">
|
||||||
lang=\"%s\" xml:lang=\"%s\">
|
|
||||||
<head>
|
<head>
|
||||||
<title>%s</title>
|
<title>%s</title>
|
||||||
<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
|
<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
|
||||||
|
<meta name=\"title\" content=\"%s\"/>
|
||||||
<meta name=\"generator\" content=\"Org-mode\"/>
|
<meta name=\"generator\" content=\"Org-mode\"/>
|
||||||
<meta name=\"generated\" content=\"%s\"/>
|
<meta name=\"generated\" content=\"%s\"/>
|
||||||
<meta name=\"author\" content=\"%s\"/>
|
<meta name=\"author\" content=\"%s\"/>
|
||||||
|
@ -1325,7 +1325,7 @@ lang=\"%s\" xml:lang=\"%s\">
|
||||||
language language
|
language language
|
||||||
title
|
title
|
||||||
(or charset "iso-8859-1")
|
(or charset "iso-8859-1")
|
||||||
date author description keywords
|
title date author description keywords
|
||||||
style
|
style
|
||||||
mathjax
|
mathjax
|
||||||
(if (or link-up link-home)
|
(if (or link-up link-home)
|
||||||
|
|
Loading…
Reference in New Issue