├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md ├── UPGRADE.md ├── app ├── Bin │ └── build.php └── Resources │ ├── Books │ └── sherlock-holmes │ │ ├── Contents │ │ ├── chapter1.md │ │ ├── chapter10.md │ │ ├── chapter11.md │ │ ├── chapter12.md │ │ ├── chapter2.md │ │ ├── chapter3.md │ │ ├── chapter4.md │ │ ├── chapter5.md │ │ ├── chapter6.md │ │ ├── chapter7.md │ │ ├── chapter8.md │ │ ├── chapter9.md │ │ └── license.md │ │ └── config.yml │ ├── Dictionaries │ ├── LICENSE.md │ ├── hyph_ca.dic │ ├── hyph_de.dic │ ├── hyph_en.dic │ ├── hyph_es.dic │ ├── hyph_eu.dic │ ├── hyph_fr.dic │ ├── hyph_it.dic │ ├── hyph_ro.dic │ └── hyph_zh.dic │ ├── Fonts │ ├── Alte_Haas_Grotesk │ │ ├── Alte Haas Grotesk licence.rtf │ │ ├── AlteHaasGroteskBold.ttf │ │ └── AlteHaasGroteskRegular.ttf │ ├── Inconsolata │ │ ├── Inconsolata.ttf │ │ └── OFL.txt │ ├── Neuton │ │ ├── Neuton-Bold.ttf │ │ ├── Neuton-ExtraBold.ttf │ │ ├── Neuton-ExtraLight.ttf │ │ ├── Neuton-ExtralightItalic.ttf │ │ ├── Neuton-Italic.ttf │ │ ├── Neuton-Light.ttf │ │ ├── Neuton-Regular.ttf │ │ └── OFL.txt │ ├── Open_Sans │ │ ├── LICENSE.txt │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf │ └── Tex_Gyre_Heros │ │ ├── GUST e-foundry License.txt │ │ ├── texgyreheros-bold.otf │ │ ├── texgyreheros-bolditalic.otf │ │ ├── texgyreheros-italic.otf │ │ ├── texgyreheros-regular.otf │ │ ├── texgyreheroscn-bold.otf │ │ ├── texgyreheroscn-bolditalic.otf │ │ ├── texgyreheroscn-italic.otf │ │ └── texgyreheroscn-regular.otf │ ├── Skeletons │ ├── Book │ │ ├── Contents │ │ │ ├── chapter1.md │ │ │ └── chapter2.md │ │ └── config.yml.twig │ └── Customization │ │ ├── epub │ │ └── style.css │ │ ├── html │ │ └── style.css │ │ ├── html_chunked │ │ └── style.css │ │ ├── mobi │ │ └── style.css │ │ └── pdf │ │ └── style.css │ ├── Themes │ ├── Base │ │ ├── Epub │ │ │ ├── Contents │ │ │ │ ├── edition.md.twig │ │ │ │ ├── license.md.twig │ │ │ │ └── title.md.twig │ │ │ └── Templates │ │ │ │ ├── chunk.twig │ │ │ │ ├── code.twig │ │ │ │ ├── container.xml.twig │ │ │ │ ├── content.opf.twig │ │ │ │ ├── cover.twig │ │ │ │ ├── css │ │ │ │ ├── code.css.twig │ │ │ │ ├── images.css.twig │ │ │ │ ├── items.css.twig │ │ │ │ ├── layout.css.twig │ │ │ │ ├── normalize.css.twig │ │ │ │ ├── tables.css.twig │ │ │ │ └── typography.css.twig │ │ │ │ ├── figure.twig │ │ │ │ ├── layout.twig │ │ │ │ ├── mimetype.twig │ │ │ │ ├── style.css.twig │ │ │ │ ├── table.twig │ │ │ │ └── toc.ncx.twig │ │ ├── Html │ │ │ ├── Contents │ │ │ │ ├── edition.md.twig │ │ │ │ ├── license.md.twig │ │ │ │ └── title.md.twig │ │ │ └── Templates │ │ │ │ ├── acknowledgement.twig │ │ │ │ ├── afterword.twig │ │ │ │ ├── appendix.twig │ │ │ │ ├── author.twig │ │ │ │ ├── book.twig │ │ │ │ ├── chapter.twig │ │ │ │ ├── code.twig │ │ │ │ ├── conclusion.twig │ │ │ │ ├── cover.twig │ │ │ │ ├── css │ │ │ │ ├── code.css.twig │ │ │ │ ├── images.css.twig │ │ │ │ ├── items.css.twig │ │ │ │ ├── layout.css.twig │ │ │ │ ├── navigation.css.twig │ │ │ │ ├── normalize.css.twig │ │ │ │ ├── responsive.css.twig │ │ │ │ ├── tables.css.twig │ │ │ │ └── typography.css.twig │ │ │ │ ├── dedication.twig │ │ │ │ ├── edition.twig │ │ │ │ ├── epilogue.twig │ │ │ │ ├── figure.twig │ │ │ │ ├── foreword.twig │ │ │ │ ├── glossary.twig │ │ │ │ ├── introduction.twig │ │ │ │ ├── item.twig │ │ │ │ ├── license.twig │ │ │ │ ├── lof.twig │ │ │ │ ├── lot.twig │ │ │ │ ├── part.twig │ │ │ │ ├── preface.twig │ │ │ │ ├── prologue.twig │ │ │ │ ├── style.css.twig │ │ │ │ ├── table.twig │ │ │ │ ├── title.twig │ │ │ │ └── toc.twig │ │ ├── HtmlChunked │ │ │ ├── Contents │ │ │ │ ├── edition.md.twig │ │ │ │ ├── license.md.twig │ │ │ │ └── title.md.twig │ │ │ └── Templates │ │ │ │ ├── chunk.twig │ │ │ │ ├── code.twig │ │ │ │ ├── css │ │ │ │ ├── code.css.twig │ │ │ │ ├── images.css.twig │ │ │ │ ├── items.css.twig │ │ │ │ ├── layout.css.twig │ │ │ │ ├── navigation.css.twig │ │ │ │ ├── normalize.css.twig │ │ │ │ ├── responsive.css.twig │ │ │ │ ├── tables.css.twig │ │ │ │ └── typography.css.twig │ │ │ │ ├── figure.twig │ │ │ │ ├── index.twig │ │ │ │ ├── layout.twig │ │ │ │ ├── lof.twig │ │ │ │ ├── lot.twig │ │ │ │ ├── style.css.twig │ │ │ │ └── table.twig │ │ ├── Mobi │ │ │ ├── Contents │ │ │ │ ├── edition.md.twig │ │ │ │ ├── license.md.twig │ │ │ │ └── title.md.twig │ │ │ └── Templates │ │ │ │ ├── chunk.twig │ │ │ │ ├── code.twig │ │ │ │ ├── container.xml.twig │ │ │ │ ├── content.opf.twig │ │ │ │ ├── cover.twig │ │ │ │ ├── css │ │ │ │ ├── code.css.twig │ │ │ │ ├── images.css.twig │ │ │ │ ├── items.css.twig │ │ │ │ ├── layout.css.twig │ │ │ │ ├── normalize.css.twig │ │ │ │ ├── tables.css.twig │ │ │ │ └── typography.css.twig │ │ │ │ ├── figure.twig │ │ │ │ ├── layout.twig │ │ │ │ ├── mimetype.twig │ │ │ │ ├── style.css.twig │ │ │ │ ├── table.twig │ │ │ │ ├── toc.ncx.twig │ │ │ │ └── toc.twig │ │ └── Pdf │ │ │ ├── Contents │ │ │ ├── edition.md.twig │ │ │ ├── license.md.twig │ │ │ └── title.md.twig │ │ │ └── Templates │ │ │ ├── acknowledgement.twig │ │ │ ├── afterword.twig │ │ │ ├── appendix.twig │ │ │ ├── author.twig │ │ │ ├── book.twig │ │ │ ├── chapter.twig │ │ │ ├── code.twig │ │ │ ├── conclusion.twig │ │ │ ├── cover.twig │ │ │ ├── css │ │ │ ├── code.css.twig │ │ │ ├── font_alte_haas_grotesk.twig │ │ │ ├── font_inconsolata.twig │ │ │ ├── font_neuton.twig │ │ │ ├── font_open_sans.twig │ │ │ ├── font_tex_gyre_heros.twig │ │ │ ├── images.css.twig │ │ │ ├── items.css.twig │ │ │ ├── layout.css.twig │ │ │ ├── normalize.css.twig │ │ │ ├── tables.css.twig │ │ │ └── typography.css.twig │ │ │ ├── dedication.twig │ │ │ ├── edition.twig │ │ │ ├── epilogue.twig │ │ │ ├── figure.twig │ │ │ ├── foreword.twig │ │ │ ├── glossary.twig │ │ │ ├── introduction.twig │ │ │ ├── item.twig │ │ │ ├── license.twig │ │ │ ├── lof.twig │ │ │ ├── lot.twig │ │ │ ├── part.twig │ │ │ ├── preface.twig │ │ │ ├── prologue.twig │ │ │ ├── style.css.twig │ │ │ ├── table.twig │ │ │ ├── title.twig │ │ │ └── toc.twig │ └── Clean │ │ ├── Epub │ │ ├── Contents │ │ │ ├── edition.md.twig │ │ │ ├── license.md.twig │ │ │ └── title.md.twig │ │ └── Templates │ │ │ └── style.css.twig │ │ ├── Html │ │ └── Templates │ │ │ ├── book.twig │ │ │ ├── style.css.twig │ │ │ └── toc.twig │ │ ├── HtmlChunked │ │ ├── Contents │ │ │ ├── edition.md.twig │ │ │ ├── license.md.twig │ │ │ └── title.md.twig │ │ └── Templates │ │ │ ├── chunk.twig │ │ │ ├── index.twig │ │ │ ├── layout.twig │ │ │ └── style.css.twig │ │ ├── Mobi │ │ ├── Contents │ │ │ ├── edition.md.twig │ │ │ ├── license.md.twig │ │ │ └── title.md.twig │ │ └── Templates │ │ │ └── style.css.twig │ │ └── Pdf │ │ ├── Contents │ │ ├── edition.md.twig │ │ ├── license.md.twig │ │ └── title.md.twig │ │ └── Templates │ │ └── style.css.twig │ └── Translations │ ├── labels.ca.yml │ ├── labels.de.yml │ ├── labels.en.yml │ ├── labels.es.yml │ ├── labels.eu.yml │ ├── labels.fr.yml │ ├── labels.it.yml │ ├── labels.nl.yml │ ├── labels.ro.yml │ ├── labels.zh.yml │ ├── titles.ca.yml │ ├── titles.de.yml │ ├── titles.en.yml │ ├── titles.es.yml │ ├── titles.eu.yml │ ├── titles.fr.yml │ ├── titles.it.yml │ ├── titles.nl.yml │ ├── titles.ro.yml │ └── titles.zh.yml ├── book ├── composer.json ├── composer.lock ├── doc └── easybook-doc-en │ ├── Contents │ ├── 01-publishing-your-first-book.md │ ├── 02-book-contents-and-configuration.md │ ├── 03-editions.md │ ├── 04-themes.md │ ├── 05-publishing-html-books.md │ ├── 06-publishing-epub-books.md │ ├── 07-publishing-mobi-books.md │ ├── 08-publishing-pdf-books.md │ ├── 09-plugins.md │ ├── 10-hacking-easybook.md │ ├── A-markdown-reference.md │ └── images │ │ ├── syntax_highlighting_browser_vs_app.png │ │ ├── syntax_highlighting_browser_vs_ipad.png │ │ └── what_is_easybook.png │ ├── Resources │ ├── Templates │ │ ├── easybook-project.org │ │ │ ├── chunk.twig │ │ │ └── index.twig │ │ ├── ebook │ │ │ └── cover.jpg │ │ └── print │ │ │ └── cover.pdf │ └── Translations │ │ └── labels.en.yml │ └── config.yml ├── phpunit.xml └── src └── Easybook ├── Configurator ├── BookConfigurator.php └── DefaultConfigurations │ ├── book.yml │ └── edition.yml ├── Console ├── Command │ ├── AboutCommand.php │ ├── BaseCommand.php │ ├── BookCustomizeCommand.php │ ├── BookNewCommand.php │ ├── BookPublishCommand.php │ ├── EasybookBenchmarkCommand.php │ ├── EasybookVersionCommand.php │ └── Resources │ │ ├── AboutCommandHelp.txt │ │ ├── BookCustomizeCommandHelp.txt │ │ ├── BookNewCommandHelp.txt │ │ └── BookPublishCommandHelp.txt └── ConsoleApplication.php ├── DependencyInjection └── Application.php ├── Events ├── BaseEvent.php ├── EasybookEvents.php └── ParseEvent.php ├── Generator ├── BookGenerator.php └── Generator.php ├── Parsers ├── EasybookMarkdownParser.php ├── MarkdownParser.php └── ParserInterface.php ├── Plugins ├── CodePlugin.php ├── ImagePlugin.php ├── LinkPlugin.php ├── ParserPlugin.php ├── TablePlugin.php └── TimerPlugin.php ├── Providers ├── CodeHighlighterServiceProvider.php ├── GeshiServiceProvider.php ├── KindleGenServiceProvider.php ├── ParserServiceProvider.php ├── PrinceXMLServiceProvider.php ├── PublisherServiceProvider.php ├── SluggerServiceProvider.php └── TwigServiceProvider.php ├── Publishers ├── BasePublisher.php ├── Epub2Publisher.php ├── HtmlChunkedPublisher.php ├── HtmlPublisher.php ├── MobiPublisher.php ├── PdfPublisher.php └── PublisherInterface.php ├── Tests ├── Commands │ ├── ApplicationTest.php │ ├── BookCustomizeCommandTest.php │ ├── BookNewCommandTest.php │ ├── BookPublishCommandTest.php │ └── fixtures │ │ └── list_command_output.txt ├── Configurator │ ├── BookConfigurationTest.php │ ├── EasybookConfigurationTest.php │ └── fixtures │ │ ├── dynamic │ │ ├── 1_1_set_dynamic_options_via_file.test │ │ ├── 1_2_set_dynamic_options_via_command.test │ │ ├── 1_3_set_dynamic_options_via_command_and_file.test │ │ └── 1_4_set_conflicting_dynamic_options_via_command_and_file.test │ │ ├── easybook_configuration │ │ ├── custom_and_override_configuration.yml │ │ ├── custom_configuration.yml │ │ ├── no_configuration.yml │ │ └── override_configuration.yml │ │ └── static │ │ ├── 1_no_configuration.test │ │ ├── 2_1_set_options_via_defaults.test │ │ ├── 2_2_set_options_via_file.test │ │ ├── 2_3_set_options_via_command.test │ │ ├── 2_4_1_set_options_via_command_and_file.test │ │ ├── 2_4_2_set_conflicting_options_via_command_and_file.test │ │ ├── 3_1_set_custom_properties_via_file.test │ │ ├── 3_2_set_custom_properties_via_command.test │ │ ├── 3_3_1_set_custom_properties_via_file_and_command.test │ │ └── 3_3_2_set_conflicting_custom_properties_via_file_and_command.test ├── DependencyInjection │ ├── ApplicationTest.php │ ├── RenderTest.php │ └── fixtures │ │ └── highlight │ │ ├── input │ │ ├── html.txt │ │ └── php.txt │ │ └── output │ │ ├── html.txt │ │ └── php.txt ├── Events │ ├── BaseEventTest.php │ └── ParseEventTest.php ├── Parsers │ ├── MarkdownParserTest.php │ └── fixtures │ │ ├── LICENSE.md │ │ ├── expected │ │ ├── markdown-easybook │ │ │ ├── Admonitions.html │ │ │ ├── Heading ID Attributes.html │ │ │ ├── Heading Inner Markup.html │ │ │ ├── Image Alignment.html │ │ │ └── Page Breaks.html │ │ ├── markdown-original │ │ │ ├── Amps and angle encoding.html │ │ │ ├── Auto links.html │ │ │ ├── Backslash escapes.html │ │ │ ├── Blockquotes with code blocks.html │ │ │ ├── Code Blocks.html │ │ │ ├── Code Spans.html │ │ │ ├── Hard-wrapped paragraphs with list-like lines.html │ │ │ ├── Horizontal rules.html │ │ │ ├── Images.html │ │ │ ├── Inline HTML (Advanced).html │ │ │ ├── Inline HTML (Simple).html │ │ │ ├── Inline HTML comments.html │ │ │ ├── Links, inline style.html │ │ │ ├── Links, reference style.html │ │ │ ├── Links, shortcut references.html │ │ │ ├── Literal quotes in titles.html │ │ │ ├── Markdown Documentation - Basics.html │ │ │ ├── Markdown Documentation - Syntax.html │ │ │ ├── Nested blockquotes.html │ │ │ ├── Ordered and unordered lists.html │ │ │ ├── Strong and em together.html │ │ │ ├── Tabs.html │ │ │ └── Tidyness.html │ │ ├── markdown-php-extra │ │ │ ├── Abbr.html │ │ │ ├── Definition Lists.html │ │ │ ├── Emphasis.html │ │ │ ├── Fenced Code Blocks.html │ │ │ ├── Footnotes.html │ │ │ ├── Inline HTML with Markdown content.html │ │ │ └── Tables.html │ │ └── markdown-php │ │ │ ├── Adjacent Lists.html │ │ │ ├── Auto Links.html │ │ │ ├── Backslash escapes.html │ │ │ ├── Code Spans.html │ │ │ ├── Code block in a list item.html │ │ │ ├── Code block on second line.html │ │ │ ├── Code block regressions.html │ │ │ ├── Email auto links.html │ │ │ ├── Emphasis.html │ │ │ ├── Empty List Item.html │ │ │ ├── Headers.html │ │ │ ├── Horizontal Rules.html │ │ │ ├── Inline HTML (Simple).html │ │ │ ├── Inline HTML (Span).html │ │ │ ├── Inline HTML comments.html │ │ │ ├── Ins & del.html │ │ │ ├── Links, inline style.html │ │ │ ├── MD5 Hashes.html │ │ │ ├── Mixed OLs and ULs.html │ │ │ ├── Nesting.html │ │ │ ├── PHP-Specific Bugs.html │ │ │ ├── Parens in URL.html │ │ │ ├── Quotes in attributes.html │ │ │ ├── Tight blocks.html │ │ │ └── XML empty tag.html │ │ └── input │ │ ├── markdown-easybook │ │ ├── Admonitions.md │ │ ├── Heading ID Attributes.md │ │ ├── Heading Inner Markup.md │ │ ├── Image Alignment.md │ │ └── Page Breaks.md │ │ ├── markdown-original │ │ ├── Amps and angle encoding.md │ │ ├── Auto links.md │ │ ├── Backslash escapes.md │ │ ├── Blockquotes with code blocks.md │ │ ├── Code Blocks.md │ │ ├── Code Spans.md │ │ ├── Hard-wrapped paragraphs with list-like lines.md │ │ ├── Horizontal rules.md │ │ ├── Images.md │ │ ├── Inline HTML (Advanced).md │ │ ├── Inline HTML (Simple).md │ │ ├── Inline HTML comments.md │ │ ├── Links, inline style.md │ │ ├── Links, reference style.md │ │ ├── Links, shortcut references.md │ │ ├── Literal quotes in titles.md │ │ ├── Markdown Documentation - Basics.md │ │ ├── Markdown Documentation - Syntax.md │ │ ├── Nested blockquotes.md │ │ ├── Ordered and unordered lists.md │ │ ├── Strong and em together.md │ │ ├── Tabs.md │ │ └── Tidyness.md │ │ ├── markdown-php-extra │ │ ├── Abbr.md │ │ ├── Definition Lists.md │ │ ├── Emphasis.md │ │ ├── Fenced Code Blocks.md │ │ ├── Footnotes.md │ │ ├── Inline HTML with Markdown content.md │ │ └── Tables.md │ │ └── markdown-php │ │ ├── Adjacent Lists.md │ │ ├── Auto Links.md │ │ ├── Backslash escapes.md │ │ ├── Code Spans.md │ │ ├── Code block in a list item.md │ │ ├── Code block on second line.md │ │ ├── Code block regressions.md │ │ ├── Email auto links.md │ │ ├── Emphasis.md │ │ ├── Empty List Item.md │ │ ├── Headers.md │ │ ├── Horizontal Rules.md │ │ ├── Inline HTML (Simple).md │ │ ├── Inline HTML (Span).md │ │ ├── Inline HTML comments.md │ │ ├── Ins & del.md │ │ ├── Links, inline style.md │ │ ├── MD5 Hashes.md │ │ ├── Mixed OLs and ULs.md │ │ ├── Nesting.md │ │ ├── PHP-Specific Bugs.md │ │ ├── Parens in URL.md │ │ ├── Quotes in attributes.md │ │ ├── Tight blocks.md │ │ └── XML empty tag.md ├── Plugins │ ├── CodePluginTest.php │ ├── TablePluginTest.php │ ├── TimerPluginTest.php │ └── fixtures │ │ ├── code │ │ ├── expected_easybook_type_disabled_highlight.html │ │ ├── expected_easybook_type_enabled_highlight.html │ │ ├── expected_fenced_type_disabled_highlight.html │ │ ├── expected_fenced_type_enabled_highlight.html │ │ ├── expected_github_type_disabled_highlight.html │ │ ├── expected_github_type_enabled_highlight.html │ │ ├── input_1.md │ │ ├── input_2.md │ │ └── input_3.md │ │ └── tables │ │ ├── expected_1_1.html │ │ ├── expected_1_2.html │ │ ├── expected_2.html │ │ ├── expected_3.html │ │ ├── input_1.html │ │ ├── input_2.html │ │ └── input_3.html ├── Publishers │ ├── Epub2PublisherTest.php │ ├── HtmlChunkedPublisherTest.php │ ├── PdfPublisherTest.php │ ├── PublisherTest.php │ └── fixtures │ │ ├── book1 │ │ ├── expected │ │ │ ├── ebook │ │ │ │ └── book.epub │ │ │ ├── web │ │ │ │ ├── book.html │ │ │ │ ├── css │ │ │ │ │ └── easybook.css │ │ │ │ └── images │ │ │ │ │ └── .gitignore │ │ │ ├── website │ │ │ │ └── book │ │ │ │ │ ├── chapter-1.html │ │ │ │ │ ├── chapter-2.html │ │ │ │ │ ├── chapter-3.html │ │ │ │ │ ├── css │ │ │ │ │ └── easybook.css │ │ │ │ │ ├── images │ │ │ │ │ └── .gitignore │ │ │ │ │ └── index.html │ │ │ └── website_chunked │ │ │ │ └── book │ │ │ │ ├── chapter-1.html │ │ │ │ ├── chapter-1 │ │ │ │ ├── book-configuration-options.html │ │ │ │ ├── creating-the-book.html │ │ │ │ ├── downloading-easybook.html │ │ │ │ ├── publishing-the-book.html │ │ │ │ └── writing-the-book.html │ │ │ │ ├── chapter-2.html │ │ │ │ ├── chapter-2 │ │ │ │ ├── content-types.html │ │ │ │ ├── editions.html │ │ │ │ └── themes.html │ │ │ │ ├── chapter-3.html │ │ │ │ ├── chapter-3 │ │ │ │ ├── advanced-features.html │ │ │ │ └── plugins.html │ │ │ │ ├── css │ │ │ │ └── easybook.css │ │ │ │ └── index.html │ │ └── input │ │ │ ├── Contents │ │ │ ├── chapter1.md │ │ │ ├── chapter2.md │ │ │ ├── chapter3.md │ │ │ └── images │ │ │ │ └── .gitignore │ │ │ └── config.yml │ │ ├── book2 │ │ ├── expected │ │ │ ├── web │ │ │ │ ├── book.html │ │ │ │ ├── css │ │ │ │ │ └── easybook.css │ │ │ │ └── images │ │ │ │ │ └── .gitignore │ │ │ └── website │ │ │ │ └── book │ │ │ │ ├── chapter-1.html │ │ │ │ ├── chapter-2.html │ │ │ │ ├── chapter-3.html │ │ │ │ ├── css │ │ │ │ └── easybook.css │ │ │ │ ├── images │ │ │ │ └── .gitignore │ │ │ │ └── index.html │ │ └── input │ │ │ ├── Contents │ │ │ ├── chapter1.md │ │ │ ├── chapter2.md │ │ │ ├── chapter3.md │ │ │ └── images │ │ │ │ └── .gitignore │ │ │ ├── Resources │ │ │ └── Translations │ │ │ │ ├── html_chunked │ │ │ │ └── titles.en.yml │ │ │ │ └── web │ │ │ │ └── labels.en.yml │ │ │ └── config.yml │ │ ├── book3 │ │ ├── expected │ │ │ ├── my_edition_1 │ │ │ │ ├── book.html │ │ │ │ └── images │ │ │ │ │ └── .gitignore │ │ │ ├── my_edition_2 │ │ │ │ └── book │ │ │ │ │ ├── appendix-a.html │ │ │ │ │ ├── chapter-1.html │ │ │ │ │ ├── chapter-2.html │ │ │ │ │ ├── css │ │ │ │ │ └── easybook.css │ │ │ │ │ ├── images │ │ │ │ │ └── .gitignore │ │ │ │ │ └── index.html │ │ │ └── my_edition_3 │ │ │ │ ├── book.html │ │ │ │ └── images │ │ │ │ └── .gitignore │ │ └── input │ │ │ ├── Contents │ │ │ ├── chapter1.md │ │ │ ├── chapter2.md │ │ │ ├── chapter3.md │ │ │ └── images │ │ │ │ └── .gitignore │ │ │ ├── Resources │ │ │ ├── Templates │ │ │ │ ├── chapter.twig │ │ │ │ ├── html │ │ │ │ │ └── cover.twig │ │ │ │ └── my_edition_3 │ │ │ │ │ └── toc.twig │ │ │ └── Translations │ │ │ │ ├── html_chunked │ │ │ │ └── titles.en.yml │ │ │ │ └── web │ │ │ │ └── labels.en.yml │ │ │ └── config.yml │ │ ├── book4 │ │ ├── expected │ │ │ └── web │ │ │ │ ├── book.html │ │ │ │ ├── css │ │ │ │ └── easybook.css │ │ │ │ └── images │ │ │ │ └── .gitignore │ │ └── input │ │ │ ├── Contents │ │ │ ├── first │ │ │ │ └── chapter1.md │ │ │ ├── images │ │ │ │ └── .gitignore │ │ │ ├── second │ │ │ │ └── chapter2.md │ │ │ └── third │ │ │ │ └── chapter3.md │ │ │ ├── Resources │ │ │ └── Plugins │ │ │ │ └── ParserPlugin.php │ │ │ └── config.yml │ │ ├── book5 │ │ ├── expected │ │ │ └── web │ │ │ │ ├── book.html │ │ │ │ └── css │ │ │ │ └── easybook.css │ │ └── input │ │ │ ├── Contents │ │ │ ├── czech.md │ │ │ ├── greek.md │ │ │ ├── japanese.md │ │ │ ├── latvian.md │ │ │ ├── polish.md │ │ │ ├── russian.md │ │ │ ├── turkish.md │ │ │ └── ukrainian.md │ │ │ └── config.yml │ │ └── book6 │ │ ├── expected │ │ ├── ebook │ │ │ └── book.epub │ │ ├── web │ │ │ ├── book.html │ │ │ └── css │ │ │ │ └── easybook.css │ │ ├── website_chunked │ │ │ └── book │ │ │ │ ├── chapter-1.html │ │ │ │ ├── chapter-1 │ │ │ │ └── duis-aute-irure-dolor-in-reprehenderit.html │ │ │ │ ├── chapter-2.html │ │ │ │ ├── chapter-2 │ │ │ │ ├── duis-aute.html │ │ │ │ └── ut-enim-ad-minim-veniam-2.html │ │ │ │ ├── chapter-3.html │ │ │ │ ├── chapter-3 │ │ │ │ ├── lorem-ipsum-dolor-sit-amet.html │ │ │ │ └── ut-enim-ad-minim-veniam-3.html │ │ │ │ ├── css │ │ │ │ └── easybook.css │ │ │ │ └── index.html │ │ └── website_not_chunked │ │ │ └── book │ │ │ ├── chapter-1.html │ │ │ ├── chapter-2.html │ │ │ ├── chapter-3.html │ │ │ ├── css │ │ │ └── easybook.css │ │ │ └── index.html │ │ └── input │ │ ├── Contents │ │ ├── chapter1.md │ │ ├── chapter2.md │ │ └── chapter3.md │ │ └── config.yml ├── TestCase.php ├── Util │ ├── CompressorTest.php │ ├── ToolkitTest.php │ └── TwigCssExtensionTest.php └── bootstrap.php └── Util ├── CodeHighlighter.php ├── Compressor.php ├── Prince.php ├── Toolkit.php ├── TwigCssExtension.php └── Validator.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /app/Bin/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Bin/build.php -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter1.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter10.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter11.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter12.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter2.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter3.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter4.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter5.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter6.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter7.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter8.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/chapter9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/chapter9.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/Contents/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/Contents/license.md -------------------------------------------------------------------------------- /app/Resources/Books/sherlock-holmes/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Books/sherlock-holmes/config.yml -------------------------------------------------------------------------------- /app/Resources/Dictionaries/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/LICENSE.md -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_ca.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_ca.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_de.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_de.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_en.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_en.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_es.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_es.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_eu.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_eu.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_fr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_fr.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_it.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_it.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_ro.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_ro.dic -------------------------------------------------------------------------------- /app/Resources/Dictionaries/hyph_zh.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Dictionaries/hyph_zh.dic -------------------------------------------------------------------------------- /app/Resources/Fonts/Alte_Haas_Grotesk/Alte Haas Grotesk licence.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Alte_Haas_Grotesk/Alte Haas Grotesk licence.rtf -------------------------------------------------------------------------------- /app/Resources/Fonts/Alte_Haas_Grotesk/AlteHaasGroteskBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Alte_Haas_Grotesk/AlteHaasGroteskBold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Alte_Haas_Grotesk/AlteHaasGroteskRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Alte_Haas_Grotesk/AlteHaasGroteskRegular.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Inconsolata/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Inconsolata/Inconsolata.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Inconsolata/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Inconsolata/OFL.txt -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-Bold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-ExtraBold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-ExtraLight.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-ExtralightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-ExtralightItalic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-Italic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-Light.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/Neuton-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/Neuton-Regular.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Neuton/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Neuton/OFL.txt -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Open_Sans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Open_Sans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/GUST e-foundry License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/GUST e-foundry License.txt -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-bold.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-bolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-bolditalic.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-italic.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheros-regular.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-bold.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-bolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-bolditalic.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-italic.otf -------------------------------------------------------------------------------- /app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Fonts/Tex_Gyre_Heros/texgyreheroscn-regular.otf -------------------------------------------------------------------------------- /app/Resources/Skeletons/Book/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Book/Contents/chapter1.md -------------------------------------------------------------------------------- /app/Resources/Skeletons/Book/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Book/Contents/chapter2.md -------------------------------------------------------------------------------- /app/Resources/Skeletons/Book/config.yml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Book/config.yml.twig -------------------------------------------------------------------------------- /app/Resources/Skeletons/Customization/epub/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Customization/epub/style.css -------------------------------------------------------------------------------- /app/Resources/Skeletons/Customization/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Customization/html/style.css -------------------------------------------------------------------------------- /app/Resources/Skeletons/Customization/html_chunked/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Customization/html_chunked/style.css -------------------------------------------------------------------------------- /app/Resources/Skeletons/Customization/mobi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Customization/mobi/style.css -------------------------------------------------------------------------------- /app/Resources/Skeletons/Customization/pdf/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Skeletons/Customization/pdf/style.css -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/chunk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/chunk.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/code.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/code.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/container.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/container.xml.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/content.opf.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/content.opf.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/cover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/cover.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/code.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/code.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/images.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/images.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/items.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/items.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/layout.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/layout.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/normalize.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/normalize.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/tables.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/tables.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/css/typography.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/css/typography.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/figure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/figure.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/layout.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/mimetype.twig: -------------------------------------------------------------------------------- 1 | application/epub+zip 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/table.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Epub/Templates/toc.ncx.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Epub/Templates/toc.ncx.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/acknowledgement.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/afterword.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/appendix.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/appendix.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/author.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/book.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/book.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/chapter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/chapter.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/code.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/code.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/conclusion.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/cover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/cover.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/code.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/code.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/images.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/images.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/items.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/items.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/layout.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/layout.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/navigation.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/navigation.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/normalize.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/normalize.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/responsive.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/responsive.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/tables.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/tables.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/css/typography.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/css/typography.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/dedication.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/dedication.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/edition.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/epilogue.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/figure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/figure.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/foreword.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/glossary.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/introduction.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/item.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/item.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/license.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/lof.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/lof.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/lot.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/lot.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/part.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/part.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/preface.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/prologue.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/table.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/title.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/title.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Html/Templates/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Html/Templates/toc.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/chunk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/chunk.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/code.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/code.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/code.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/code.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/images.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/images.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/items.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/items.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/layout.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/layout.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/navigation.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/navigation.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/normalize.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/normalize.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/responsive.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/responsive.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/tables.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/tables.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/css/typography.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/css/typography.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/figure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/figure.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/index.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/layout.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/lof.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/lof.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/lot.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/lot.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/HtmlChunked/Templates/table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/HtmlChunked/Templates/table.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/chunk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/chunk.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/code.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/code.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/container.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/container.xml.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/content.opf.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/content.opf.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/cover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/cover.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/code.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/code.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/images.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/images.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/items.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/items.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/layout.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/layout.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/normalize.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/normalize.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/tables.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/tables.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/css/typography.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/css/typography.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/figure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/figure.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/layout.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/mimetype.twig: -------------------------------------------------------------------------------- 1 | application/epub+zip 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/table.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/toc.ncx.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/toc.ncx.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Mobi/Templates/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Mobi/Templates/toc.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/acknowledgement.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/afterword.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/appendix.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/appendix.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/author.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/book.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/book.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/chapter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/chapter.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/code.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/code.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/conclusion.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/cover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/cover.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/code.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/code.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/font_alte_haas_grotesk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/font_alte_haas_grotesk.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/font_inconsolata.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/font_inconsolata.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/font_neuton.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/font_neuton.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/font_open_sans.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/font_open_sans.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/font_tex_gyre_heros.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/font_tex_gyre_heros.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/images.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/images.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/items.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/items.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/layout.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/layout.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/normalize.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/normalize.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/tables.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/tables.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/css/typography.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/css/typography.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/dedication.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/dedication.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/edition.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/epilogue.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/figure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/figure.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/foreword.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/glossary.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/introduction.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/item.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/item.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/license.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/lof.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/lof.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/lot.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/lot.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/part.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/part.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/preface.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/prologue.twig: -------------------------------------------------------------------------------- 1 | {% extends '@theme_base/item.twig' %} 2 | -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/table.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/title.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/title.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Base/Pdf/Templates/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Base/Pdf/Templates/toc.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Epub/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Epub/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Epub/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Epub/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Epub/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Epub/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Epub/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Epub/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Html/Templates/book.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Html/Templates/book.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Html/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Html/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Html/Templates/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Html/Templates/toc.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Templates/chunk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Templates/chunk.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Templates/index.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Templates/layout.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/HtmlChunked/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/HtmlChunked/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Mobi/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Mobi/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Mobi/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Mobi/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Mobi/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Mobi/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Mobi/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Mobi/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Pdf/Contents/edition.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Pdf/Contents/edition.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Pdf/Contents/license.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Pdf/Contents/license.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Pdf/Contents/title.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Pdf/Contents/title.md.twig -------------------------------------------------------------------------------- /app/Resources/Themes/Clean/Pdf/Templates/style.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Themes/Clean/Pdf/Templates/style.css.twig -------------------------------------------------------------------------------- /app/Resources/Translations/labels.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.ca.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.de.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.en.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.es.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.eu.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.fr.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.it.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.nl.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.ro.yml -------------------------------------------------------------------------------- /app/Resources/Translations/labels.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/labels.zh.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.ca.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.de.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.en.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.es.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.eu.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.fr.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.it.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.nl.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.ro.yml -------------------------------------------------------------------------------- /app/Resources/Translations/titles.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/app/Resources/Translations/titles.zh.yml -------------------------------------------------------------------------------- /book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/book -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/composer.lock -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/01-publishing-your-first-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/01-publishing-your-first-book.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/02-book-contents-and-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/02-book-contents-and-configuration.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/03-editions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/03-editions.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/04-themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/04-themes.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/05-publishing-html-books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/05-publishing-html-books.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/06-publishing-epub-books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/06-publishing-epub-books.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/07-publishing-mobi-books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/07-publishing-mobi-books.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/08-publishing-pdf-books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/08-publishing-pdf-books.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/09-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/09-plugins.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/10-hacking-easybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/10-hacking-easybook.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/A-markdown-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/A-markdown-reference.md -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/images/syntax_highlighting_browser_vs_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/images/syntax_highlighting_browser_vs_app.png -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/images/syntax_highlighting_browser_vs_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/images/syntax_highlighting_browser_vs_ipad.png -------------------------------------------------------------------------------- /doc/easybook-doc-en/Contents/images/what_is_easybook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Contents/images/what_is_easybook.png -------------------------------------------------------------------------------- /doc/easybook-doc-en/Resources/Templates/easybook-project.org/chunk.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Resources/Templates/easybook-project.org/chunk.twig -------------------------------------------------------------------------------- /doc/easybook-doc-en/Resources/Templates/easybook-project.org/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Resources/Templates/easybook-project.org/index.twig -------------------------------------------------------------------------------- /doc/easybook-doc-en/Resources/Templates/ebook/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Resources/Templates/ebook/cover.jpg -------------------------------------------------------------------------------- /doc/easybook-doc-en/Resources/Templates/print/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Resources/Templates/print/cover.pdf -------------------------------------------------------------------------------- /doc/easybook-doc-en/Resources/Translations/labels.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/Resources/Translations/labels.en.yml -------------------------------------------------------------------------------- /doc/easybook-doc-en/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/doc/easybook-doc-en/config.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Easybook/Configurator/BookConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Configurator/BookConfigurator.php -------------------------------------------------------------------------------- /src/Easybook/Configurator/DefaultConfigurations/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Configurator/DefaultConfigurations/book.yml -------------------------------------------------------------------------------- /src/Easybook/Configurator/DefaultConfigurations/edition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Configurator/DefaultConfigurations/edition.yml -------------------------------------------------------------------------------- /src/Easybook/Console/Command/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/AboutCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/BaseCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/BookCustomizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/BookCustomizeCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/BookNewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/BookNewCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/BookPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/BookPublishCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/EasybookBenchmarkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/EasybookBenchmarkCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/EasybookVersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/EasybookVersionCommand.php -------------------------------------------------------------------------------- /src/Easybook/Console/Command/Resources/AboutCommandHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/Resources/AboutCommandHelp.txt -------------------------------------------------------------------------------- /src/Easybook/Console/Command/Resources/BookCustomizeCommandHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/Resources/BookCustomizeCommandHelp.txt -------------------------------------------------------------------------------- /src/Easybook/Console/Command/Resources/BookNewCommandHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/Resources/BookNewCommandHelp.txt -------------------------------------------------------------------------------- /src/Easybook/Console/Command/Resources/BookPublishCommandHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/Command/Resources/BookPublishCommandHelp.txt -------------------------------------------------------------------------------- /src/Easybook/Console/ConsoleApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Console/ConsoleApplication.php -------------------------------------------------------------------------------- /src/Easybook/DependencyInjection/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/DependencyInjection/Application.php -------------------------------------------------------------------------------- /src/Easybook/Events/BaseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Events/BaseEvent.php -------------------------------------------------------------------------------- /src/Easybook/Events/EasybookEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Events/EasybookEvents.php -------------------------------------------------------------------------------- /src/Easybook/Events/ParseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Events/ParseEvent.php -------------------------------------------------------------------------------- /src/Easybook/Generator/BookGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Generator/BookGenerator.php -------------------------------------------------------------------------------- /src/Easybook/Generator/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Generator/Generator.php -------------------------------------------------------------------------------- /src/Easybook/Parsers/EasybookMarkdownParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Parsers/EasybookMarkdownParser.php -------------------------------------------------------------------------------- /src/Easybook/Parsers/MarkdownParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Parsers/MarkdownParser.php -------------------------------------------------------------------------------- /src/Easybook/Parsers/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Parsers/ParserInterface.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/CodePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/CodePlugin.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/ImagePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/ImagePlugin.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/LinkPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/LinkPlugin.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/ParserPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/ParserPlugin.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/TablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/TablePlugin.php -------------------------------------------------------------------------------- /src/Easybook/Plugins/TimerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Plugins/TimerPlugin.php -------------------------------------------------------------------------------- /src/Easybook/Providers/CodeHighlighterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/CodeHighlighterServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/GeshiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/GeshiServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/KindleGenServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/KindleGenServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/ParserServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/ParserServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/PrinceXMLServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/PrinceXMLServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/PublisherServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/PublisherServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/SluggerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/SluggerServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Providers/TwigServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Providers/TwigServiceProvider.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/BasePublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/BasePublisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/Epub2Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/Epub2Publisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/HtmlChunkedPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/HtmlChunkedPublisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/HtmlPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/HtmlPublisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/MobiPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/MobiPublisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/PdfPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/PdfPublisher.php -------------------------------------------------------------------------------- /src/Easybook/Publishers/PublisherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Publishers/PublisherInterface.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Commands/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Commands/ApplicationTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Commands/BookCustomizeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Commands/BookCustomizeCommandTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Commands/BookNewCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Commands/BookNewCommandTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Commands/BookPublishCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Commands/BookPublishCommandTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Commands/fixtures/list_command_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Commands/fixtures/list_command_output.txt -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/BookConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/BookConfigurationTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/EasybookConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/EasybookConfigurationTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/dynamic/1_1_set_dynamic_options_via_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/dynamic/1_1_set_dynamic_options_via_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/dynamic/1_2_set_dynamic_options_via_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/dynamic/1_2_set_dynamic_options_via_command.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/dynamic/1_3_set_dynamic_options_via_command_and_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/dynamic/1_3_set_dynamic_options_via_command_and_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/dynamic/1_4_set_conflicting_dynamic_options_via_command_and_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/dynamic/1_4_set_conflicting_dynamic_options_via_command_and_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/easybook_configuration/custom_and_override_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/easybook_configuration/custom_and_override_configuration.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/easybook_configuration/custom_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/easybook_configuration/custom_configuration.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/easybook_configuration/no_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/easybook_configuration/no_configuration.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/easybook_configuration/override_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/easybook_configuration/override_configuration.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/1_no_configuration.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/1_no_configuration.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/2_1_set_options_via_defaults.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/2_1_set_options_via_defaults.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/2_2_set_options_via_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/2_2_set_options_via_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/2_3_set_options_via_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/2_3_set_options_via_command.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/2_4_1_set_options_via_command_and_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/2_4_1_set_options_via_command_and_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/2_4_2_set_conflicting_options_via_command_and_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/2_4_2_set_conflicting_options_via_command_and_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/3_1_set_custom_properties_via_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/3_1_set_custom_properties_via_file.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/3_2_set_custom_properties_via_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/3_2_set_custom_properties_via_command.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/3_3_1_set_custom_properties_via_file_and_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/3_3_1_set_custom_properties_via_file_and_command.test -------------------------------------------------------------------------------- /src/Easybook/Tests/Configurator/fixtures/static/3_3_2_set_conflicting_custom_properties_via_file_and_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Configurator/fixtures/static/3_3_2_set_conflicting_custom_properties_via_file_and_command.test -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/ApplicationTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/RenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/RenderTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/fixtures/highlight/input/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/fixtures/highlight/input/html.txt -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/fixtures/highlight/input/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/fixtures/highlight/input/php.txt -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/fixtures/highlight/output/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/fixtures/highlight/output/html.txt -------------------------------------------------------------------------------- /src/Easybook/Tests/DependencyInjection/fixtures/highlight/output/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/DependencyInjection/fixtures/highlight/output/php.txt -------------------------------------------------------------------------------- /src/Easybook/Tests/Events/BaseEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Events/BaseEventTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Events/ParseEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Events/ParseEventTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/MarkdownParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/MarkdownParserTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/LICENSE.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Admonitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Admonitions.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Heading ID Attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Heading ID Attributes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Heading Inner Markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Heading Inner Markup.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Image Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Image Alignment.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Page Breaks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-easybook/Page Breaks.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Amps and angle encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Amps and angle encoding.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Auto links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Auto links.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Backslash escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Backslash escapes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Blockquotes with code blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Blockquotes with code blocks.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Code Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Code Blocks.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Code Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Code Spans.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Hard-wrapped paragraphs with list-like lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Hard-wrapped paragraphs with list-like lines.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Horizontal rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Horizontal rules.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Images.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML (Advanced).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML (Advanced).html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML (Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML (Simple).html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Inline HTML comments.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, inline style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, inline style.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, reference style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, reference style.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, shortcut references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Links, shortcut references.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Literal quotes in titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Literal quotes in titles.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Markdown Documentation - Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Markdown Documentation - Basics.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Markdown Documentation - Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Markdown Documentation - Syntax.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Nested blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Nested blockquotes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Ordered and unordered lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Ordered and unordered lists.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Strong and em together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Strong and em together.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Tabs.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-original/Tidyness.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Abbr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Abbr.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Definition Lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Definition Lists.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Emphasis.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Fenced Code Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Fenced Code Blocks.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Footnotes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Inline HTML with Markdown content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Inline HTML with Markdown content.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php-extra/Tables.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Adjacent Lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Adjacent Lists.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Auto Links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Auto Links.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Backslash escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Backslash escapes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code Spans.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block in a list item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block in a list item.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block on second line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block on second line.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block regressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Code block regressions.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Email auto links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Email auto links.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Emphasis.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Empty List Item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Empty List Item.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Headers.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Horizontal Rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Horizontal Rules.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML (Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML (Simple).html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML (Span).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML (Span).html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Inline HTML comments.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Ins & del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Ins & del.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Links, inline style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Links, inline style.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/MD5 Hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/MD5 Hashes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Mixed OLs and ULs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Mixed OLs and ULs.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Nesting.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/PHP-Specific Bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/PHP-Specific Bugs.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Parens in URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Parens in URL.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Quotes in attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Quotes in attributes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Tight blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/Tight blocks.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/XML empty tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/expected/markdown-php/XML empty tag.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Admonitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Admonitions.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Heading ID Attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Heading ID Attributes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Heading Inner Markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Heading Inner Markup.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Image Alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Image Alignment.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Page Breaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-easybook/Page Breaks.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Amps and angle encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Amps and angle encoding.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Auto links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Auto links.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Backslash escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Backslash escapes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Blockquotes with code blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Blockquotes with code blocks.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Code Blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Code Blocks.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Code Spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Code Spans.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Hard-wrapped paragraphs with list-like lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Hard-wrapped paragraphs with list-like lines.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Horizontal rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Horizontal rules.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Images.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML (Advanced).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML (Advanced).md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML (Simple).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML (Simple).md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Inline HTML comments.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, inline style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, inline style.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, reference style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, reference style.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, shortcut references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Links, shortcut references.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Literal quotes in titles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Literal quotes in titles.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Markdown Documentation - Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Markdown Documentation - Basics.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Markdown Documentation - Syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Markdown Documentation - Syntax.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Nested blockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Nested blockquotes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Ordered and unordered lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Ordered and unordered lists.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Strong and em together.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Strong and em together.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Tabs.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Tidyness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-original/Tidyness.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Abbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Abbr.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Definition Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Definition Lists.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Emphasis.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Fenced Code Blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Fenced Code Blocks.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Footnotes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Inline HTML with Markdown content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Inline HTML with Markdown content.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php-extra/Tables.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Adjacent Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Adjacent Lists.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Auto Links.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Backslash escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Backslash escapes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code Spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code Spans.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code block in a list item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code block in a list item.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code block on second line.md: -------------------------------------------------------------------------------- 1 | 2 | Codeblock on second line 3 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code block regressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Code block regressions.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Email auto links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Email auto links.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Emphasis.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Empty List Item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Empty List Item.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Headers.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Horizontal Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Horizontal Rules.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML (Simple).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML (Simple).md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML (Span).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML (Span).md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Inline HTML comments.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Ins & del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Ins & del.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Links, inline style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Links, inline style.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/MD5 Hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/MD5 Hashes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Mixed OLs and ULs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Mixed OLs and ULs.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Nesting.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/PHP-Specific Bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/PHP-Specific Bugs.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Parens in URL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Parens in URL.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Quotes in attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Quotes in attributes.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Tight blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/Tight blocks.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Parsers/fixtures/input/markdown-php/XML empty tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Parsers/fixtures/input/markdown-php/XML empty tag.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/CodePluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/CodePluginTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/TablePluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/TablePluginTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/TimerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/TimerPluginTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_easybook_type_disabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_easybook_type_disabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_easybook_type_enabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_easybook_type_enabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_fenced_type_disabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_fenced_type_disabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_fenced_type_enabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_fenced_type_enabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_github_type_disabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_github_type_disabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/expected_github_type_enabled_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/expected_github_type_enabled_highlight.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/input_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/input_1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/input_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/input_2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/code/input_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/code/input_3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/expected_1_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/expected_1_1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/expected_1_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/expected_1_2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/expected_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/expected_2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/expected_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/expected_3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/input_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/input_1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/input_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/input_2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Plugins/fixtures/tables/input_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Plugins/fixtures/tables/input_3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/Epub2PublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/Epub2PublisherTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/HtmlChunkedPublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/HtmlChunkedPublisherTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/PdfPublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/PdfPublisherTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/PublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/PublisherTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/ebook/book.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/ebook/book.epub -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/web/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/web/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/web/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/web/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/web/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/chapter-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/book-configuration-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/book-configuration-options.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/creating-the-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/creating-the-book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/downloading-easybook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/downloading-easybook.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/publishing-the-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/publishing-the-book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/writing-the-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-1/writing-the-book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/content-types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/content-types.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/editions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/editions.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-2/themes.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3/advanced-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3/advanced-features.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/chapter-3/plugins.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/expected/website_chunked/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/chapter3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/input/Contents/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book1/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book1/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/web/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/web/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/web/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/web/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/web/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/chapter-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/expected/website/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/chapter3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Contents/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Resources/Translations/html_chunked/titles.en.yml: -------------------------------------------------------------------------------- 1 | title: 2 | toc: '** TaBLe oF CoNTeNTS **' 3 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/Resources/Translations/web/labels.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/input/Resources/Translations/web/labels.en.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book2/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book2/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_1/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_1/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_1/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/appendix-a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/appendix-a.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_2/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_3/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_3/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/expected/my_edition_3/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/chapter3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Contents/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/chapter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/chapter.twig -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/html/cover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/html/cover.twig -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/my_edition_3/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Templates/my_edition_3/toc.twig -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Translations/html_chunked/titles.en.yml: -------------------------------------------------------------------------------- 1 | title: 2 | toc: '** TaBLe oF CoNTeNTS **' 3 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Translations/web/labels.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/Resources/Translations/web/labels.en.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book3/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book3/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/expected/web/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/expected/web/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/expected/web/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/expected/web/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/expected/web/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/first/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/first/chapter1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/images/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/second/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/second/chapter2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/third/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/input/Contents/third/chapter3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/Resources/Plugins/ParserPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/input/Resources/Plugins/ParserPlugin.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book4/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book4/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/expected/web/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/expected/web/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/expected/web/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/expected/web/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/czech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/czech.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/greek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/greek.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/japanese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/japanese.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/latvian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/latvian.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/polish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/polish.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/russian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/russian.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/turkish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/turkish.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/ukrainian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/Contents/ukrainian.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book5/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book5/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/ebook/book.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/ebook/book.epub -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/web/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/web/book.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/web/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/web/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-1/duis-aute-irure-dolor-in-reprehenderit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-1/duis-aute-irure-dolor-in-reprehenderit.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2/duis-aute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2/duis-aute.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2/ut-enim-ad-minim-veniam-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-2/ut-enim-ad-minim-veniam-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3/lorem-ipsum-dolor-sit-amet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3/lorem-ipsum-dolor-sit-amet.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3/ut-enim-ad-minim-veniam-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/chapter-3/ut-enim-ad-minim-veniam-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_chunked/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-1.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-2.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/chapter-3.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/css/easybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/css/easybook.css -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/expected/website_not_chunked/book/index.html -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter1.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter2.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/input/Contents/chapter3.md -------------------------------------------------------------------------------- /src/Easybook/Tests/Publishers/fixtures/book6/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Publishers/fixtures/book6/input/config.yml -------------------------------------------------------------------------------- /src/Easybook/Tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/TestCase.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Util/CompressorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Util/CompressorTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Util/ToolkitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Util/ToolkitTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/Util/TwigCssExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/Util/TwigCssExtensionTest.php -------------------------------------------------------------------------------- /src/Easybook/Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Tests/bootstrap.php -------------------------------------------------------------------------------- /src/Easybook/Util/CodeHighlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/CodeHighlighter.php -------------------------------------------------------------------------------- /src/Easybook/Util/Compressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/Compressor.php -------------------------------------------------------------------------------- /src/Easybook/Util/Prince.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/Prince.php -------------------------------------------------------------------------------- /src/Easybook/Util/Toolkit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/Toolkit.php -------------------------------------------------------------------------------- /src/Easybook/Util/TwigCssExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/TwigCssExtension.php -------------------------------------------------------------------------------- /src/Easybook/Util/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiereguiluz/easybook/HEAD/src/Easybook/Util/Validator.php --------------------------------------------------------------------------------