I changed the Chapter Start custom output as you indicated, and it works fine, except that it removed the new line after </h3>. This is minor and I can probably fix it manually, but is there a way to fix that. Do I have to also add in the Chapter End part? Is there a specific code I have to put in for that? I tried adding one or two that I thought might work, but while it didn't work, it didn't affect it negatively either that I could see...
Quote:
Originally Posted by JimmXinu
Yes. That's part of a couple new features, one that allows FFF to add new chapters out of order if the site uses unique chapter URLs (primarily the new forumxeno sites) and for the mark_new_chapters feature.
If this additional metadata causes actual problems, I'd like to hear about it.
If you find the invisible metadata offensive for some reason, you can customize the xhtml used at the beginning of each chapter file to remove it. Default is like so:
Code:
[epub]
chapter_start:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${chapter}</title>
<link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/>
<meta name="chapterurl" content="${url}"></meta>
<meta name="chapterorigtitle" content="${origchapter}"></meta>
<meta name="chaptertoctitle" content="${tocchapter}"></meta>
<meta name="chaptertitle" content="${chapter}"></meta>
</head>
<body>
<h3>${chapter}</h3>
See this wiki page about custom output.
|