When creating a new xhtml page in a
epub v3.0 file, the following code is automatically added to the page...
PHP Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>The Third Option</title>
<link type="text/css" rel="stylesheet" href="OEBPS/Styles/stylesheet.css"/>
</head>
<body>
</body>
</html>
Is it possible to modify this so that it also automatically adds the following to the <html> tag...
PHP Code:
xmlns:epub="http://www.idpf.org/2007/ops"
Thank you