This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="eng"> | |
<head> | |
<meta content="e32e9e94-9a7b-4b4c-8231-9068b0e61e2e" name="dtb:uid"/> | |
<meta content="4" name="dtb:depth"/> | |
<meta content="calibre (3.21.0)" name="dtb:generator"/> | |
<meta content="0" name="dtb:totalPageCount"/> | |
<meta content="0" name="dtb:maxPageNumber"/> | |
</head> | |
<docTitle> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="eng"> | |
<head> | |
<meta content="e32e9e94-9a7b-4b4c-8231-9068b0e61e2e" name="dtb:uid"/> | |
<meta content="4" name="dtb:depth"/> | |
<meta content="calibre (3.21.0)" name="dtb:generator"/> | |
<meta content="0" name="dtb:totalPageCount"/> | |
<meta content="0" name="dtb:maxPageNumber"/> | |
</head> | |
<docTitle> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
body, body.tei.tei-text { | |
color: black; | |
background-color: white; | |
margin: 0.5em; | |
width: auto; | |
border: 0; | |
padding: 0 | |
} | |
div, p, pre, h1, h2, h3, h4, h5, h6 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**/ | |
p.c14 { | |
font-style: italic | |
} | |
hr.c9 { | |
width: 45% | |
} | |
span.c5 { | |
font-style: italic | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**/ | |
p { | |
margin-top: 0.75em; | |
text-align: justify; | |
margin-bottom: 0.75em | |
} | |
h1, h2, h3, h4, h5, h6 { | |
text-align: center; | |
/* all headings centered */ | |
clear: both |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="eng"> | |
<head> | |
<meta content="006983f7-443c-4ef8-8efa-48322366550d" name="dtb:uid"/> | |
<meta content="4" name="dtb:depth"/> | |
<meta content="calibre (3.21.0)" name="dtb:generator"/> | |
<meta content="0" name="dtb:totalPageCount"/> | |
<meta content="0" name="dtb:maxPageNumber"/> | |
</head> | |
<docTitle> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.block_ { | |
background-color: #FFF; | |
color: black; | |
display: block; | |
font-family: serif; | |
font-size: 0.83333em; | |
line-height: 14.4pt; | |
text-align: left; | |
padding: 0; | |
margin: 9pt 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page { | |
margin-bottom: 5pt; | |
margin-top: 5pt | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# vim:fileencoding=utf-8 | |
from __future__ import unicode_literals, division, absolute_import, print_function | |
from calibre.web.feeds.news import BasicNewsRecipe | |
class AdvancedUserRecipe1526022279(BasicNewsRecipe): | |
title = 'Calibre Blog' | |
oldest_article = 1000 | |
max_articles_per_feed = 100 | |
auto_cleanup = True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# vim:fileencoding=utf-8 | |
from __future__ import unicode_literals, division, absolute_import, print_function | |
from calibre.web.feeds.news import BasicNewsRecipe | |
class AdvancedUserRecipe1525856516(BasicNewsRecipe): | |
title = 'Rosa Template' | |
oldest_article = 7 | |
max_articles_per_feed = 100 | |
auto_cleanup = True |