Skip to content
Snippets Groups Projects
Commit ca4b3265 authored by Yannis Barlas's avatar Yannis Barlas
Browse files

Merge branch 'fix-epub-untitled-fragment' into 'master'

Default fragment title when the fragment title is undefined

See merge request !111
parents 7630b2e4 0146226a
No related branches found
No related tags found
1 merge request!111Default fragment title when the fragment title is undefined
Pipeline #3136 canceled with stage
...@@ -2,7 +2,7 @@ const cheerio = require('cheerio') ...@@ -2,7 +2,7 @@ const cheerio = require('cheerio')
module.exports = ({ styles, activeConverters, book }) => fragment => { module.exports = ({ styles, activeConverters, book }) => fragment => {
const $ = cheerio.load(fragment.source) const $ = cheerio.load(fragment.source)
const fragmentTitle = fragment.title const fragmentTitle = fragment.title || 'Untitled'
const bookTitle = book.title const bookTitle = book.title
const fragmentDivision = fragment.division const fragmentDivision = fragment.division
const fragmentSubcategory = fragment.subCategory const fragmentSubcategory = fragment.subCategory
......
...@@ -1824,6 +1824,8 @@ section { ...@@ -1824,6 +1824,8 @@ section {
.dup:before { .dup:before {
content: counter(page) " "; content: counter(page) " ";
letter-spacing: 0px !important;
} }
.booktitle { .booktitle {
...@@ -1845,6 +1847,8 @@ section { ...@@ -1845,6 +1847,8 @@ section {
.booktitle:after { .booktitle:after {
content: " " counter(page); content: " " counter(page);
letter-spacing: 0px !important;
} }
...@@ -1865,12 +1869,13 @@ section { ...@@ -1865,12 +1869,13 @@ section {
.folio:after { .folio:after {
content: counter(page); content: counter(page);
letter-spacing: 0px !important;
} }
/* layout body */ /* layout body */
h1.ct + .cst , .dup + .cst { .ct + .cst , .dup + .cst {
margin-top: -166px; margin-top: -166px;
margin-bottom: 111px; margin-bottom: 111px;
} }
...@@ -2032,15 +2037,17 @@ sup { ...@@ -2032,15 +2037,17 @@ sup {
font-size: 11px; font-size: 11px;
line-height: 15px; line-height: 15px;
} }
/*
.footnote { .footnote {
float: footnote; float: footnote;
} }
*/
.inline-note-footer { .inline-note-footer {
float: footnote; float: footnote;
font-size: 10px; margin-top: 0;
line-height: 1; margin-bottom: 0;
font-size: 11px;
line-height: 15px;
} }
.inline-note-number { .inline-note-number {
...@@ -2098,4 +2105,8 @@ ol.none , ul.none { ...@@ -2098,4 +2105,8 @@ ol.none , ul.none {
cite { cite {
display: block; display: block;
}
p.ct {
display: none;
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment