├── .dockerignore ├── .gitignore ├── .idea ├── copyright │ ├── Apache_License__Version_2_0.xml │ └── profiles_settings.xml └── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.md ├── codenarc.groovy ├── doc ├── README.md ├── commands.md ├── config.groovy ├── configuration.md ├── extensions.md ├── gaiden-logo.png ├── getting-started.md ├── pages.groovy ├── theme.md └── themes │ └── default │ ├── assets │ └── css │ │ └── my.css │ └── layouts │ └── main.html ├── gaiden-core ├── build.gradle └── src │ ├── main │ ├── groovy │ │ ├── gaiden │ │ │ ├── BindingBuilder.groovy │ │ │ ├── CommandResolver.groovy │ │ │ ├── Document.groovy │ │ │ ├── DocumentBuilder.groovy │ │ │ ├── DocumentSource.groovy │ │ │ ├── DocumentWriter.groovy │ │ │ ├── Extension.groovy │ │ │ ├── Filter.groovy │ │ │ ├── FilterBuilder.groovy │ │ │ ├── GaidenApplication.groovy │ │ │ ├── GaidenConfig.groovy │ │ │ ├── GaidenMain.groovy │ │ │ ├── Header.groovy │ │ │ ├── Page.groovy │ │ │ ├── PageBuilder.groovy │ │ │ ├── PageReference.groovy │ │ │ ├── PageSource.groovy │ │ │ ├── PagesAstTransformation.groovy │ │ │ ├── PagesParser.groovy │ │ │ ├── SourceCollector.groovy │ │ │ ├── TemplateEngine.groovy │ │ │ ├── command │ │ │ │ ├── AbstractCommand.groovy │ │ │ │ ├── BuildCommand.groovy │ │ │ │ ├── CleanCommand.groovy │ │ │ │ ├── CreateProjectCommand.groovy │ │ │ │ ├── DistCommand.groovy │ │ │ │ ├── GaidenCommand.groovy │ │ │ │ ├── HelpCommand.groovy │ │ │ │ ├── InstallThemeCommand.groovy │ │ │ │ ├── UnknownCommand.groovy │ │ │ │ ├── UsageAwareCommand.groovy │ │ │ │ ├── VersionCommand.groovy │ │ │ │ ├── WatchCommand.groovy │ │ │ │ └── WrapperCommand.groovy │ │ │ ├── exception │ │ │ │ └── GaidenException.groovy │ │ │ ├── markdown │ │ │ │ ├── GaidenLinkRenderer.groovy │ │ │ │ ├── GaidenMarkdownProcessor.groovy │ │ │ │ ├── GaidenToHtmlSerializer.groovy │ │ │ │ ├── GaidenVerbatimSerializer.groovy │ │ │ │ ├── HeaderParser.groovy │ │ │ │ └── ImageRenderer.groovy │ │ │ ├── message │ │ │ │ └── MessageSource.groovy │ │ │ ├── server │ │ │ │ ├── EmbeddedHttpServer.groovy │ │ │ │ └── FileWatcher.groovy │ │ │ └── util │ │ │ │ ├── MarkdownUtils.groovy │ │ │ │ ├── PathUtils.groovy │ │ │ │ └── UrlUtils.groovy │ │ └── org │ │ │ └── pegdown │ │ │ ├── GaidenParser.java │ │ │ └── ast │ │ │ ├── GaidenExpImageNode.java │ │ │ ├── GaidenExpLinkNode.java │ │ │ ├── GaidenHeaderNode.java │ │ │ ├── GaidenReferenceNode.java │ │ │ ├── GaidenVerbatimNode.java │ │ │ ├── MarkdownInsideHtmlBlockNode.java │ │ │ └── SpecialAttributesNode.java │ └── resources │ │ ├── build-receipt.properties │ │ ├── logback.xml │ │ └── messages.properties │ └── test │ ├── groovy │ └── gaiden │ │ ├── BuildCommandSpec.groovy │ │ ├── CleanCommandSpec.groovy │ │ ├── CreateProjectCommandSpec.groovy │ │ ├── DistCommandSpec.groovy │ │ ├── FunctionalSpec.groovy │ │ ├── GaidenConfigSpec.groovy │ │ ├── GaidenSpec.groovy │ │ ├── InstallThemeCommandSpec.groovy │ │ └── VersionCommandSpec.groovy │ └── resources │ ├── test-project │ ├── PhpMarkdownExtra │ │ └── Inline_HTML_with_Markdown_content.md │ ├── README.md │ ├── assets │ │ └── image.png │ ├── build │ │ ├── PhpMarkdownExtra │ │ │ └── Inline_HTML_with_Markdown_content.html │ │ ├── assets │ │ │ └── image.png │ │ ├── chapter2 │ │ │ ├── index.html │ │ │ └── section1.html │ │ ├── chapter3 │ │ │ ├── index.html │ │ │ └── section1.html │ │ ├── codes.html │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── highlight.css │ │ │ ├── my.css │ │ │ └── style.css │ │ ├── extension.html │ │ ├── extensions │ │ │ └── test-extension │ │ │ │ ├── css │ │ │ │ └── extension.css │ │ │ │ ├── extension.png │ │ │ │ └── js │ │ │ │ └── extension.js │ │ ├── filter.html │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── headers │ │ │ └── index.html │ │ ├── home.html │ │ ├── images │ │ │ ├── image.jpg │ │ │ └── index.html │ │ ├── index.html │ │ ├── js │ │ │ ├── application.js │ │ │ ├── highlight.js │ │ │ ├── jquery-2.1.1.min.js │ │ │ └── my.js │ │ ├── links │ │ │ ├── index.html │ │ │ └── links.html │ │ ├── nav-holder.html │ │ ├── nav.html │ │ ├── specified-document-toc-depth.html │ │ ├── specified-page-toc-depth.html │ │ └── unnumbered.html │ ├── chapter2 │ │ ├── README.md │ │ └── section1.md │ ├── chapter3 │ │ ├── README.md │ │ └── section1.md │ ├── codes.md │ ├── config.groovy │ ├── extension.md │ ├── extensions │ │ └── test-extension │ │ │ ├── assets │ │ │ ├── css │ │ │ │ └── extension.css │ │ │ ├── extension.png │ │ │ └── js │ │ │ │ └── extension.js │ │ │ └── config.groovy │ ├── filter.md │ ├── headers │ │ └── README.md │ ├── home.md │ ├── images │ │ ├── README.md │ │ └── image.jpg │ ├── links │ │ ├── README.md │ │ └── links.md │ ├── nav-holder.md │ ├── nav.md │ ├── pages.groovy │ ├── specified-document-toc-depth.md │ ├── specified-page-toc-depth.md │ ├── themes │ │ └── default │ │ │ └── layouts │ │ │ ├── extension.html │ │ │ ├── filter.html │ │ │ ├── render.html │ │ │ └── simple.html │ └── unnumbered.md │ └── without-pages │ ├── 1_first.md │ ├── 2_second.md │ ├── 2_second │ └── 2_1_child.md │ ├── 3_third │ └── 3_1_child.md │ ├── 4_fourth.md │ └── build │ ├── 1_first.html │ ├── 2_second.html │ ├── 2_second │ └── 2_1_child.html │ ├── 3_third │ └── 3_1_child.html │ ├── 4_fourth.html │ ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── highlight.css │ ├── my.css │ └── style.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── js │ ├── application.js │ ├── highlight.js │ ├── jquery-2.1.1.min.js │ └── my.js ├── gaiden-wrapper ├── build.gradle └── src │ └── main │ ├── java │ └── gaiden │ │ ├── DownloadUtils.java │ │ ├── GaidenWrapper.java │ │ └── ZipUtils.java │ └── resources │ ├── build-receipt.properties │ └── gaiden-wrapper.properties ├── gradle.properties ├── gradle ├── codenarc.gradle ├── distribution.gradle ├── doc.gradle ├── git.gradle ├── sample.gradle ├── sdkman.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main └── dist │ ├── template │ ├── .gitignore │ ├── README.md │ ├── config.groovy │ └── pages.groovy │ └── themes │ └── default │ ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── highlight.css │ │ ├── my.css │ │ ├── print.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── application.js │ │ ├── highlight.js │ │ ├── jquery-2.1.1.min.js │ │ └── my.js │ └── layouts │ ├── content.html │ ├── documentToc.html │ ├── explorer.html │ ├── footer.html │ ├── header.html │ ├── main.html │ ├── navigation.html │ ├── pageToc.html │ └── sidebar.html └── sample └── sample-project ├── README.md ├── config.groovy ├── gaiden-logo.png ├── groovy-logo.png ├── markdown-syntax.md ├── misc.md ├── nest.md ├── nohead.md ├── pages.groovy └── themes └── default └── assets └── css └── my.css /.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/copyright/Apache_License__Version_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/.idea/copyright/Apache_License__Version_2_0.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: groovy 2 | jdk: 3 | - openjdk8 4 | script: ./gradlew test -i 5 | 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/README.md -------------------------------------------------------------------------------- /codenarc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/codenarc.groovy -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/commands.md -------------------------------------------------------------------------------- /doc/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/config.groovy -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/extensions.md -------------------------------------------------------------------------------- /doc/gaiden-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/gaiden-logo.png -------------------------------------------------------------------------------- /doc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/getting-started.md -------------------------------------------------------------------------------- /doc/pages.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/pages.groovy -------------------------------------------------------------------------------- /doc/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/theme.md -------------------------------------------------------------------------------- /doc/themes/default/assets/css/my.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/themes/default/assets/css/my.css -------------------------------------------------------------------------------- /doc/themes/default/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/doc/themes/default/layouts/main.html -------------------------------------------------------------------------------- /gaiden-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/build.gradle -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/BindingBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/BindingBuilder.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/CommandResolver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/CommandResolver.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/Document.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/Document.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/DocumentBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/DocumentBuilder.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/DocumentSource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/DocumentSource.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/DocumentWriter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/DocumentWriter.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/Extension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/Extension.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/Filter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/Filter.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/FilterBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/FilterBuilder.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/GaidenApplication.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/GaidenApplication.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/GaidenConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/GaidenConfig.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/GaidenMain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/GaidenMain.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/Header.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/Header.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/Page.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/Page.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/PageBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/PageBuilder.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/PageReference.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/PageReference.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/PageSource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/PageSource.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/PagesAstTransformation.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/PagesAstTransformation.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/PagesParser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/PagesParser.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/SourceCollector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/SourceCollector.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/TemplateEngine.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/TemplateEngine.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/AbstractCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/AbstractCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/BuildCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/BuildCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/CleanCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/CleanCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/CreateProjectCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/CreateProjectCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/DistCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/DistCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/GaidenCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/GaidenCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/HelpCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/HelpCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/InstallThemeCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/InstallThemeCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/UnknownCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/UnknownCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/UsageAwareCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/UsageAwareCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/VersionCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/VersionCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/WatchCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/WatchCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/command/WrapperCommand.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/command/WrapperCommand.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/exception/GaidenException.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/exception/GaidenException.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/GaidenLinkRenderer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/GaidenLinkRenderer.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/GaidenMarkdownProcessor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/GaidenMarkdownProcessor.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/GaidenToHtmlSerializer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/GaidenToHtmlSerializer.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/GaidenVerbatimSerializer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/GaidenVerbatimSerializer.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/HeaderParser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/HeaderParser.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/markdown/ImageRenderer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/markdown/ImageRenderer.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/message/MessageSource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/message/MessageSource.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/server/EmbeddedHttpServer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/server/EmbeddedHttpServer.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/server/FileWatcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/server/FileWatcher.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/util/MarkdownUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/util/MarkdownUtils.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/util/PathUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/util/PathUtils.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/gaiden/util/UrlUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/gaiden/util/UrlUtils.groovy -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/GaidenParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/GaidenParser.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/GaidenExpImageNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/GaidenExpImageNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/GaidenExpLinkNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/GaidenExpLinkNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/GaidenHeaderNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/GaidenHeaderNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/GaidenReferenceNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/GaidenReferenceNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/GaidenVerbatimNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/GaidenVerbatimNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/MarkdownInsideHtmlBlockNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/MarkdownInsideHtmlBlockNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/groovy/org/pegdown/ast/SpecialAttributesNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/groovy/org/pegdown/ast/SpecialAttributesNode.java -------------------------------------------------------------------------------- /gaiden-core/src/main/resources/build-receipt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/resources/build-receipt.properties -------------------------------------------------------------------------------- /gaiden-core/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/resources/logback.xml -------------------------------------------------------------------------------- /gaiden-core/src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/main/resources/messages.properties -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/BuildCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/BuildCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/CleanCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/CleanCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/CreateProjectCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/CreateProjectCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/DistCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/DistCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/FunctionalSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/FunctionalSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/GaidenConfigSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/GaidenConfigSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/GaidenSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/GaidenSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/InstallThemeCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/InstallThemeCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/groovy/gaiden/VersionCommandSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/groovy/gaiden/VersionCommandSpec.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/README.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/assets/image.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/assets/image.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/chapter2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/chapter2/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/chapter2/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/chapter2/section1.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/chapter3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/chapter3/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/chapter3/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/chapter3/section1.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/codes.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/css/bootstrap.min.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/css/font-awesome.min.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/css/highlight.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/css/my.css: -------------------------------------------------------------------------------- 1 | /* You can use my.css to override or append your style */ 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/css/style.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/extension.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/extensions/test-extension/css/extension.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/extensions/test-extension/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/extensions/test-extension/extension.png -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/extensions/test-extension/js/extension.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/filter.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/headers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/headers/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/home.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/images/image.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/images/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/js/application.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/js/highlight.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/js/my.js: -------------------------------------------------------------------------------- 1 | /* You can use my.js to override or append your code */ 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/links/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/links/index.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/links/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/links/links.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/nav-holder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/nav-holder.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/nav.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/specified-document-toc-depth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/specified-document-toc-depth.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/specified-page-toc-depth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/specified-page-toc-depth.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/build/unnumbered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/build/unnumbered.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/chapter2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/chapter2/README.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/chapter2/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/chapter2/section1.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/chapter3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/chapter3/README.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/chapter3/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/chapter3/section1.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/codes.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/config.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/extension.md: -------------------------------------------------------------------------------- 1 | # Extension Test 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/extensions/test-extension/assets/css/extension.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/extensions/test-extension/assets/css/extension.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/extensions/test-extension/assets/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/extensions/test-extension/assets/extension.png -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/extensions/test-extension/assets/js/extension.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/extensions/test-extension/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/extensions/test-extension/config.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/filter.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/headers/README.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/home.md: -------------------------------------------------------------------------------- 1 | # Home Page 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/images/README.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/images/image.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/links/README.md: -------------------------------------------------------------------------------- 1 | # Link Test Page -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/links/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/links/links.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/nav-holder.md: -------------------------------------------------------------------------------- 1 | # Nav Holder -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/nav.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/pages.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/pages.groovy -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/specified-document-toc-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/specified-document-toc-depth.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/specified-page-toc-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/specified-page-toc-depth.md -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/themes/default/layouts/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/themes/default/layouts/extension.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/themes/default/layouts/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/themes/default/layouts/filter.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/themes/default/layouts/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/themes/default/layouts/render.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/themes/default/layouts/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/test-project/themes/default/layouts/simple.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/test-project/unnumbered.md: -------------------------------------------------------------------------------- 1 | # Unnumbered Page 2 | 3 | ## Sub Header 4 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/1_first.md: -------------------------------------------------------------------------------- 1 | # First 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/2_second.md: -------------------------------------------------------------------------------- 1 | # Second 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/2_second/2_1_child.md: -------------------------------------------------------------------------------- 1 | # Second Child 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/3_third/3_1_child.md: -------------------------------------------------------------------------------- 1 | # Third 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/4_fourth.md: -------------------------------------------------------------------------------- 1 | # Third 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/1_first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/1_first.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/2_second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/2_second.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/2_second/2_1_child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/2_second/2_1_child.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/3_third/3_1_child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/3_third/3_1_child.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/4_fourth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/4_fourth.html -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/css/bootstrap.min.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/css/font-awesome.min.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/css/highlight.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/css/my.css: -------------------------------------------------------------------------------- 1 | /* You can use my.css to override or append your style */ 2 | -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/css/style.css -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/js/application.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/js/highlight.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-core/src/test/resources/without-pages/build/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /gaiden-core/src/test/resources/without-pages/build/js/my.js: -------------------------------------------------------------------------------- 1 | /* You can use my.js to override or append your code */ 2 | -------------------------------------------------------------------------------- /gaiden-wrapper/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/build.gradle -------------------------------------------------------------------------------- /gaiden-wrapper/src/main/java/gaiden/DownloadUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/src/main/java/gaiden/DownloadUtils.java -------------------------------------------------------------------------------- /gaiden-wrapper/src/main/java/gaiden/GaidenWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/src/main/java/gaiden/GaidenWrapper.java -------------------------------------------------------------------------------- /gaiden-wrapper/src/main/java/gaiden/ZipUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/src/main/java/gaiden/ZipUtils.java -------------------------------------------------------------------------------- /gaiden-wrapper/src/main/resources/build-receipt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/src/main/resources/build-receipt.properties -------------------------------------------------------------------------------- /gaiden-wrapper/src/main/resources/gaiden-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gaiden-wrapper/src/main/resources/gaiden-wrapper.properties -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/codenarc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/codenarc.gradle -------------------------------------------------------------------------------- /gradle/distribution.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/distribution.gradle -------------------------------------------------------------------------------- /gradle/doc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/doc.gradle -------------------------------------------------------------------------------- /gradle/git.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/git.gradle -------------------------------------------------------------------------------- /gradle/sample.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/sample.gradle -------------------------------------------------------------------------------- /gradle/sdkman.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/sdkman.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/dist/template/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /src/main/dist/template/README.md: -------------------------------------------------------------------------------- 1 | # Hello Gaiden! 2 | -------------------------------------------------------------------------------- /src/main/dist/template/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/template/config.groovy -------------------------------------------------------------------------------- /src/main/dist/template/pages.groovy: -------------------------------------------------------------------------------- 1 | "README.md" 2 | -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/css/highlight.css -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/my.css: -------------------------------------------------------------------------------- 1 | /* You can use my.css to override or append your style */ 2 | -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/css/print.css -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/css/style.css -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/js/application.js -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/js/highlight.js -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/assets/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /src/main/dist/themes/default/assets/js/my.js: -------------------------------------------------------------------------------- 1 | /* You can use my.js to override or append your code */ 2 | -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/content.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/documentToc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/documentToc.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/explorer.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/footer.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/header.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/main.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/navigation.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/pageToc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/pageToc.html -------------------------------------------------------------------------------- /src/main/dist/themes/default/layouts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/main/dist/themes/default/layouts/sidebar.html -------------------------------------------------------------------------------- /src/sample/sample-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/README.md -------------------------------------------------------------------------------- /src/sample/sample-project/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/config.groovy -------------------------------------------------------------------------------- /src/sample/sample-project/gaiden-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/gaiden-logo.png -------------------------------------------------------------------------------- /src/sample/sample-project/groovy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/groovy-logo.png -------------------------------------------------------------------------------- /src/sample/sample-project/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/markdown-syntax.md -------------------------------------------------------------------------------- /src/sample/sample-project/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/misc.md -------------------------------------------------------------------------------- /src/sample/sample-project/nest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/nest.md -------------------------------------------------------------------------------- /src/sample/sample-project/nohead.md: -------------------------------------------------------------------------------- 1 | This page has no head. 2 | -------------------------------------------------------------------------------- /src/sample/sample-project/pages.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/pages.groovy -------------------------------------------------------------------------------- /src/sample/sample-project/themes/default/assets/css/my.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobo/gaiden/HEAD/src/sample/sample-project/themes/default/assets/css/my.css --------------------------------------------------------------------------------