├── .backportrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yaml ├── dependabot.yaml └── workflows │ ├── backport.yaml │ ├── dependabot-review.yaml │ ├── documentation.yml │ ├── integrate.yaml │ └── sub-split.yaml ├── .gitignore ├── .gitpod.yml ├── .phive ├── composer-require-checker └── phars.xml ├── .yamllint.yaml ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.rst ├── app └── Dockerfile ├── composer-require-checker.json ├── composer.json ├── composer.lock ├── config.subsplit-publish.json ├── deptrac.packages.yaml ├── docs ├── _uml │ └── application-flow.puml ├── architecture.rst ├── cli │ ├── basic-config.xml │ ├── configuration.rst │ ├── extension-config.xml │ ├── first-docs.png │ └── index.rst ├── components │ ├── _renderer │ │ ├── _PlaintextRenderer.php │ │ └── _myextension.php │ ├── compiler.rst │ ├── guidesXml.rst │ ├── index.rst │ ├── parser.rst │ ├── renderer.rst │ └── spannode.puml ├── contributions │ ├── index.rst │ ├── monorepository-layout.rst │ └── writing-tests.rst ├── developers │ ├── compiler.rst │ ├── directive.rst │ ├── directive │ │ └── subdirective.php │ ├── extensions │ │ ├── _YourExtension.php │ │ ├── _composer.json │ │ ├── _your-extension.php │ │ ├── index.rst │ │ ├── structure.rst │ │ ├── templates.rst │ │ └── text-roles.rst │ └── index.rst ├── guides.xml ├── include.rst.txt ├── index.rst ├── installation.rst └── reference │ ├── index.rst │ ├── markdown │ └── index.rst │ └── restructuredtext │ ├── admonitions.rst │ ├── index.rst │ └── text-roles.rst ├── guides.xml ├── packages ├── dev-server │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ └── src │ │ ├── Internal │ │ ├── HttpHandler.php │ │ └── WebSocketHandler.php │ │ ├── Server.php │ │ ├── ServerFactory.php │ │ └── Watcher │ │ ├── FileModifiedEvent.php │ │ └── INotifyWatcher.php ├── filesystem │ ├── CONTRIBUTING.rst │ ├── Flysystem │ │ └── FilesystemInterface.php │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ └── src │ │ ├── FileNotFoundException.php │ │ ├── FileSystem.php │ │ ├── Finder │ │ ├── Exclude.php │ │ ├── SpecificationFactory.php │ │ └── SpecificationFactoryInterface.php │ │ ├── FlySystemAdapter.php │ │ ├── FlysystemV1 │ │ ├── FlysystemV1.php │ │ └── StorageAttributes.php │ │ ├── FlysystemV3 │ │ ├── FileAttributes.php │ │ └── FlysystemV3.php │ │ ├── MethodNotAllowedException.php │ │ ├── Path.php │ │ └── StorageAttributes.php ├── guides-cli │ ├── CONTRIBUTING.rst │ ├── README.rst │ ├── bin │ │ └── guides │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── services.php │ │ └── schema │ │ │ └── guides.xsd │ └── src │ │ ├── Application.php │ │ ├── Command │ │ ├── ProgressBarSubscriber.php │ │ ├── Run.php │ │ ├── Serve.php │ │ ├── SettingsBuilder.php │ │ └── WorkingDirectorySwitcher.php │ │ ├── Config │ │ ├── Configuration.php │ │ └── XmlFileLoader.php │ │ ├── DependencyInjection │ │ ├── ApplicationExtension.php │ │ └── ContainerFactory.php │ │ ├── DevServer │ │ └── RerenderListener.php │ │ ├── Internal │ │ ├── RunCommand.php │ │ └── RunCommandHandler.php │ │ └── Logger │ │ └── SpyProcessor.php ├── guides-code │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── guides-code.php │ │ └── template │ │ │ └── html │ │ │ └── body │ │ │ └── code │ │ │ └── highlighted-code.html.twig │ └── src │ │ └── Code │ │ ├── DependencyInjection │ │ └── CodeExtension.php │ │ ├── Highlighter │ │ ├── HighlightPhpHighlighter.php │ │ ├── HighlightResult.php │ │ └── Highlighter.php │ │ └── Twig │ │ └── CodeExtension.php ├── guides-graphs │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── guides-graphs.php │ │ └── template │ │ │ └── html │ │ │ └── body │ │ │ └── uml.html.twig │ └── src │ │ └── Graphs │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── GraphsExtension.php │ │ ├── Directives │ │ └── UmlDirective.php │ │ ├── Nodes │ │ └── UmlNode.php │ │ ├── Renderer │ │ ├── DiagramRenderer.php │ │ ├── PlantumlRenderer.php │ │ ├── PlantumlServerRenderer.php │ │ └── TestRenderer.php │ │ └── Twig │ │ └── UmlExtension.php ├── guides-markdown │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ └── config │ │ │ └── guides-markdown.php │ └── src │ │ └── Markdown │ │ ├── DependencyInjection │ │ └── MarkdownExtension.php │ │ ├── MarkupLanguageParser.php │ │ ├── NullNode.php │ │ ├── ParserException.php │ │ ├── ParserInterface.php │ │ └── Parsers │ │ ├── AbstractBlockParser.php │ │ ├── BlockQuoteParser.php │ │ ├── CodeBlockParser.php │ │ ├── FrontMatter │ │ ├── AuthorParser.php │ │ ├── Parser.php │ │ └── TitleParser.php │ │ ├── FrontMatterParser.php │ │ ├── HeaderParser.php │ │ ├── HtmlParser.php │ │ ├── InlineParsers │ │ ├── AbstractInlineParser.php │ │ ├── AbstractInlineTextDecoratorParser.php │ │ ├── EmphasisParser.php │ │ ├── InlineCodeParser.php │ │ ├── InlineImageParser.php │ │ ├── LinkParser.php │ │ ├── NewLineParser.php │ │ ├── PlainTextParser.php │ │ └── StrongParser.php │ │ ├── ListBlockParser.php │ │ ├── ListItemParser.php │ │ ├── ParagraphParser.php │ │ ├── SeparatorParser.php │ │ └── Table │ │ └── TableParser.php ├── guides-restructured-text │ ├── .github │ │ └── pull_request_template.md │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── guides-restructured-text.php │ │ └── template │ │ │ ├── html │ │ │ └── body │ │ │ │ ├── directive │ │ │ │ ├── confval.html.twig │ │ │ │ ├── glossary.html.twig │ │ │ │ ├── hlist.html.twig │ │ │ │ ├── not-found.html.twig │ │ │ │ ├── only.html.twig │ │ │ │ ├── option.html.twig │ │ │ │ ├── rubric.html.twig │ │ │ │ ├── topic.html.twig │ │ │ │ └── wrap.html.twig │ │ │ │ └── version-change.html.twig │ │ │ └── latex │ │ │ └── body │ │ │ └── directive │ │ │ ├── confval.tex.twig │ │ │ └── only.tex.twig │ └── src │ │ └── RestructuredText │ │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── TextRolePass.php │ │ └── ReStructuredTextExtension.php │ │ ├── Directives │ │ ├── AbstractAdmonitionDirective.php │ │ ├── AbstractVersionChangeDirective.php │ │ ├── ActionDirective.php │ │ ├── AdmonitionDirective.php │ │ ├── AttentionDirective.php │ │ ├── BaseDirective.php │ │ ├── BreadcrumbDirective.php │ │ ├── CautionDirective.php │ │ ├── ClassDirective.php │ │ ├── CodeBlockDirective.php │ │ ├── ConfigurationBlockDirective.php │ │ ├── ConfvalDirective.php │ │ ├── ContainerDirective.php │ │ ├── ContentsDirective.php │ │ ├── CsvTableDirective.php │ │ ├── DangerDirective.php │ │ ├── DefaultRoleDirective.php │ │ ├── DeprecatedDirective.php │ │ ├── DocumentBlockDirective.php │ │ ├── EpigraphDirective.php │ │ ├── ErrorDirective.php │ │ ├── FigureDirective.php │ │ ├── GeneralDirective.php │ │ ├── HighlightDirective.php │ │ ├── HighlightsDirective.php │ │ ├── HintDirective.php │ │ ├── ImageDirective.php │ │ ├── ImportantDirective.php │ │ ├── IncludeDirective.php │ │ ├── IndexDirective.php │ │ ├── LaTeXMain.php │ │ ├── ListTableDirective.php │ │ ├── LiteralincludeDirective.php │ │ ├── MathDirective.php │ │ ├── MenuDirective.php │ │ ├── MetaDirective.php │ │ ├── NoteDirective.php │ │ ├── OptionDirective.php │ │ ├── OptionMapper │ │ │ ├── CodeNodeOptionMapper.php │ │ │ └── DefaultCodeNodeOptionMapper.php │ │ ├── PullQuoteDirective.php │ │ ├── RawDirective.php │ │ ├── ReplaceDirective.php │ │ ├── RoleDirective.php │ │ ├── SectionauthorDirective.php │ │ ├── SeeAlsoDirective.php │ │ ├── SidebarDirective.php │ │ ├── SubDirective.php │ │ ├── TableDirective.php │ │ ├── TestLoggerDirective.php │ │ ├── TipDirective.php │ │ ├── TitleDirective.php │ │ ├── ToctreeDirective.php │ │ ├── TodoDirective.php │ │ ├── VersionAddedDirective.php │ │ ├── VersionChangedDirective.php │ │ ├── WarningDirective.php │ │ └── YoutubeDirective.php │ │ ├── MarkupLanguageParser.php │ │ ├── NodeRenderers │ │ ├── Html │ │ │ ├── AdmonitionNodeRenderer.php │ │ │ ├── CollectionNodeRenderer.php │ │ │ ├── ContainerNodeRenderer.php │ │ │ ├── GeneralDirectiveNodeRenderer.php │ │ │ ├── SidebarNodeRenderer.php │ │ │ └── TopicNodeRenderer.php │ │ └── LaTeX │ │ │ └── GeneralDirectiveNodeRenderer.php │ │ ├── Nodes │ │ ├── AdmonitionNode.php │ │ ├── ConfvalNode.php │ │ ├── ContainerNode.php │ │ ├── GeneralDirectiveNode.php │ │ ├── OptionNode.php │ │ ├── SidebarNode.php │ │ ├── TopicNode.php │ │ └── VersionChangeNode.php │ │ ├── Parser │ │ ├── AnnotationUtility.php │ │ ├── BlockContext.php │ │ ├── Buffer.php │ │ ├── Directive.php │ │ ├── DirectiveOption.php │ │ ├── DocumentParserContext.php │ │ ├── DocumentParserContextFactory.php │ │ ├── InlineLexer.php │ │ ├── InlineParser.php │ │ ├── Interlink │ │ │ ├── DefaultInterlinkParser.php │ │ │ ├── InterlinkData.php │ │ │ └── InterlinkParser.php │ │ ├── LineChecker.php │ │ ├── LinesIterator.php │ │ ├── Productions │ │ │ ├── AnnotationRule.php │ │ │ ├── BlockQuoteRule.php │ │ │ ├── CommentRule.php │ │ │ ├── DefinitionListRule.php │ │ │ ├── DirectiveContentRule.php │ │ │ ├── DirectiveRule.php │ │ │ ├── DocumentRule.php │ │ │ ├── EnumeratedListRule.php │ │ │ ├── FieldList │ │ │ │ ├── AbstractFieldListItemRule.php │ │ │ │ ├── AddressFieldListItemRule.php │ │ │ │ ├── AuthorFieldListItemRule.php │ │ │ │ ├── AuthorsFieldListItemRule.php │ │ │ │ ├── ContactFieldListItemRule.php │ │ │ │ ├── CopyrightFieldListItemRule.php │ │ │ │ ├── DateFieldListItemRule.php │ │ │ │ ├── DedicationFieldListItemRule.php │ │ │ │ ├── FieldListItemRule.php │ │ │ │ ├── NavigationTitleFieldListItemRule.php │ │ │ │ ├── NocommentsFieldListItemRule.php │ │ │ │ ├── NosearchFieldListItemRule.php │ │ │ │ ├── OrganizationFieldListItemRule.php │ │ │ │ ├── OrphanFieldListItemRule.php │ │ │ │ ├── ProjectFieldListItemRule.php │ │ │ │ ├── RevisionFieldListItemRule.php │ │ │ │ ├── TocDepthFieldListItemRule.php │ │ │ │ └── VersionFieldListItemRule.php │ │ │ ├── FieldListRule.php │ │ │ ├── GridTableRule.php │ │ │ ├── InlineMarkupRule.php │ │ │ ├── InlineRules │ │ │ │ ├── AbstractInlineRule.php │ │ │ │ ├── AnnotationRoleRule.php │ │ │ │ ├── AnonymousPhraseRule.php │ │ │ │ ├── AnonymousReferenceRule.php │ │ │ │ ├── CachableInlineRule.php │ │ │ │ ├── DefaultTextRoleRule.php │ │ │ │ ├── EmphasisRule.php │ │ │ │ ├── EscapeRule.php │ │ │ │ ├── InlineRule.php │ │ │ │ ├── InternalReferenceRule.php │ │ │ │ ├── LiteralRule.php │ │ │ │ ├── NamedPhraseRule.php │ │ │ │ ├── NamedReferenceRule.php │ │ │ │ ├── NbspRule.php │ │ │ │ ├── PlainTextRule.php │ │ │ │ ├── ReferenceRule.php │ │ │ │ ├── StandaloneEmailRule.php │ │ │ │ ├── StandaloneHyperlinkRule.php │ │ │ │ ├── StrongRule.php │ │ │ │ ├── TextRoleRule.php │ │ │ │ └── VariableInlineRule.php │ │ │ ├── LineBlockRule.php │ │ │ ├── LinkRule.php │ │ │ ├── ListRule.php │ │ │ ├── LiteralBlockRule.php │ │ │ ├── ParagraphRule.php │ │ │ ├── Rule.php │ │ │ ├── RuleContainer.php │ │ │ ├── SectionRule.php │ │ │ ├── SimpleTableRule.php │ │ │ ├── Table │ │ │ │ ├── GridTableBuilder.php │ │ │ │ ├── ParserContext.php │ │ │ │ └── TableSeparatorLineConfig.php │ │ │ ├── TitleRule.php │ │ │ └── TransitionRule.php │ │ ├── Reference │ │ │ └── ReferenceData.php │ │ ├── References │ │ │ ├── EmbeddedReferenceParser.php │ │ │ └── ReferenceData.php │ │ └── UnindentStrategy.php │ │ ├── TextRoles │ │ ├── AbbreviationTextRole.php │ │ ├── AbstractReferenceTextRole.php │ │ ├── ApiClassTextRole.php │ │ ├── BaseTextRole.php │ │ ├── DefaultTextRoleFactory.php │ │ ├── DocReferenceTextRole.php │ │ ├── GenericLinkProvider.php │ │ ├── GenericReferenceTextRole.php │ │ ├── GenericTextRole.php │ │ ├── LiteralTextRole.php │ │ ├── MathTextRole.php │ │ ├── ReferenceTextRole.php │ │ ├── SpanTextRole.php │ │ ├── TextRole.php │ │ └── TextRoleFactory.php │ │ └── Toc │ │ ├── GlobSearcher.php │ │ └── ToctreeBuilder.php ├── guides-theme-bootstrap │ ├── .github │ │ └── pull_request_template.md │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── guides-theme-bootstrap.php │ │ └── template │ │ │ ├── body │ │ │ ├── admonition.html.twig │ │ │ ├── admonitions │ │ │ │ ├── caution.html.twig │ │ │ │ ├── important.html.twig │ │ │ │ ├── note.html.twig │ │ │ │ ├── seealso.html.twig │ │ │ │ ├── tip.html.twig │ │ │ │ └── warning.html.twig │ │ │ ├── directive │ │ │ │ ├── accordion.html.twig │ │ │ │ ├── card-grid.html.twig │ │ │ │ ├── card-group.html.twig │ │ │ │ ├── card.html.twig │ │ │ │ ├── card │ │ │ │ │ └── card-image.html.twig │ │ │ │ ├── tab.html.twig │ │ │ │ ├── tabs.html.twig │ │ │ │ └── tabs │ │ │ │ │ ├── tabs-body.html.twig │ │ │ │ │ └── tabs-button.html.twig │ │ │ └── menu │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ ├── mainmenu │ │ │ │ ├── menu-level.html.twig │ │ │ │ └── menu.html.twig │ │ │ │ ├── menu.html.twig │ │ │ │ └── navbar │ │ │ │ ├── menu-level.html.twig │ │ │ │ └── table-of-content.html.twig │ │ │ └── structure │ │ │ ├── document.html.twig │ │ │ ├── layout.html.twig │ │ │ └── navigation │ │ │ ├── menu_doc.html.twig │ │ │ └── navbar.html.twig │ └── src │ │ └── Bootstrap │ │ ├── DependencyInjection │ │ └── BootstrapExtension.php │ │ ├── Directives │ │ ├── AccordionDirective.php │ │ ├── AccordionItemDirective.php │ │ ├── CardDirective.php │ │ ├── CardFooterDirective.php │ │ ├── CardGridDirective.php │ │ ├── CardGroupDirective.php │ │ ├── CardHeaderDirective.php │ │ ├── CardImageDirective.php │ │ ├── TabDirective.php │ │ └── TabsDirective.php │ │ └── Nodes │ │ ├── AbstractTabNode.php │ │ ├── AccordionItemNode.php │ │ ├── AccordionNode.php │ │ ├── Card │ │ ├── CardFooterNode.php │ │ ├── CardHeaderNode.php │ │ └── CardImageNode.php │ │ ├── CardGridNode.php │ │ ├── CardGroupNode.php │ │ ├── CardNode.php │ │ ├── TabNode.php │ │ └── TabsNode.php ├── guides-theme-rst │ ├── .github │ │ └── pull_request_template.md │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ │ ├── config │ │ │ └── guides-theme-rst.php │ │ └── template │ │ │ └── rst │ │ │ ├── body │ │ │ ├── code.rst.twig │ │ │ ├── list │ │ │ │ └── list.rst.twig │ │ │ ├── paragraph.rst.twig │ │ │ ├── quote.rst.twig │ │ │ ├── separator.rst.twig │ │ │ └── table.rst.twig │ │ │ ├── guides │ │ │ ├── inline │ │ │ │ ├── br.rst.twig │ │ │ │ ├── emphasis.rst.twig │ │ │ │ ├── link.rst.twig │ │ │ │ ├── literal.rst.twig │ │ │ │ ├── nbsp.rst.twig │ │ │ │ └── strong-emphasis.rst.twig │ │ │ └── structure │ │ │ │ └── header │ │ │ │ ├── meta.rst.twig │ │ │ │ └── title.rst.twig │ │ │ ├── inline │ │ │ ├── emphasis.rst.twig │ │ │ ├── image.rst.twig │ │ │ ├── inline-node.rst.twig │ │ │ ├── link.rst.twig │ │ │ ├── literal.rst.twig │ │ │ ├── plain-text.rst.twig │ │ │ └── strong.rst.twig │ │ │ ├── structure │ │ │ ├── document.rst.twig │ │ │ ├── header-title.rst.twig │ │ │ ├── project.rst.twig │ │ │ └── section.rst.twig │ │ │ └── template.php │ └── src │ │ └── RstTheme │ │ ├── Configuration │ │ └── HeaderSyntax.php │ │ ├── DependencyInjection │ │ └── RstThemeExtension.php │ │ ├── Renderer │ │ └── RstRenderer.php │ │ └── Twig │ │ └── RstExtension.php └── guides │ ├── CONTRIBUTING.rst │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── resources │ ├── config │ │ ├── command_bus.php │ │ └── guides.php │ └── template │ │ ├── html │ │ ├── body │ │ │ ├── admonition.html.twig │ │ │ ├── annotation-list.html.twig │ │ │ ├── author.html.twig │ │ │ ├── citation.html.twig │ │ │ ├── code.html.twig │ │ │ ├── code │ │ │ │ └── highlighted-code.html.twig │ │ │ ├── collection.html.twig │ │ │ ├── configuration-block.html.twig │ │ │ ├── container.html.twig │ │ │ ├── definition-list.html.twig │ │ │ ├── definition.html.twig │ │ │ ├── embedded-frame.html.twig │ │ │ ├── field-list.html.twig │ │ │ ├── figure.html.twig │ │ │ ├── footnote.html.twig │ │ │ ├── image.html.twig │ │ │ ├── list │ │ │ │ ├── list-item.html.twig │ │ │ │ └── list.html.twig │ │ │ ├── literal-block.html.twig │ │ │ ├── math.html.twig │ │ │ ├── menu │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ ├── content-menu.html.twig │ │ │ │ ├── menu-item-link.html.twig │ │ │ │ ├── menu-item.html.twig │ │ │ │ ├── menu-level.html.twig │ │ │ │ ├── menu.html.twig │ │ │ │ └── table-of-content.html.twig │ │ │ ├── paragraph.html.twig │ │ │ ├── quote.html.twig │ │ │ ├── separator.html.twig │ │ │ ├── table.html.twig │ │ │ ├── table │ │ │ │ ├── table-body.html.twig │ │ │ │ ├── table-caption.html.twig │ │ │ │ ├── table-cell.html.twig │ │ │ │ ├── table-classes.html.twig │ │ │ │ ├── table-colgroups.html.twig │ │ │ │ ├── table-header.html.twig │ │ │ │ ├── table-inline-style.html.twig │ │ │ │ └── table-row.html.twig │ │ │ └── topic.html.twig │ │ ├── inline │ │ │ ├── anchor.html.twig │ │ │ ├── citation.html.twig │ │ │ ├── doc.html.twig │ │ │ ├── emphasis.html.twig │ │ │ ├── footnote.html.twig │ │ │ ├── image.html.twig │ │ │ ├── inline-node.html.twig │ │ │ ├── link.html.twig │ │ │ ├── literal.html.twig │ │ │ ├── nbsp.html.twig │ │ │ ├── newline.html.twig │ │ │ ├── plain-text.html.twig │ │ │ ├── ref.html.twig │ │ │ ├── strong.html.twig │ │ │ ├── textroles │ │ │ │ ├── abbreviation.html.twig │ │ │ │ ├── aspect.html.twig │ │ │ │ ├── br.html.twig │ │ │ │ ├── code.html.twig │ │ │ │ ├── command.html.twig │ │ │ │ ├── dfn.html.twig │ │ │ │ ├── emphasis.html.twig │ │ │ │ ├── file.html.twig │ │ │ │ ├── generic.html.twig │ │ │ │ ├── guilabel.html.twig │ │ │ │ ├── kbd.html.twig │ │ │ │ ├── literal.html.twig │ │ │ │ ├── mailheader.html.twig │ │ │ │ ├── math.html.twig │ │ │ │ ├── span.html.twig │ │ │ │ ├── strong.html.twig │ │ │ │ ├── sub.html.twig │ │ │ │ ├── subscript.html.twig │ │ │ │ ├── sup.html.twig │ │ │ │ ├── superscript.html.twig │ │ │ │ ├── t.html.twig │ │ │ │ ├── title-reference.html.twig │ │ │ │ ├── title.html.twig │ │ │ │ └── unknown.html.twig │ │ │ └── variable.html.twig │ │ ├── structure │ │ │ ├── document.html.twig │ │ │ ├── footer.html.twig │ │ │ ├── header-title.html.twig │ │ │ ├── header │ │ │ │ ├── author.html.twig │ │ │ │ ├── blank.html.twig │ │ │ │ ├── copyright.html.twig │ │ │ │ ├── date.html.twig │ │ │ │ ├── favicon.html.twig │ │ │ │ ├── javascript.html.twig │ │ │ │ ├── meta.html.twig │ │ │ │ ├── no-search.html.twig │ │ │ │ ├── stylesheet-link.html.twig │ │ │ │ └── topic.html.twig │ │ │ ├── layout.html.twig │ │ │ ├── section.html.twig │ │ │ └── sidebar.html.twig │ │ └── template.php │ │ └── tex │ │ ├── body │ │ ├── anchor.tex.twig │ │ ├── code.tex.twig │ │ ├── image.tex.twig │ │ ├── list │ │ │ ├── list-item.tex.twig │ │ │ └── list.tex.twig │ │ ├── paragraph.tex.twig │ │ ├── quote.tex.twig │ │ ├── separator.tex.twig │ │ └── toc │ │ │ └── toc.tex.twig │ │ ├── guides │ │ ├── inline │ │ │ ├── br.tex.twig │ │ │ ├── emphasis.tex.twig │ │ │ ├── link.tex.twig │ │ │ ├── literal.tex.twig │ │ │ ├── nbsp.tex.twig │ │ │ └── strong-emphasis.tex.twig │ │ └── structure │ │ │ └── header │ │ │ ├── meta.tex.twig │ │ │ └── title.tex.twig │ │ ├── inline │ │ ├── inline-node.tex.twig │ │ ├── literal.tex.twig │ │ ├── plain-text.tex.twig │ │ └── textroles │ │ │ ├── generic.tex.twig │ │ │ └── unknown.tex.twig │ │ ├── structure │ │ ├── document.tex.twig │ │ ├── header-title.tex.twig │ │ ├── project.tex.twig │ │ └── section.tex.twig │ │ └── template.php │ └── src │ ├── Compiler │ ├── Compiler.php │ ├── CompilerContext.php │ ├── CompilerContextInterface.php │ ├── CompilerPass.php │ ├── DocumentNodeTraverser.php │ ├── NodeTransformer.php │ ├── NodeTransformers │ │ ├── CitationInlineNodeTransformer.php │ │ ├── CitationTargetTransformer.php │ │ ├── ClassNodeTransformer.php │ │ ├── CollectLinkTargetsTransformer.php │ │ ├── CustomNodeTransformerFactory.php │ │ ├── DocumentBlockNodeTransformer.php │ │ ├── DocumentEntryRegistrationTransformer.php │ │ ├── FootNodeNamedTransformer.php │ │ ├── FootNodeNumberedTransformer.php │ │ ├── FootnoteInlineNodeTransformer.php │ │ ├── ListNodeTransformer.php │ │ ├── MenuNodeTransformers │ │ │ ├── AbstractMenuEntryNodeTransformer.php │ │ │ ├── ContentsMenuEntryNodeTransformer.php │ │ │ ├── ExternalMenuEntryNodeTransformer.php │ │ │ ├── GlobMenuEntryNodeTransformer.php │ │ │ ├── InternalMenuEntryNodeTransformer.php │ │ │ ├── MenuEntryManagement.php │ │ │ ├── SubInternalMenuEntryNodeTransformer.php │ │ │ ├── SubSectionHierarchyHandler.php │ │ │ ├── TocNodeReplacementTransformer.php │ │ │ ├── TocNodeTransformer.php │ │ │ └── ToctreeSortingTransformer.php │ │ ├── MoveAnchorTransformer.php │ │ ├── NodeTransformerFactory.php │ │ ├── RawNodeEscapeTransformer.php │ │ ├── SectionCreationTransformer.php │ │ ├── SectionEntryRegistrationTransformer.php │ │ ├── TransformerPass.php │ │ └── VariableInlineNodeTransformer.php │ ├── Passes │ │ ├── AutomaticMenuPass.php │ │ ├── GlobalMenuPass.php │ │ ├── ImplicitHyperlinkTargetPass.php │ │ └── ToctreeValidationPass.php │ └── ShadowTree │ │ └── TreeNode.php │ ├── DependencyInjection │ ├── CommandLocator.php │ ├── Compiler │ │ ├── NodeRendererPass.php │ │ ├── ParserRulesPass.php │ │ └── RendererPass.php │ ├── GuidesExtension.php │ └── TestExtension.php │ ├── Event │ ├── ModifyDocumentEntryAdditionalData.php │ ├── PostCollectFilesForParsingEvent.php │ ├── PostParseDocument.php │ ├── PostParseProcess.php │ ├── PostProjectNodeCreated.php │ ├── PostRenderDocument.php │ ├── PostRenderProcess.php │ ├── PreParseDocument.php │ ├── PreParseProcess.php │ ├── PreRenderDocument.php │ └── PreRenderProcess.php │ ├── EventListener │ └── LoadSettingsFromComposer.php │ ├── Exception │ ├── DocumentEntryNotFound.php │ ├── DuplicateLinkAnchorException.php │ └── InvalidTableStructure.php │ ├── FileCollector.php │ ├── Files.php │ ├── Handlers │ ├── CompileDocumentsCommand.php │ ├── CompileDocumentsHandler.php │ ├── LoadCacheCommand.php │ ├── LoadCacheHandler.php │ ├── ParseDirectoryCommand.php │ ├── ParseDirectoryHandler.php │ ├── ParseFileCommand.php │ ├── ParseFileHandler.php │ ├── PersistCacheCommand.php │ ├── PersistCacheHandler.php │ ├── RenderCommand.php │ ├── RenderDocumentCommand.php │ ├── RenderDocumentHandler.php │ └── RenderHandler.php │ ├── MarkupLanguageParser.php │ ├── Meta │ ├── AnnotationTarget.php │ ├── CitationTarget.php │ ├── ExternalTarget.php │ ├── FootnoteTarget.php │ ├── InternalTarget.php │ └── Target.php │ ├── NodeRenderers │ ├── DefaultNodeRenderer.php │ ├── DelegatingNodeRenderer.php │ ├── Html │ │ ├── AdmonitionNodeRenderer.php │ │ ├── BreadCrumbNodeRenderer.php │ │ ├── DocumentNodeRenderer.php │ │ ├── MenuEntryRenderer.php │ │ ├── MenuNodeRenderer.php │ │ └── TableNodeRenderer.php │ ├── InMemoryNodeRendererFactory.php │ ├── LaTeX │ │ ├── TableNodeRenderer.php │ │ ├── TitleNodeRenderer.php │ │ └── TocNodeRenderer.php │ ├── LazyNodeRendererFactory.php │ ├── NodeRenderer.php │ ├── NodeRendererFactory.php │ ├── NodeRendererFactoryAware.php │ ├── OutputAwareDelegatingNodeRenderer.php │ ├── PreRenderers │ │ ├── PreNodeRenderer.php │ │ ├── PreNodeRendererFactory.php │ │ └── PreRenderer.php │ └── TemplateNodeRenderer.php │ ├── Nodes │ ├── AbstractNode.php │ ├── AdmonitionNode.php │ ├── AnchorNode.php │ ├── AnnotationListNode.php │ ├── AnnotationNode.php │ ├── AuthorNode.php │ ├── BreadCrumbNode.php │ ├── CitationNode.php │ ├── ClassNode.php │ ├── CodeNode.php │ ├── CollectionNode.php │ ├── CompoundNode.php │ ├── Configuration │ │ ├── ConfigurationBlockNode.php │ │ └── ConfigurationTab.php │ ├── DefinitionListNode.php │ ├── DefinitionLists │ │ ├── DefinitionListItemNode.php │ │ └── DefinitionNode.php │ ├── DocumentBlockNode.php │ ├── DocumentNode.php │ ├── DocumentTree │ │ ├── DocumentEntryNode.php │ │ ├── EntryNode.php │ │ ├── ExternalEntryNode.php │ │ └── SectionEntryNode.php │ ├── EmbeddedFrame.php │ ├── FieldListNode.php │ ├── FieldLists │ │ └── FieldListItemNode.php │ ├── FigureNode.php │ ├── FootnoteNode.php │ ├── GenericNode.php │ ├── ImageNode.php │ ├── Inline │ │ ├── AbbreviationInlineNode.php │ │ ├── AbstractLinkInlineNode.php │ │ ├── AnnotationInlineNode.php │ │ ├── BCInlineNodeBehavior.php │ │ ├── CitationInlineNode.php │ │ ├── CrossReferenceNode.php │ │ ├── DocReferenceNode.php │ │ ├── EmphasisInlineNode.php │ │ ├── FootnoteInlineNode.php │ │ ├── GenericTextRoleInlineNode.php │ │ ├── HyperLinkNode.php │ │ ├── ImageInlineNode.php │ │ ├── InlineNode.php │ │ ├── InlineNodeInterface.php │ │ ├── LinkInlineNode.php │ │ ├── LiteralInlineNode.php │ │ ├── NewlineInlineNode.php │ │ ├── PlainTextInlineNode.php │ │ ├── ReferenceNode.php │ │ ├── StrongInlineNode.php │ │ ├── VariableInlineNode.php │ │ └── WhitespaceInlineNode.php │ ├── InlineCompoundNode.php │ ├── LinkTargetNode.php │ ├── Links │ │ ├── InvalidLink.php │ │ └── Link.php │ ├── ListItemNode.php │ ├── ListNode.php │ ├── Lists │ │ └── ListItem.php │ ├── LiteralBlockNode.php │ ├── MainNode.php │ ├── MathNode.php │ ├── Menu │ │ ├── ContentMenuNode.php │ │ ├── ExternalMenuEntryNode.php │ │ ├── GlobMenuEntryNode.php │ │ ├── InternalMenuEntryNode.php │ │ ├── MenuDefinitionLineNode.php │ │ ├── MenuEntryNode.php │ │ ├── MenuNode.php │ │ ├── NavMenuNode.php │ │ ├── SectionMenuEntryNode.php │ │ └── TocNode.php │ ├── Metadata │ │ ├── AddressNode.php │ │ ├── AuthorNode.php │ │ ├── AuthorsNode.php │ │ ├── ContactNode.php │ │ ├── CopyrightNode.php │ │ ├── DateNode.php │ │ ├── MetaNode.php │ │ ├── MetadataNode.php │ │ ├── NavigationTitleNode.php │ │ ├── NoCommentsNode.php │ │ ├── NoSearchNode.php │ │ ├── OrganizationNode.php │ │ ├── OrphanNode.php │ │ ├── RevisionNode.php │ │ ├── TocDepthNode.php │ │ ├── TopicNode.php │ │ └── VersionNode.php │ ├── MultipleLinkTargetsNode.php │ ├── Node.php │ ├── OptionalLinkTargetsNode.php │ ├── ParagraphNode.php │ ├── PrefixedLinkTargetNode.php │ ├── ProjectNode.php │ ├── QuoteNode.php │ ├── RawNode.php │ ├── ReplacementNode.php │ ├── SectionNode.php │ ├── SeparatorNode.php │ ├── SpanNode.php │ ├── Table │ │ ├── TableColumn.php │ │ └── TableRow.php │ ├── TableNode.php │ ├── TextNode.php │ └── TitleNode.php │ ├── Parser.php │ ├── ParserContext.php │ ├── ReferenceResolvers │ ├── AnchorHyperlinkResolver.php │ ├── AnchorNormalizer.php │ ├── AnchorReferenceResolver.php │ ├── DelegatingReferenceResolver.php │ ├── DocReferenceResolver.php │ ├── DocumentNameResolver.php │ ├── DocumentNameResolverInterface.php │ ├── EmailReferenceResolver.php │ ├── ExternalReferenceResolver.php │ ├── ImageReferenceResolverPreRender.php │ ├── Interlink │ │ ├── DefaultInventoryLoader.php │ │ ├── DefaultInventoryRepository.php │ │ ├── Exception │ │ │ └── InvalidInventoryLink.php │ │ ├── Inventory.php │ │ ├── InventoryGroup.php │ │ ├── InventoryLink.php │ │ ├── InventoryLoader.php │ │ ├── InventoryRepository.php │ │ └── JsonLoader.php │ ├── InterlinkReferenceResolver.php │ ├── InternalReferenceResolver.php │ ├── Message.php │ ├── Messages.php │ ├── NullAnchorNormalizer.php │ ├── PageHyperlinkResolver.php │ ├── ReferenceResolver.php │ ├── ReferenceResolverPreRender.php │ ├── SluggerAnchorNormalizer.php │ └── TitleReferenceResolver.php │ ├── RenderContext.php │ ├── Renderer │ ├── BaseTypeRenderer.php │ ├── DocumentListIterator.php │ ├── DocumentTreeIterator.php │ ├── HtmlRenderer.php │ ├── InMemoryRendererFactory.php │ ├── InterlinkObjectsRenderer.php │ ├── LatexRenderer.php │ ├── TypeRenderer.php │ ├── TypeRendererFactory.php │ └── UrlGenerator │ │ ├── AbsoluteUrlGenerator.php │ │ ├── AbstractUrlGenerator.php │ │ ├── ConfigurableUrlGenerator.php │ │ ├── RelativeUrlGenerator.php │ │ └── UrlGeneratorInterface.php │ ├── Settings │ ├── ComposerSettingsLoader.php │ ├── ProjectSettings.php │ └── SettingsManager.php │ ├── TemplateRenderer.php │ ├── Twig │ ├── AssetsExtension.php │ ├── EnvironmentBuilder.php │ ├── GlobalMenuExtension.php │ ├── Theme │ │ ├── ThemeConfig.php │ │ └── ThemeManager.php │ ├── TrimFilesystemLoader.php │ └── TwigTemplateRenderer.php │ └── UriFactory.php ├── phpbench.json ├── phpcs.xml.dist ├── phpdoc.dist.xml ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit-baseline.xml ├── phpunit.xml.dist ├── rector.php ├── tests ├── ApplicationTestCase.php ├── Functional │ ├── FunctionalTest.php │ └── tests │ │ ├── admonitions-contents │ │ ├── admonitions-contents.html │ │ └── admonitions-contents.rst │ │ ├── admonitions │ │ ├── admonitions.html │ │ └── admonitions.rst │ │ ├── anchor-failure │ │ ├── anchor-failure.html │ │ ├── anchor-failure.log │ │ └── anchor-failure.rst │ │ ├── anonymous │ │ ├── anonymous.html │ │ ├── anonymous.rst │ │ └── anonymous.tex │ │ ├── bom │ │ ├── bom.html │ │ └── bom.rst │ │ ├── br │ │ ├── br.html │ │ ├── br.rst │ │ └── br.tex │ │ ├── citation │ │ ├── citation.html │ │ └── citation.rst │ │ ├── code-block-caption │ │ ├── code-block-caption.html │ │ └── code-block-caption.rst │ │ ├── code-block-diff │ │ ├── code-block-diff.html │ │ └── code-block-diff.rst │ │ ├── code-block-indented-in-admonition │ │ ├── code-block-indented-in-admonition.html │ │ └── code-block-indented-in-admonition.rst │ │ ├── code-block-indented │ │ ├── code-block-indented.html │ │ └── code-block-indented.rst │ │ ├── code-block-lastline │ │ ├── code-block-lastline.html │ │ └── code-block-lastline.rst │ │ ├── code-block-no-xss │ │ ├── code-block-no-xss.html │ │ └── code-block-no-xss.rst │ │ ├── code-block │ │ ├── code-block.html │ │ └── code-block.rst │ │ ├── code-java │ │ ├── code-java.html │ │ └── code-java.rst │ │ ├── code-list │ │ ├── code-list.html │ │ └── code-list.rst │ │ ├── code-role │ │ ├── code-role.html │ │ └── code-role.rst │ │ ├── code-textrole-no-escape │ │ ├── code-textrole-no-escape.html │ │ └── code-textrole-no-escape.rst │ │ ├── code-textrole-no-xss │ │ ├── code-textrole-no-xss.html │ │ └── code-textrole-no-xss.rst │ │ ├── code │ │ ├── code.html │ │ ├── code.rst │ │ └── code.tex │ │ ├── comment-3 │ │ ├── comment-3.html │ │ └── comment-3.rst │ │ ├── comment-empty │ │ ├── comment-empty.html │ │ └── comment-empty.rst │ │ ├── comment │ │ ├── comment.html │ │ └── comment.rst │ │ ├── comments-block-with-header │ │ ├── comments-block-with-header.html │ │ └── comments-block-with-header.rst │ │ ├── comments-block │ │ ├── comments-block.html │ │ └── comments-block.rst │ │ ├── comments │ │ ├── comments.html │ │ └── comments.rst │ │ ├── container-complex │ │ ├── container-complex.html │ │ └── container-complex.rst │ │ ├── container │ │ ├── container.html │ │ └── container.rst │ │ ├── crlf │ │ ├── crlf.html │ │ └── crlf.rst │ │ ├── css │ │ ├── css.html │ │ └── css.rst │ │ ├── definition-list │ │ ├── definition-list.html │ │ └── definition-list.rst │ │ ├── directive-ignore-case │ │ ├── directive-ignore-case.html │ │ └── directive-ignore-case.rst │ │ ├── directive-whitespace │ │ ├── directive-whitespace.html │ │ └── directive-whitespace.rst │ │ ├── div │ │ ├── div.html │ │ └── div.rst │ │ ├── empty-list │ │ ├── empty-list.html │ │ ├── empty-list.log │ │ └── empty-list.rst │ │ ├── empty-p │ │ ├── empty-p.html │ │ └── empty-p.rst │ │ ├── empty │ │ ├── empty.html │ │ └── empty.rst │ │ ├── escape │ │ ├── escape.html │ │ └── escape.rst │ │ ├── field-list-in-directive │ │ ├── field-list-in-directive.html │ │ └── field-list-in-directive.rst │ │ ├── field-list-multiline │ │ ├── field-list-multiline.html │ │ └── field-list-multiline.rst │ │ ├── field-list │ │ ├── field-list.html │ │ └── field-list.rst │ │ ├── figure-multiline-alt │ │ ├── figure-multiline-alt.html │ │ └── figure-multiline-alt.rst │ │ ├── figure │ │ ├── figure.html │ │ └── figure.rst │ │ ├── generic-admonition │ │ ├── generic-admonition.html │ │ └── generic-admonition.rst │ │ ├── guilabel │ │ ├── guilabel.html │ │ └── guilabel.rst │ │ ├── ignored │ │ ├── ignored.html │ │ └── ignored.rst │ │ ├── image-follow │ │ ├── image-follow.html │ │ └── image-follow.rst │ │ ├── image-fullurl │ │ ├── image-fullurl.html │ │ └── image-fullurl.rst │ │ ├── image-inline │ │ ├── image-inline.html │ │ └── image-inline.rst │ │ ├── image │ │ ├── image.html │ │ ├── image.rst │ │ └── image.tex │ │ ├── include-external │ │ ├── include-external.html │ │ └── include-external.rst │ │ ├── inline-code │ │ ├── inline-code.html │ │ └── inline-code.rst │ │ ├── interpreted-text │ │ ├── interpreted-text.html │ │ └── interpreted-text.rst │ │ ├── italic │ │ ├── italic.html │ │ └── italic.rst │ │ ├── link-span │ │ ├── link-span.html │ │ └── link-span.rst │ │ ├── link-with-new-line-inside-list │ │ ├── link-with-new-line-inside-list.html │ │ └── link-with-new-line-inside-list.rst │ │ ├── link-with-new-line │ │ ├── link-with-new-line.html │ │ └── link-with-new-line.rst │ │ ├── link-with-no-name │ │ ├── link-with-no-name.html │ │ └── link-with-no-name.rst │ │ ├── link-with-special-char │ │ ├── link-with-special-char.html │ │ └── link-with-special-char.rst │ │ ├── links-anonymous-hyperlinks │ │ ├── links-anonymous-hyperlinks.html │ │ └── links-anonymous-hyperlinks.rst │ │ ├── links-whitespaces │ │ ├── links-whitespaces.html │ │ └── links-whitespaces.rst │ │ ├── links │ │ ├── links.html │ │ └── links.rst │ │ ├── list-alternate-syntax │ │ ├── list-alternate-syntax.html │ │ └── list-alternate-syntax.rst │ │ ├── list-dash │ │ ├── list-dash.html │ │ └── list-dash.rst │ │ ├── list-enumerated-ignored │ │ ├── list-enumerated-ignored.html │ │ └── list-enumerated-ignored.rst │ │ ├── list-enumerated │ │ ├── list-enumerated.html │ │ └── list-enumerated.rst │ │ ├── list-indented │ │ ├── list-indented.html │ │ └── list-indented.rst │ │ ├── list-mix │ │ ├── list-mix.html │ │ └── list-mix.rst │ │ ├── list-nested │ │ ├── list-nested.html │ │ └── list-nested.rst │ │ ├── list-ordered-nested │ │ ├── list-ordered-nested.html │ │ └── list-ordered-nested.rst │ │ ├── list-whitespace │ │ ├── list-whitespace.html │ │ └── list-whitespace.rst │ │ ├── list │ │ ├── list.html │ │ ├── list.rst │ │ └── list.tex │ │ ├── literal │ │ ├── literal.html │ │ └── literal.rst │ │ ├── nbsp-role │ │ ├── nbsp-role.html │ │ └── nbsp-role.rst │ │ ├── nbsp │ │ ├── nbsp.html │ │ └── nbsp.rst │ │ ├── no-eager-literals │ │ ├── no-eager-literals.html │ │ └── no-eager-literals.rst │ │ ├── paragraph │ │ ├── paragraph.html │ │ ├── paragraph.rst │ │ └── paragraph.tex │ │ ├── pull-quote │ │ ├── pull-quote.html │ │ └── pull-quote.rst │ │ ├── quote-title │ │ ├── quote-title.html │ │ └── quote-title.rst │ │ ├── quote │ │ ├── quote.html │ │ ├── quote.rst │ │ └── quote.tex │ │ ├── quote2 │ │ ├── quote2.html │ │ └── quote2.rst │ │ ├── quote3 │ │ ├── quote3.html │ │ └── quote3.rst │ │ ├── raw │ │ ├── raw.html │ │ └── raw.rst │ │ ├── rubric │ │ ├── rubric.html │ │ └── rubric.rst │ │ ├── section-nesting │ │ ├── section-nesting.html │ │ └── section-nesting.rst │ │ ├── separator │ │ ├── separator.html │ │ ├── separator.rst │ │ └── separator.tex │ │ ├── sidebar │ │ ├── sidebar.html │ │ └── sidebar.rst │ │ ├── standalone-email-addresses │ │ ├── standalone-email-addresses.html │ │ └── standalone-email-addresses.rst │ │ ├── standalone-hyperlinks │ │ ├── standalone-hyperlinks.html │ │ └── standalone-hyperlinks.rst │ │ ├── strong │ │ ├── strong.html │ │ └── strong.rst │ │ ├── table-grid-col-span │ │ ├── table-grid-col-span.html │ │ └── table-grid-col-span.rst │ │ ├── table-grid-complex-row-span │ │ ├── table-grid-complex-row-span.html │ │ └── table-grid-complex-row-span.rst │ │ ├── table-grid-error1 │ │ ├── table-grid-error1.html │ │ └── table-grid-error1.rst │ │ ├── table-grid-header │ │ ├── table-grid-header.html │ │ └── table-grid-header.rst │ │ ├── table-grid-large │ │ ├── table-grid-large.html │ │ └── table-grid-large.rst │ │ ├── table-grid-multiline-header │ │ ├── table-grid-multiline-header.html │ │ └── table-grid-multiline-header.rst │ │ ├── table-grid-nested-list │ │ ├── table-grid-nested-list.html │ │ └── table-grid-nested-list.rst │ │ ├── table-grid-no-header │ │ ├── table-grid-no-header.html │ │ └── table-grid-no-header.rst │ │ ├── table-grid-row-span │ │ ├── table-grid-row-span.html │ │ └── table-grid-row-span.rst │ │ ├── table-grid-utf8 │ │ ├── table-grid-utf8.html │ │ └── table-grid-utf8.rst │ │ ├── table-grid │ │ ├── table-grid.html │ │ └── table-grid.rst │ │ ├── table-simple-indented-header │ │ ├── table-simple-indented-header.html │ │ └── table-simple-indented-header.rst │ │ ├── table-simple-nested-list │ │ ├── table-simple-nested-list.html │ │ └── table-simple-nested-list.rst │ │ ├── table-simple-with-ruler │ │ ├── table-simple-with-ruler.html │ │ ├── table-simple-with-ruler.rst │ │ └── table-simple-with-ruler.tex │ │ ├── table-simple │ │ ├── table-simple.html │ │ ├── table-simple.rst │ │ └── table-simple.tex │ │ ├── table-simple3 │ │ ├── table-simple3.html │ │ └── table-simple3.rst │ │ ├── text-roles │ │ ├── text-roles.html │ │ └── text-roles.rst │ │ ├── titles-auto │ │ ├── titles-auto.html │ │ └── titles-auto.rst │ │ ├── titles-overlined │ │ ├── titles-overlined.html │ │ └── titles-overlined.rst │ │ ├── titles │ │ ├── titles.html │ │ ├── titles.rst │ │ └── titles.tex │ │ ├── unknown-directive │ │ ├── unknown-directive.html │ │ └── unknown-directive.rst │ │ ├── variable-wrap │ │ ├── variable-wrap.html │ │ └── variable-wrap.rst │ │ ├── versionchanges │ │ ├── versionchanges.html │ │ └── versionchanges.rst │ │ ├── versions │ │ ├── versions.html │ │ └── versions.rst │ │ └── wrap │ │ ├── wrap.html │ │ └── wrap.rst ├── Integration │ ├── IntegrationTest.php │ ├── tests-full │ │ ├── automatic_menu │ │ │ ├── automatic-default-menu │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── somePage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── doNotInclude.rst │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ ├── automatic-menu-toctree │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── logs │ │ │ │ │ │ └── warning.log │ │ │ │ │ └── somePage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ └── automatic-multilevel-menu │ │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── include.rst.txt │ │ │ │ ├── index.rst │ │ │ │ └── someDirectory │ │ │ │ ├── anotherDirectory │ │ │ │ ├── index.rst │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ │ └── index.rst │ │ ├── bootstrap │ │ │ ├── bootstrap-default-menu-several │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── somePage.html │ │ │ │ │ ├── subpages │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── subpage1.html │ │ │ │ │ │ └── subpage2.html │ │ │ │ │ └── yetAnotherPage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ ├── subpages │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ ├── bootstrap-default-menu │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── somePage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ ├── bootstrap-default-subpages-max-1 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ └── someDirectory │ │ │ │ │ ├── anotherDirectory │ │ │ │ │ ├── index.rst │ │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ ├── bootstrap-default-subpages-max-2 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ └── someDirectory │ │ │ │ │ ├── anotherDirectory │ │ │ │ │ ├── index.rst │ │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ ├── bootstrap-default-subpages-max-3 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ └── someDirectory │ │ │ │ │ ├── anotherDirectory │ │ │ │ │ ├── index.rst │ │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ ├── bootstrap-default-subpages │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ └── someDirectory │ │ │ │ │ ├── anotherDirectory │ │ │ │ │ ├── index.rst │ │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ ├── bootstrap-index │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── somePage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ ├── bootstrap-menu-external-linktargets │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── index.rst │ │ │ │ │ └── page1.rst │ │ │ ├── bootstrap-menu-external-on-subpage │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── index.rst │ │ │ │ │ └── page1.rst │ │ │ ├── bootstrap-menu-relative │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── levelup1.rst │ │ │ │ │ ├── levelup2.rst │ │ │ │ │ ├── levelup3.rst │ │ │ │ │ ├── levelup4.rst │ │ │ │ │ └── someDirectory │ │ │ │ │ ├── anotherDirectory │ │ │ │ │ ├── index.rst │ │ │ │ │ └── yetAnotherDirectory │ │ │ │ │ │ ├── andYetAnotherDirectory │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ └── index.rst │ │ │ │ │ └── index.rst │ │ │ ├── bootstrap-navigation-title-sub-menu │ │ │ │ ├── expected │ │ │ │ │ ├── index.html │ │ │ │ │ ├── objects.inv.json │ │ │ │ │ └── someDir │ │ │ │ │ │ └── yetAnotherPage.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── include.rst.txt │ │ │ │ │ ├── index.rst │ │ │ │ │ └── someDir │ │ │ │ │ ├── anotherPage.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── somePage.rst │ │ │ │ │ └── yetAnotherPage.rst │ │ │ └── bootstrap-navigation-title │ │ │ │ ├── expected │ │ │ │ ├── anotherPage.html │ │ │ │ ├── index.html │ │ │ │ └── yetAnotherPage.html │ │ │ │ └── input │ │ │ │ ├── anotherPage.rst │ │ │ │ ├── guides.xml │ │ │ │ ├── include.rst.txt │ │ │ │ ├── index.rst │ │ │ │ ├── somePage.rst │ │ │ │ └── yetAnotherPage.rst │ │ ├── index │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── markdown-full │ │ │ ├── default-menu-md │ │ │ │ ├── expected │ │ │ │ │ ├── anotherPage.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── somePage.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.md │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── index.md │ │ │ │ │ ├── somePage.md │ │ │ │ │ └── yetAnotherPage.md │ │ │ ├── front-matter-md │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── guides.xml │ │ │ │ │ └── index.md │ │ │ ├── multi-nested-menu-md │ │ │ │ ├── expected │ │ │ │ │ ├── dir2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── somePage.html │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── anotherPage.md │ │ │ │ │ ├── dir1 │ │ │ │ │ └── index.md │ │ │ │ │ ├── dir2 │ │ │ │ │ ├── index.md │ │ │ │ │ ├── somePage.md │ │ │ │ │ ├── subdir1 │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── subdir2 │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── somePage.md │ │ │ │ │ │ └── subsubdir1 │ │ │ │ │ │ │ └── index.md │ │ │ │ │ └── yetAnotherPage.md │ │ │ │ │ ├── guides.xml │ │ │ │ │ ├── index.md │ │ │ │ │ ├── somePage.md │ │ │ │ │ └── yetAnotherPage.md │ │ │ └── nested-menu-md │ │ │ │ ├── expected │ │ │ │ ├── dir2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── somePage.html │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ ├── anotherPage.md │ │ │ │ ├── dir1 │ │ │ │ └── index.md │ │ │ │ ├── dir2 │ │ │ │ ├── index.md │ │ │ │ └── somePage.md │ │ │ │ ├── guides.xml │ │ │ │ ├── index.md │ │ │ │ ├── somePage.md │ │ │ │ └── yetAnotherPage.md │ │ └── md-to-rst │ │ │ ├── blockquote-md-to-rst │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ ├── code-md-to-rst │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ ├── emphasis-md-to-rst │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ ├── index-md-to-rst │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ ├── inline-code-md-to-rst │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ ├── md-to-rst-list-link │ │ │ ├── expected │ │ │ │ └── index.rst │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ │ └── table-md-to-rst │ │ │ ├── expected │ │ │ └── index.rst │ │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.md │ └── tests │ │ ├── anchor │ │ ├── anchor-duplicate-warning │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── page.rst │ │ ├── anchor-link-in-list │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── anchor-ref-title-equals-title │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── overview.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── overview.rst │ │ ├── anchor-title-overriden-by-ref-title │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── anchor-to-page │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── rst-overview.rst │ │ │ │ └── sphinx-overview.rst │ │ ├── anchor-to-section-relative │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── anchor-to-section │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── anchor-to-title-on-another-page │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── overview.rst │ │ ├── anchor-to-title │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── anchor-whitespace │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── anchor-within-text │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── index.rst │ │ │ ├── rst-overview.rst │ │ │ └── sphinx-overview.rst │ │ ├── api │ │ └── api-class-role │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── api │ │ │ └── objects.inv.json │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── body-elements │ │ ├── block-quotes │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── citation │ │ │ ├── citation-page │ │ │ │ ├── expected │ │ │ │ │ ├── citations.html │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ ├── citations.rst │ │ │ │ │ └── index.rst │ │ │ ├── citation-same-page │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ └── citation-unknown │ │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── footnote │ │ │ ├── footnote-list │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── footnote-named │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── footnote-numbered │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ └── footnotes-on-document │ │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── page1.html │ │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── page1.rst │ │ ├── horizontal-line │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── line-blocks │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── bootstrap │ │ ├── bootstrap-accordion │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── bootstrap-admonition │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── bootstrap-card-grid │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.rst │ │ ├── bootstrap-card-group │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.rst │ │ ├── bootstrap-cards │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.rst │ │ └── bootstrap-tabs │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── class │ │ ├── class-directive-non-block │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── class-directive-sections │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── class-directive │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── class-in-list │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── class-option-directive │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── code │ │ ├── code-block-emphasize │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-block-empty │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-block-hightlight │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-block-lineno │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-block-with-underscore │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-with-caption-inline-styles │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-with-caption-plain │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-with-underscore │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── code-with-whitespace │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── literal-block-default-language-php │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── literalinclude-with-caption │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── _code │ │ │ │ └── _Example.php │ │ │ │ └── index.rst │ │ ├── literalinclude │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── _code │ │ │ │ └── _Example.php │ │ │ │ └── index.rst │ │ ├── literalincludeLineNos │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── _code │ │ │ │ └── _Example.php │ │ │ │ └── index.rst │ │ └── parsed-literal-block │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── comments │ │ ├── comment-ends-in-markup │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── comment-multiline │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── comment-nested │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── configuration │ │ ├── config-exclude │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── ignore.rst │ │ │ │ └── index.rst │ │ ├── config-project │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ └── config-simple │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── confval │ │ ├── confval-name │ │ │ ├── expected │ │ │ │ ├── another.html │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── another.rst │ │ │ │ └── index.rst │ │ ├── confval-no-title │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── confval-noindex │ │ │ ├── expected │ │ │ │ ├── another.html │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── another.rst │ │ │ │ └── index.rst │ │ └── confval-warning │ │ │ ├── expected │ │ │ ├── another.html │ │ │ ├── index.html │ │ │ ├── logs │ │ │ │ └── warning.log │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ ├── another.rst │ │ │ └── index.rst │ │ ├── directives │ │ ├── directive-configuration-block │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-glossary │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── directive-math │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── directive-only │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── index.tex │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-raw-custom-sanitizer │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-raw-default-sanitizer │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-raw-no-sanitizer │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-topic │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── directive-unkown │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── directive-with-warning │ │ │ ├── expected │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── directive-wrap │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── include │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── comments.rst.txt │ │ │ │ └── index.rst │ │ ├── role-directive │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── someFile.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── someFile.rst │ │ ├── sectionauthor │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── variables-replace │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── youtube │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── graphs │ │ ├── plantuml-external │ │ │ ├── expected │ │ │ │ ├── Plantuml │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── Plantuml │ │ │ │ ├── index.rst │ │ │ │ └── something.plantuml │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── plantuml-inline │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ └── plantuml-server-error │ │ │ ├── expected │ │ │ ├── index.html │ │ │ └── logs │ │ │ │ └── warning.log │ │ │ └── input │ │ │ ├── Plantuml │ │ │ └── something.plantuml │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── hyperlink-to-anchor │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ ├── hyperlink-to-email │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ ├── hyperlink-to-page │ │ ├── expected │ │ │ ├── index.html │ │ │ └── subpages │ │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── subpages │ │ │ ├── index.rst │ │ │ └── subpage1.rst │ │ ├── images │ │ ├── figure-relative │ │ │ ├── expected │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.html │ │ │ │ └── subfolder │ │ │ │ │ └── subpage.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.rst │ │ │ │ └── subfolder │ │ │ │ ├── subfolder │ │ │ │ └── subpage.rst │ │ │ │ └── subpage.rst │ │ ├── image-absolute │ │ │ ├── expected │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.html │ │ │ │ └── subfolder │ │ │ │ │ └── subpage.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.rst │ │ │ │ └── subfolder │ │ │ │ └── subpage.rst │ │ ├── image-relative │ │ │ ├── expected │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.html │ │ │ │ └── subfolder │ │ │ │ │ └── subpage.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ ├── images │ │ │ │ └── hero2-illustration.svg │ │ │ │ ├── index.rst │ │ │ │ └── subfolder │ │ │ │ ├── subfolder │ │ │ │ └── subpage.rst │ │ │ │ └── subpage.rst │ │ └── image-target │ │ │ ├── expected │ │ │ ├── images │ │ │ │ └── hero2-illustration.svg │ │ │ └── index.html │ │ │ └── input │ │ │ ├── guides.xml │ │ │ ├── images │ │ │ └── hero2-illustration.svg │ │ │ ├── index.rst │ │ │ └── subfolder │ │ │ └── subpage.rst │ │ ├── include-parts │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── part1.rst.txt │ │ │ ├── part2.rst.txt │ │ │ └── part3.rst.txt │ │ ├── index-html-only │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── inline-combinations │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ ├── input-file │ │ ├── expected │ │ │ └── README.html │ │ └── input │ │ │ ├── README.rst │ │ │ └── guides.xml │ │ ├── interlink │ │ ├── interlink-inventory-not-found │ │ │ ├── expected │ │ │ │ ├── Index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-inventory-page-unknown │ │ │ ├── expected │ │ │ │ ├── Index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-inventory-reference-unknown │ │ │ ├── expected │ │ │ │ ├── Index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-inventory-unknown │ │ │ ├── expected │ │ │ │ ├── Index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-ref-inventory-unknown │ │ │ ├── expected │ │ │ │ ├── Index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-to-doc-in-path │ │ │ ├── expected │ │ │ │ └── Index.html │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── interlink-to-index │ │ │ ├── expected │ │ │ │ └── Index.html │ │ │ └── input │ │ │ │ ├── Index.rst │ │ │ │ └── guides.xml │ │ ├── intersphinx-link │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── intersphinx-numeric │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── inventory_json │ │ │ ├── expected │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── page1.rst │ │ │ │ ├── page2.rst │ │ │ │ └── subfolder │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ └── inventory_ref_json │ │ │ ├── expected │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ ├── page2.rst │ │ │ └── subfolder │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ ├── last-rendered │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ ├── latex │ │ ├── latex-confval │ │ │ ├── expected │ │ │ │ └── index.tex │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ └── latex-index │ │ │ ├── expected │ │ │ └── index.tex │ │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── lists │ │ ├── big-numbers │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── definition-lists │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── field-list-empty-lines │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── list-warning │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── list-with-code │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── lists-hlist │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── lists-nested │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── numbered-list-escaped │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── numbered-lists-defined │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── numbered-lists │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── markdown │ │ ├── admonitions-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── blockquote-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── code-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── emphasis-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── emphasis-nested-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── html-inline-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── html-md │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── image-empty-alt-md │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── image-md │ │ │ ├── expected │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.md │ │ ├── image-path-relative-md │ │ │ ├── expected │ │ │ │ ├── dir1 │ │ │ │ │ ├── dir2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── somePage.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ └── hero-illustration.svg │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── dir1 │ │ │ │ ├── dir2 │ │ │ │ │ ├── index.md │ │ │ │ │ └── somePage.md │ │ │ │ └── index.md │ │ │ │ ├── guides.xml │ │ │ │ ├── images │ │ │ │ └── hero-illustration.svg │ │ │ │ ├── index.md │ │ │ │ └── somePage.md │ │ ├── image-title-md │ │ │ ├── expected │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── hero-illustration.svg │ │ │ │ └── index.md │ │ ├── index-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── index-name-md │ │ │ ├── expected │ │ │ │ ├── anotherPage.html │ │ │ │ ├── readme.html │ │ │ │ └── yetAnotherPage.html │ │ │ └── input │ │ │ │ ├── anotherPage.md │ │ │ │ ├── guides.xml │ │ │ │ ├── readme.md │ │ │ │ └── yetAnotherPage.md │ │ ├── inline-code-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── link-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── link-page-md │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── subpages │ │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── index.md │ │ │ │ ├── page1.md │ │ │ │ └── subpages │ │ │ │ ├── index.md │ │ │ │ └── subpage1.md │ │ ├── linked-image-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── index.md │ │ │ │ └── skip │ │ ├── lists-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── paragraph-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── readme-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── sections-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── sections-no-level-1-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── table-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ ├── url-embedded-md │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.md │ │ └── warning-md │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── guides.xml │ │ │ ├── index.md │ │ │ └── skip │ │ ├── meta │ │ ├── config-file │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── meta-data │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── meta-title-by-directive │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── orphan-without-title │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── orphan.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── orphan.rst │ │ ├── project-meta-global │ │ │ ├── expected │ │ │ │ ├── a_page.html │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── a_page.rst │ │ │ │ └── index.rst │ │ ├── project-meta │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── project-title-override-warning │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ ├── logs │ │ │ │ │ └── warning.log │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── a_page.rst │ │ │ │ └── index.rst │ │ ├── project-title │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── settings │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── objects.inv.json │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ └── index.rst │ │ ├── variables-from-project │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── version-from-guides-xml │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ ├── guides.xml │ │ │ └── index.rst │ │ ├── navigation │ │ ├── breadcrumb │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ ├── level-1-1 │ │ │ │ │ ├── level-2-1 │ │ │ │ │ │ └── subpage1.html │ │ │ │ │ └── subpage1.html │ │ │ │ └── page1.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── level-1-1 │ │ │ │ ├── index.rst │ │ │ │ ├── level-2-1 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-2-2 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-1-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── page1.rst │ │ │ │ └── page2.rst │ │ ├── contents │ │ │ ├── contents-depth-1 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── contents-depth-2 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── contents-depth-3 │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── contents-local │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ ├── contents-no-depth │ │ │ │ ├── expected │ │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ │ └── index.rst │ │ │ └── contents-with-title │ │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── docref │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── subfolder │ │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── subfolder │ │ │ │ └── index.rst │ │ ├── index_camel │ │ │ ├── expected │ │ │ │ └── Index.html │ │ │ └── input │ │ │ │ └── Index.rst │ │ ├── menu-level-3 │ │ │ ├── expected │ │ │ │ ├── level-1-1 │ │ │ │ │ └── level-2-2 │ │ │ │ │ │ └── subpage1.html │ │ │ │ ├── level-1-2 │ │ │ │ │ └── subpage1.html │ │ │ │ └── page1.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── level-1-1 │ │ │ │ ├── index.rst │ │ │ │ ├── level-2-1 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-2-2 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-1-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── page1.rst │ │ │ │ └── page2.rst │ │ ├── menu-relative │ │ │ ├── expected │ │ │ │ ├── level-1-1 │ │ │ │ │ └── level-2-2 │ │ │ │ │ │ └── subpage1.html │ │ │ │ ├── level-1-2 │ │ │ │ │ └── subpage1.html │ │ │ │ └── page1.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── index.rst │ │ │ │ ├── level-1-1 │ │ │ │ ├── index.rst │ │ │ │ ├── level-2-1 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-2-2 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-1-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── page1.rst │ │ │ │ └── page2.rst │ │ ├── reference-not-found │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── page.rst │ │ │ │ └── subfolder │ │ │ │ └── index.rst │ │ ├── reference-with-angle-bracket │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── page.rst │ │ └── references │ │ │ ├── expected │ │ │ ├── index.html │ │ │ ├── page.html │ │ │ └── subfolder │ │ │ │ └── index.html │ │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page.rst │ │ │ └── subfolder │ │ │ └── index.rst │ │ ├── numeral-rst │ │ ├── expected │ │ │ ├── index.html │ │ │ └── objects.inv.json │ │ └── input │ │ │ ├── 404.rst │ │ │ └── index.rst │ │ ├── option │ │ ├── expected │ │ │ ├── index.html │ │ │ └── objects.inv.json │ │ └── input │ │ │ └── index.rst │ │ ├── references │ │ ├── reference-level-3-relative │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ ├── level-1-1 │ │ │ │ │ └── level-2-1 │ │ │ │ │ │ └── subpage1.html │ │ │ │ └── level-1-2 │ │ │ │ │ └── subpage2.html │ │ │ └── input │ │ │ │ ├── guides.xml │ │ │ │ ├── index.rst │ │ │ │ ├── level-1-1 │ │ │ │ ├── index.rst │ │ │ │ ├── level-2-1 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-2-2 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-1-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── page1.rst │ │ │ │ └── page2.rst │ │ ├── reference-level-3 │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ ├── level-1-1 │ │ │ │ │ └── level-2-1 │ │ │ │ │ │ └── subpage1.html │ │ │ │ └── level-1-2 │ │ │ │ │ └── subpage2.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ ├── level-1-1 │ │ │ │ ├── index.rst │ │ │ │ ├── level-2-1 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-2-2 │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── subpage1.rst │ │ │ │ │ └── subpage2.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── level-1-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ │ ├── page1.rst │ │ │ │ └── page2.rst │ │ ├── reference-to-anchor │ │ │ ├── expected │ │ │ │ ├── anotherPage.html │ │ │ │ ├── index.html │ │ │ │ ├── objects.inv.json │ │ │ │ └── yetAnotherPage.html │ │ │ └── input │ │ │ │ ├── anotherPage.rst │ │ │ │ ├── guides.xml │ │ │ │ ├── index.rst │ │ │ │ └── yetAnotherPage.rst │ │ ├── reference-with-escape │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ └── reference-without-space │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── sections │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ ├── tables │ │ ├── grid-table-with-list │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── list-table-directive │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── simple-table-error1 │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ └── logs │ │ │ │ │ ├── error.log │ │ │ │ │ └── warning.log │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── simple-table-with-variable │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── table-csv-table-with-content │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ └── index.rst │ │ ├── table-csv-table-with-header │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── test.csv │ │ ├── table-csv-table-with-markup │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── test.csv │ │ ├── table-csv-table │ │ │ ├── expected │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── index.rst │ │ │ │ └── test.csv │ │ └── table-directive │ │ │ ├── expected │ │ │ └── index.html │ │ │ └── input │ │ │ └── index.rst │ │ ├── text-with-pipe │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ └── index.rst │ │ └── toctree │ │ ├── toctree-caption │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-entry-not-found │ │ ├── expected │ │ │ ├── index.html │ │ │ └── logs │ │ │ │ └── warning.log │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-external-linktargets │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ └── page1.rst │ │ ├── toctree-glob-deep-level-3 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── level-1-1 │ │ │ ├── index.rst │ │ │ ├── level-2-1 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── level-2-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── level-1-2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-glob-level-1 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── doNotInclude.rst │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-glob-level-2 │ │ ├── expected │ │ │ ├── index.html │ │ │ ├── subfolder │ │ │ │ └── index.html │ │ │ └── subfolder2 │ │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ ├── page2.rst │ │ │ ├── subfolder │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ └── subfolder2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ ├── toctree-glob-level-3 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── level-1-1 │ │ │ ├── index.rst │ │ │ ├── level-2-1 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── level-2-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── level-1-2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-glob-reverse │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── doNotInclude.rst │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-level-2-reversed │ │ ├── expected │ │ │ ├── index.html │ │ │ ├── subfolder │ │ │ │ └── index.html │ │ │ └── subfolder2 │ │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ ├── page2.rst │ │ │ ├── subfolder │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ └── subfolder2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ ├── toctree-level-2 │ │ ├── expected │ │ │ ├── index.html │ │ │ ├── subfolder │ │ │ │ └── index.html │ │ │ └── subfolder2 │ │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ ├── page2.rst │ │ │ ├── subfolder │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ └── subfolder2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ ├── toctree-level-3-maxdepth-1 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── level-1-1 │ │ │ ├── index.rst │ │ │ ├── level-2-1 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── level-2-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── level-1-2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-level-3-maxdepth-2 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── level-1-1 │ │ │ ├── index.rst │ │ │ ├── level-2-1 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── level-2-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── level-1-2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-level-3 │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── level-1-1 │ │ │ ├── index.rst │ │ │ ├── level-2-1 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── level-2-2 │ │ │ │ ├── index.rst │ │ │ │ ├── subpage1.rst │ │ │ │ └── subpage2.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── level-1-2 │ │ │ ├── index.rst │ │ │ ├── subpage1.rst │ │ │ └── subpage2.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-maxdepth │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ ├── subpage1 │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ │ ├── subpage2 │ │ │ └── page1.rst │ │ │ └── subpages │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ ├── toctree-no-duplicates │ │ ├── expected │ │ │ ├── index.html │ │ │ └── overview.html │ │ └── input │ │ │ ├── apple.rst │ │ │ ├── banana.rst │ │ │ ├── cherry.rst │ │ │ ├── index.rst │ │ │ └── overview.rst │ │ ├── toctree-not-included │ │ ├── expected │ │ │ ├── index.html │ │ │ ├── logs │ │ │ │ └── warning.log │ │ │ └── overview.html │ │ └── input │ │ │ ├── index.rst │ │ │ └── overview.rst │ │ ├── toctree-simple │ │ ├── expected │ │ │ └── index.html │ │ └── input │ │ │ ├── index.rst │ │ │ ├── page1.rst │ │ │ └── page2.rst │ │ └── toctree-titlesonly │ │ ├── expected │ │ └── index.html │ │ └── input │ │ ├── index.rst │ │ ├── page1.rst │ │ └── page2.rst └── bootstrap.php └── tools ├── integration-test-copy-baseline.php ├── license.sh └── xmllint.sh /.backportrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.backportrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/backport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/workflows/backport.yaml -------------------------------------------------------------------------------- /.github/workflows/dependabot-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/workflows/dependabot-review.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/integrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/workflows/integrate.yaml -------------------------------------------------------------------------------- /.github/workflows/sub-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.github/workflows/sub-split.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.cache 3 | /**/temp 4 | /output/ 5 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.phive/composer-require-checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.phive/composer-require-checker -------------------------------------------------------------------------------- /.phive/phars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.phive/phars.xml -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/README.rst -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/composer.lock -------------------------------------------------------------------------------- /config.subsplit-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/config.subsplit-publish.json -------------------------------------------------------------------------------- /deptrac.packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/deptrac.packages.yaml -------------------------------------------------------------------------------- /docs/_uml/application-flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/_uml/application-flow.puml -------------------------------------------------------------------------------- /docs/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/architecture.rst -------------------------------------------------------------------------------- /docs/cli/basic-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/cli/basic-config.xml -------------------------------------------------------------------------------- /docs/cli/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/cli/configuration.rst -------------------------------------------------------------------------------- /docs/cli/extension-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/cli/extension-config.xml -------------------------------------------------------------------------------- /docs/cli/first-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/cli/first-docs.png -------------------------------------------------------------------------------- /docs/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/cli/index.rst -------------------------------------------------------------------------------- /docs/components/_renderer/_PlaintextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/_renderer/_PlaintextRenderer.php -------------------------------------------------------------------------------- /docs/components/_renderer/_myextension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/_renderer/_myextension.php -------------------------------------------------------------------------------- /docs/components/compiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/compiler.rst -------------------------------------------------------------------------------- /docs/components/guidesXml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/guidesXml.rst -------------------------------------------------------------------------------- /docs/components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/index.rst -------------------------------------------------------------------------------- /docs/components/parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/parser.rst -------------------------------------------------------------------------------- /docs/components/renderer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/renderer.rst -------------------------------------------------------------------------------- /docs/components/spannode.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/components/spannode.puml -------------------------------------------------------------------------------- /docs/contributions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/contributions/index.rst -------------------------------------------------------------------------------- /docs/contributions/monorepository-layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/contributions/monorepository-layout.rst -------------------------------------------------------------------------------- /docs/contributions/writing-tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/contributions/writing-tests.rst -------------------------------------------------------------------------------- /docs/developers/compiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/compiler.rst -------------------------------------------------------------------------------- /docs/developers/directive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/directive.rst -------------------------------------------------------------------------------- /docs/developers/directive/subdirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/directive/subdirective.php -------------------------------------------------------------------------------- /docs/developers/extensions/_YourExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/_YourExtension.php -------------------------------------------------------------------------------- /docs/developers/extensions/_composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/_composer.json -------------------------------------------------------------------------------- /docs/developers/extensions/_your-extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/_your-extension.php -------------------------------------------------------------------------------- /docs/developers/extensions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/index.rst -------------------------------------------------------------------------------- /docs/developers/extensions/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/structure.rst -------------------------------------------------------------------------------- /docs/developers/extensions/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/templates.rst -------------------------------------------------------------------------------- /docs/developers/extensions/text-roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/extensions/text-roles.rst -------------------------------------------------------------------------------- /docs/developers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/developers/index.rst -------------------------------------------------------------------------------- /docs/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/guides.xml -------------------------------------------------------------------------------- /docs/include.rst.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/markdown/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/reference/markdown/index.rst -------------------------------------------------------------------------------- /docs/reference/restructuredtext/admonitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/reference/restructuredtext/admonitions.rst -------------------------------------------------------------------------------- /docs/reference/restructuredtext/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/reference/restructuredtext/index.rst -------------------------------------------------------------------------------- /docs/reference/restructuredtext/text-roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/docs/reference/restructuredtext/text-roles.rst -------------------------------------------------------------------------------- /guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/guides.xml -------------------------------------------------------------------------------- /packages/dev-server/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/dev-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/LICENSE -------------------------------------------------------------------------------- /packages/dev-server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/README.rst -------------------------------------------------------------------------------- /packages/dev-server/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/composer.json -------------------------------------------------------------------------------- /packages/dev-server/src/Internal/HttpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/Internal/HttpHandler.php -------------------------------------------------------------------------------- /packages/dev-server/src/Internal/WebSocketHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/Internal/WebSocketHandler.php -------------------------------------------------------------------------------- /packages/dev-server/src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/Server.php -------------------------------------------------------------------------------- /packages/dev-server/src/ServerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/ServerFactory.php -------------------------------------------------------------------------------- /packages/dev-server/src/Watcher/FileModifiedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/Watcher/FileModifiedEvent.php -------------------------------------------------------------------------------- /packages/dev-server/src/Watcher/INotifyWatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/dev-server/src/Watcher/INotifyWatcher.php -------------------------------------------------------------------------------- /packages/filesystem/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/filesystem/Flysystem/FilesystemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/Flysystem/FilesystemInterface.php -------------------------------------------------------------------------------- /packages/filesystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/LICENSE -------------------------------------------------------------------------------- /packages/filesystem/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/README.rst -------------------------------------------------------------------------------- /packages/filesystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/composer.json -------------------------------------------------------------------------------- /packages/filesystem/src/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FileNotFoundException.php -------------------------------------------------------------------------------- /packages/filesystem/src/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FileSystem.php -------------------------------------------------------------------------------- /packages/filesystem/src/Finder/Exclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/Finder/Exclude.php -------------------------------------------------------------------------------- /packages/filesystem/src/Finder/SpecificationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/Finder/SpecificationFactory.php -------------------------------------------------------------------------------- /packages/filesystem/src/FlySystemAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FlySystemAdapter.php -------------------------------------------------------------------------------- /packages/filesystem/src/FlysystemV1/FlysystemV1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FlysystemV1/FlysystemV1.php -------------------------------------------------------------------------------- /packages/filesystem/src/FlysystemV1/StorageAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FlysystemV1/StorageAttributes.php -------------------------------------------------------------------------------- /packages/filesystem/src/FlysystemV3/FileAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FlysystemV3/FileAttributes.php -------------------------------------------------------------------------------- /packages/filesystem/src/FlysystemV3/FlysystemV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/FlysystemV3/FlysystemV3.php -------------------------------------------------------------------------------- /packages/filesystem/src/MethodNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/MethodNotAllowedException.php -------------------------------------------------------------------------------- /packages/filesystem/src/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/Path.php -------------------------------------------------------------------------------- /packages/filesystem/src/StorageAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/filesystem/src/StorageAttributes.php -------------------------------------------------------------------------------- /packages/guides-cli/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-cli/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/README.rst -------------------------------------------------------------------------------- /packages/guides-cli/bin/guides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/bin/guides -------------------------------------------------------------------------------- /packages/guides-cli/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/composer.json -------------------------------------------------------------------------------- /packages/guides-cli/resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/resources/config/services.php -------------------------------------------------------------------------------- /packages/guides-cli/resources/schema/guides.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/resources/schema/guides.xsd -------------------------------------------------------------------------------- /packages/guides-cli/src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Application.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Command/ProgressBarSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Command/ProgressBarSubscriber.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Command/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Command/Run.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Command/Serve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Command/Serve.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Command/SettingsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Command/SettingsBuilder.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Command/WorkingDirectorySwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Command/WorkingDirectorySwitcher.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Config/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Config/Configuration.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Config/XmlFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Config/XmlFileLoader.php -------------------------------------------------------------------------------- /packages/guides-cli/src/DevServer/RerenderListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/DevServer/RerenderListener.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Internal/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Internal/RunCommand.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Internal/RunCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Internal/RunCommandHandler.php -------------------------------------------------------------------------------- /packages/guides-cli/src/Logger/SpyProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-cli/src/Logger/SpyProcessor.php -------------------------------------------------------------------------------- /packages/guides-code/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/LICENSE -------------------------------------------------------------------------------- /packages/guides-code/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/README.rst -------------------------------------------------------------------------------- /packages/guides-code/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/composer.json -------------------------------------------------------------------------------- /packages/guides-code/resources/config/guides-code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/resources/config/guides-code.php -------------------------------------------------------------------------------- /packages/guides-code/src/Code/Highlighter/HighlightResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/src/Code/Highlighter/HighlightResult.php -------------------------------------------------------------------------------- /packages/guides-code/src/Code/Highlighter/Highlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/src/Code/Highlighter/Highlighter.php -------------------------------------------------------------------------------- /packages/guides-code/src/Code/Twig/CodeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-code/src/Code/Twig/CodeExtension.php -------------------------------------------------------------------------------- /packages/guides-graphs/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-graphs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/LICENSE -------------------------------------------------------------------------------- /packages/guides-graphs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/README.rst -------------------------------------------------------------------------------- /packages/guides-graphs/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/composer.json -------------------------------------------------------------------------------- /packages/guides-graphs/resources/config/guides-graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/resources/config/guides-graphs.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Directives/UmlDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Directives/UmlDirective.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Nodes/UmlNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Nodes/UmlNode.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Renderer/DiagramRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Renderer/DiagramRenderer.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Renderer/PlantumlRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Renderer/PlantumlRenderer.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Renderer/TestRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Renderer/TestRenderer.php -------------------------------------------------------------------------------- /packages/guides-graphs/src/Graphs/Twig/UmlExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-graphs/src/Graphs/Twig/UmlExtension.php -------------------------------------------------------------------------------- /packages/guides-markdown/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/LICENSE -------------------------------------------------------------------------------- /packages/guides-markdown/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/README.rst -------------------------------------------------------------------------------- /packages/guides-markdown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/composer.json -------------------------------------------------------------------------------- /packages/guides-markdown/resources/config/guides-markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/resources/config/guides-markdown.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/MarkupLanguageParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/MarkupLanguageParser.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/NullNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/NullNode.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/ParserException.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/ParserInterface.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/Parsers/HeaderParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/Parsers/HeaderParser.php -------------------------------------------------------------------------------- /packages/guides-markdown/src/Markdown/Parsers/HtmlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-markdown/src/Markdown/Parsers/HtmlParser.php -------------------------------------------------------------------------------- /packages/guides-restructured-text/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-restructured-text/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-restructured-text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-restructured-text/LICENSE -------------------------------------------------------------------------------- /packages/guides-restructured-text/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-restructured-text/README.rst -------------------------------------------------------------------------------- /packages/guides-restructured-text/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-restructured-text/composer.json -------------------------------------------------------------------------------- /packages/guides-theme-bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-bootstrap/LICENSE -------------------------------------------------------------------------------- /packages/guides-theme-bootstrap/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-bootstrap/README.rst -------------------------------------------------------------------------------- /packages/guides-theme-bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-bootstrap/composer.json -------------------------------------------------------------------------------- /packages/guides-theme-bootstrap/resources/template/body/directive/tab.html.twig: -------------------------------------------------------------------------------- 1 | {{ renderNode(tab.value) }} 2 | -------------------------------------------------------------------------------- /packages/guides-theme-bootstrap/src/Bootstrap/Nodes/TabNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-bootstrap/src/Bootstrap/Nodes/TabNode.php -------------------------------------------------------------------------------- /packages/guides-theme-rst/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/.github/pull_request_template.md -------------------------------------------------------------------------------- /packages/guides-theme-rst/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides-theme-rst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/LICENSE -------------------------------------------------------------------------------- /packages/guides-theme-rst/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/README.rst -------------------------------------------------------------------------------- /packages/guides-theme-rst/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/composer.json -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/config/guides-theme-rst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/resources/config/guides-theme-rst.php -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/body/separator.rst.twig: -------------------------------------------------------------------------------- 1 | ==== 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/body/table.rst.twig: -------------------------------------------------------------------------------- 1 | 2 | {{ renderRstTable(node) | raw }} 3 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/guides/inline/literal.rst.twig: -------------------------------------------------------------------------------- 1 | \verb|{{ node.value|raw }}| 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/guides/inline/nbsp.rst.twig: -------------------------------------------------------------------------------- 1 | ~ 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/guides/structure/header/meta.rst.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/inline/emphasis.rst.twig: -------------------------------------------------------------------------------- 1 | *{{- node|plaintext -}}* 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/inline/plain-text.rst.twig: -------------------------------------------------------------------------------- 1 | {{- node.value|raw -}} 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/inline/strong.rst.twig: -------------------------------------------------------------------------------- 1 | **{{- node|plaintext -}}** 2 | -------------------------------------------------------------------------------- /packages/guides-theme-rst/resources/template/rst/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/resources/template/rst/template.php -------------------------------------------------------------------------------- /packages/guides-theme-rst/src/RstTheme/Renderer/RstRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/src/RstTheme/Renderer/RstRenderer.php -------------------------------------------------------------------------------- /packages/guides-theme-rst/src/RstTheme/Twig/RstExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides-theme-rst/src/RstTheme/Twig/RstExtension.php -------------------------------------------------------------------------------- /packages/guides/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/CONTRIBUTING.rst -------------------------------------------------------------------------------- /packages/guides/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/LICENSE -------------------------------------------------------------------------------- /packages/guides/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/README.rst -------------------------------------------------------------------------------- /packages/guides/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/composer.json -------------------------------------------------------------------------------- /packages/guides/resources/config/command_bus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/config/command_bus.php -------------------------------------------------------------------------------- /packages/guides/resources/config/guides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/config/guides.php -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/author.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/author.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/citation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/citation.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/code.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/code/highlighted-code.html.twig: -------------------------------------------------------------------------------- 1 | {{ node.value }} -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/collection.html.twig: -------------------------------------------------------------------------------- 1 | {{ renderNode(node) }} 2 | -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/figure.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/figure.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/footnote.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/footnote.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/image.html.twig -------------------------------------------------------------------------------- /packages/guides/resources/template/html/body/literal-block.html.twig: -------------------------------------------------------------------------------- 1 |
{{ node.value |raw }}
2 |
--------------------------------------------------------------------------------
/packages/guides/resources/template/html/body/math.html.twig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/math.html.twig
--------------------------------------------------------------------------------
/packages/guides/resources/template/html/body/quote.html.twig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/packages/guides/resources/template/html/body/quote.html.twig
--------------------------------------------------------------------------------
/packages/guides/resources/template/html/body/separator.html.twig:
--------------------------------------------------------------------------------
1 | @Anchor Section
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/anchor-failure/anchor-failure.log: -------------------------------------------------------------------------------- 1 | WARNING: Reference @Anchor Section could not be resolved in index 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/anchor-failure/anchor-failure.rst: -------------------------------------------------------------------------------- 1 | `@Anchor Section`_ 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/anonymous/anonymous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/anonymous/anonymous.html -------------------------------------------------------------------------------- /tests/Functional/tests/anonymous/anonymous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/anonymous/anonymous.rst -------------------------------------------------------------------------------- /tests/Functional/tests/anonymous/anonymous.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/anonymous/anonymous.tex -------------------------------------------------------------------------------- /tests/Functional/tests/bom/bom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/bom/bom.rst: -------------------------------------------------------------------------------- 1 | .. Should be a comment, with BOM 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/br/br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/br/br.html -------------------------------------------------------------------------------- /tests/Functional/tests/br/br.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/br/br.rst -------------------------------------------------------------------------------- /tests/Functional/tests/br/br.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/br/br.tex -------------------------------------------------------------------------------- /tests/Functional/tests/citation/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/citation/citation.html -------------------------------------------------------------------------------- /tests/Functional/tests/citation/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/citation/citation.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-block-diff/code-block-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block-diff/code-block-diff.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-block-diff/code-block-diff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block-diff/code-block-diff.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-block-no-xss/code-block-no-xss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block-no-xss/code-block-no-xss.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-block-no-xss/code-block-no-xss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block-no-xss/code-block-no-xss.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-block/code-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block/code-block.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-block/code-block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-block/code-block.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-java/code-java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-java/code-java.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-java/code-java.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-java/code-java.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-list/code-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-list/code-list.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-list/code-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-list/code-list.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code-role/code-role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-role/code-role.html -------------------------------------------------------------------------------- /tests/Functional/tests/code-role/code-role.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code-role/code-role.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code/code.html -------------------------------------------------------------------------------- /tests/Functional/tests/code/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code/code.rst -------------------------------------------------------------------------------- /tests/Functional/tests/code/code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/code/code.tex -------------------------------------------------------------------------------- /tests/Functional/tests/comment-3/comment-3.html: -------------------------------------------------------------------------------- 1 |... This is not a comment!
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/comment-3/comment-3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/comment-3/comment-3.rst -------------------------------------------------------------------------------- /tests/Functional/tests/comment-empty/comment-empty.html: -------------------------------------------------------------------------------- 1 |this is not a comment
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/comment-empty/comment-empty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/comment-empty/comment-empty.rst -------------------------------------------------------------------------------- /tests/Functional/tests/comment/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/comment/comment.html -------------------------------------------------------------------------------- /tests/Functional/tests/comment/comment.rst: -------------------------------------------------------------------------------- 1 | Text before 2 | 3 | .. Testing comment 4 | 5 | Text after 6 | -------------------------------------------------------------------------------- /tests/Functional/tests/comments-block-with-header/comments-block-with-header.html: -------------------------------------------------------------------------------- 1 |this is not a comment
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/comments-block/comments-block.html: -------------------------------------------------------------------------------- 1 |this is not a comment
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/comments-block/comments-block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/comments-block/comments-block.rst -------------------------------------------------------------------------------- /tests/Functional/tests/comments/comments.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/comments/comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/comments/comments.rst -------------------------------------------------------------------------------- /tests/Functional/tests/container-complex/container-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/container-complex/container-complex.html -------------------------------------------------------------------------------- /tests/Functional/tests/container-complex/container-complex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/container-complex/container-complex.rst -------------------------------------------------------------------------------- /tests/Functional/tests/container/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/container/container.html -------------------------------------------------------------------------------- /tests/Functional/tests/container/container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/container/container.rst -------------------------------------------------------------------------------- /tests/Functional/tests/crlf/crlf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/crlf/crlf.html -------------------------------------------------------------------------------- /tests/Functional/tests/crlf/crlf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/crlf/crlf.rst -------------------------------------------------------------------------------- /tests/Functional/tests/css/css.html: -------------------------------------------------------------------------------- 1 | SKIP style-css is not supported 2 |Testing page!
3 | -------------------------------------------------------------------------------- /tests/Functional/tests/css/css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/css/css.rst -------------------------------------------------------------------------------- /tests/Functional/tests/definition-list/definition-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/definition-list/definition-list.html -------------------------------------------------------------------------------- /tests/Functional/tests/definition-list/definition-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/definition-list/definition-list.rst -------------------------------------------------------------------------------- /tests/Functional/tests/div/div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/div/div.html -------------------------------------------------------------------------------- /tests/Functional/tests/div/div.rst: -------------------------------------------------------------------------------- 1 | .. div:: testing 2 | Hello! 3 | -------------------------------------------------------------------------------- /tests/Functional/tests/empty-list/empty-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/empty-list/empty-list.html -------------------------------------------------------------------------------- /tests/Functional/tests/empty-list/empty-list.log: -------------------------------------------------------------------------------- 1 | WARNING: List item without content 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/empty-list/empty-list.rst: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/empty-p/empty-p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/empty-p/empty-p.html -------------------------------------------------------------------------------- /tests/Functional/tests/empty-p/empty-p.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/empty-p/empty-p.rst -------------------------------------------------------------------------------- /tests/Functional/tests/empty/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Functional/tests/empty/empty.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Functional/tests/escape/escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/escape/escape.html -------------------------------------------------------------------------------- /tests/Functional/tests/escape/escape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/escape/escape.rst -------------------------------------------------------------------------------- /tests/Functional/tests/field-list/field-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/field-list/field-list.html -------------------------------------------------------------------------------- /tests/Functional/tests/field-list/field-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/field-list/field-list.rst -------------------------------------------------------------------------------- /tests/Functional/tests/figure/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/figure/figure.html -------------------------------------------------------------------------------- /tests/Functional/tests/figure/figure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/figure/figure.rst -------------------------------------------------------------------------------- /tests/Functional/tests/guilabel/guilabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/guilabel/guilabel.html -------------------------------------------------------------------------------- /tests/Functional/tests/guilabel/guilabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/guilabel/guilabel.rst -------------------------------------------------------------------------------- /tests/Functional/tests/ignored/ignored.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Functional/tests/ignored/ignored.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/ignored/ignored.rst -------------------------------------------------------------------------------- /tests/Functional/tests/image-follow/image-follow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/image-follow/image-follow.html -------------------------------------------------------------------------------- /tests/Functional/tests/image-follow/image-follow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/image-follow/image-follow.rst -------------------------------------------------------------------------------- /tests/Functional/tests/image-fullurl/image-fullurl.html: -------------------------------------------------------------------------------- 1 |Test
2 |EXTERNAL FILE INCLUDED!
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/include-external/include-external.rst: -------------------------------------------------------------------------------- 1 | EXTERNAL FILE INCLUDED! 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/inline-code/inline-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/inline-code/inline-code.html -------------------------------------------------------------------------------- /tests/Functional/tests/inline-code/inline-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/inline-code/inline-code.rst -------------------------------------------------------------------------------- /tests/Functional/tests/interpreted-text/interpreted-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/interpreted-text/interpreted-text.html -------------------------------------------------------------------------------- /tests/Functional/tests/interpreted-text/interpreted-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/interpreted-text/interpreted-text.rst -------------------------------------------------------------------------------- /tests/Functional/tests/italic/italic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/italic/italic.html -------------------------------------------------------------------------------- /tests/Functional/tests/italic/italic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/italic/italic.rst -------------------------------------------------------------------------------- /tests/Functional/tests/link-span/link-span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/link-span/link-span.html -------------------------------------------------------------------------------- /tests/Functional/tests/link-span/link-span.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/link-span/link-span.rst -------------------------------------------------------------------------------- /tests/Functional/tests/link-with-no-name/link-with-no-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/link-with-no-name/link-with-no-name.html -------------------------------------------------------------------------------- /tests/Functional/tests/link-with-no-name/link-with-no-name.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/link-with-no-name/link-with-no-name.rst -------------------------------------------------------------------------------- /tests/Functional/tests/links-whitespaces/links-whitespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/links-whitespaces/links-whitespaces.html -------------------------------------------------------------------------------- /tests/Functional/tests/links-whitespaces/links-whitespaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/links-whitespaces/links-whitespaces.rst -------------------------------------------------------------------------------- /tests/Functional/tests/links/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/links/links.html -------------------------------------------------------------------------------- /tests/Functional/tests/links/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/links/links.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list-dash/list-dash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-dash/list-dash.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-dash/list-dash.rst: -------------------------------------------------------------------------------- 1 | - This is a list 2 | - Using dashes 3 | -------------------------------------------------------------------------------- /tests/Functional/tests/list-enumerated/list-enumerated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-enumerated/list-enumerated.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-enumerated/list-enumerated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-enumerated/list-enumerated.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list-indented/list-indented.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-indented/list-indented.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-indented/list-indented.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-indented/list-indented.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list-mix/list-mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-mix/list-mix.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-mix/list-mix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-mix/list-mix.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list-nested/list-nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-nested/list-nested.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-nested/list-nested.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-nested/list-nested.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list-whitespace/list-whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-whitespace/list-whitespace.html -------------------------------------------------------------------------------- /tests/Functional/tests/list-whitespace/list-whitespace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list-whitespace/list-whitespace.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list/list.html -------------------------------------------------------------------------------- /tests/Functional/tests/list/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list/list.rst -------------------------------------------------------------------------------- /tests/Functional/tests/list/list.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/list/list.tex -------------------------------------------------------------------------------- /tests/Functional/tests/literal/literal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/literal/literal.html -------------------------------------------------------------------------------- /tests/Functional/tests/literal/literal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/literal/literal.rst -------------------------------------------------------------------------------- /tests/Functional/tests/nbsp-role/nbsp-role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/nbsp-role/nbsp-role.html -------------------------------------------------------------------------------- /tests/Functional/tests/nbsp-role/nbsp-role.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/nbsp-role/nbsp-role.rst -------------------------------------------------------------------------------- /tests/Functional/tests/nbsp/nbsp.html: -------------------------------------------------------------------------------- 1 |This is a non breakable space: a b
2 | -------------------------------------------------------------------------------- /tests/Functional/tests/nbsp/nbsp.rst: -------------------------------------------------------------------------------- 1 | This is a non breakable space: a~b 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/no-eager-literals/no-eager-literals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/no-eager-literals/no-eager-literals.html -------------------------------------------------------------------------------- /tests/Functional/tests/no-eager-literals/no-eager-literals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/no-eager-literals/no-eager-literals.rst -------------------------------------------------------------------------------- /tests/Functional/tests/paragraph/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/paragraph/paragraph.html -------------------------------------------------------------------------------- /tests/Functional/tests/paragraph/paragraph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/paragraph/paragraph.rst -------------------------------------------------------------------------------- /tests/Functional/tests/paragraph/paragraph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/paragraph/paragraph.tex -------------------------------------------------------------------------------- /tests/Functional/tests/pull-quote/pull-quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/pull-quote/pull-quote.html -------------------------------------------------------------------------------- /tests/Functional/tests/pull-quote/pull-quote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/pull-quote/pull-quote.rst -------------------------------------------------------------------------------- /tests/Functional/tests/quote-title/quote-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote-title/quote-title.html -------------------------------------------------------------------------------- /tests/Functional/tests/quote-title/quote-title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote-title/quote-title.rst -------------------------------------------------------------------------------- /tests/Functional/tests/quote/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote/quote.html -------------------------------------------------------------------------------- /tests/Functional/tests/quote/quote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote/quote.rst -------------------------------------------------------------------------------- /tests/Functional/tests/quote/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote/quote.tex -------------------------------------------------------------------------------- /tests/Functional/tests/quote2/quote2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote2/quote2.html -------------------------------------------------------------------------------- /tests/Functional/tests/quote2/quote2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote2/quote2.rst -------------------------------------------------------------------------------- /tests/Functional/tests/quote3/quote3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote3/quote3.html -------------------------------------------------------------------------------- /tests/Functional/tests/quote3/quote3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/quote3/quote3.rst -------------------------------------------------------------------------------- /tests/Functional/tests/raw/raw.html: -------------------------------------------------------------------------------- 1 |Testing raw!
2 | Underlined! 3 | -------------------------------------------------------------------------------- /tests/Functional/tests/raw/raw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/raw/raw.rst -------------------------------------------------------------------------------- /tests/Functional/tests/rubric/rubric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/rubric/rubric.html -------------------------------------------------------------------------------- /tests/Functional/tests/rubric/rubric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/rubric/rubric.rst -------------------------------------------------------------------------------- /tests/Functional/tests/section-nesting/section-nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/section-nesting/section-nesting.html -------------------------------------------------------------------------------- /tests/Functional/tests/section-nesting/section-nesting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/section-nesting/section-nesting.rst -------------------------------------------------------------------------------- /tests/Functional/tests/separator/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/separator/separator.html -------------------------------------------------------------------------------- /tests/Functional/tests/separator/separator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/separator/separator.rst -------------------------------------------------------------------------------- /tests/Functional/tests/separator/separator.tex: -------------------------------------------------------------------------------- 1 | Testing separator 2 | \ \ 3 | Hey! 4 | -------------------------------------------------------------------------------- /tests/Functional/tests/sidebar/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/sidebar/sidebar.html -------------------------------------------------------------------------------- /tests/Functional/tests/sidebar/sidebar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/sidebar/sidebar.rst -------------------------------------------------------------------------------- /tests/Functional/tests/strong/strong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/strong/strong.html -------------------------------------------------------------------------------- /tests/Functional/tests/strong/strong.rst: -------------------------------------------------------------------------------- 1 | Testing the **strong emphasis** 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-complex-row-span/table-grid-complex-row-span.html: -------------------------------------------------------------------------------- 1 | SKIP: Not supported right now 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-error1/table-grid-error1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-error1/table-grid-error1.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-error1/table-grid-error1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-error1/table-grid-error1.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-header/table-grid-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-header/table-grid-header.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-header/table-grid-header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-header/table-grid-header.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-large/table-grid-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-large/table-grid-large.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-large/table-grid-large.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-large/table-grid-large.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-utf8/table-grid-utf8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-utf8/table-grid-utf8.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid-utf8/table-grid-utf8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid-utf8/table-grid-utf8.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid/table-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid/table-grid.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-grid/table-grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-grid/table-grid.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-simple/table-simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-simple/table-simple.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-simple/table-simple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-simple/table-simple.rst -------------------------------------------------------------------------------- /tests/Functional/tests/table-simple/table-simple.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-simple/table-simple.tex -------------------------------------------------------------------------------- /tests/Functional/tests/table-simple3/table-simple3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-simple3/table-simple3.html -------------------------------------------------------------------------------- /tests/Functional/tests/table-simple3/table-simple3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/table-simple3/table-simple3.rst -------------------------------------------------------------------------------- /tests/Functional/tests/text-roles/text-roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/text-roles/text-roles.html -------------------------------------------------------------------------------- /tests/Functional/tests/text-roles/text-roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/text-roles/text-roles.rst -------------------------------------------------------------------------------- /tests/Functional/tests/titles-auto/titles-auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles-auto/titles-auto.html -------------------------------------------------------------------------------- /tests/Functional/tests/titles-auto/titles-auto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles-auto/titles-auto.rst -------------------------------------------------------------------------------- /tests/Functional/tests/titles-overlined/titles-overlined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles-overlined/titles-overlined.html -------------------------------------------------------------------------------- /tests/Functional/tests/titles-overlined/titles-overlined.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles-overlined/titles-overlined.rst -------------------------------------------------------------------------------- /tests/Functional/tests/titles/titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles/titles.html -------------------------------------------------------------------------------- /tests/Functional/tests/titles/titles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles/titles.rst -------------------------------------------------------------------------------- /tests/Functional/tests/titles/titles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/titles/titles.tex -------------------------------------------------------------------------------- /tests/Functional/tests/unknown-directive/unknown-directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/unknown-directive/unknown-directive.html -------------------------------------------------------------------------------- /tests/Functional/tests/unknown-directive/unknown-directive.rst: -------------------------------------------------------------------------------- 1 | .. unknown-directive:: 2 | -------------------------------------------------------------------------------- /tests/Functional/tests/variable-wrap/variable-wrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/variable-wrap/variable-wrap.html -------------------------------------------------------------------------------- /tests/Functional/tests/variable-wrap/variable-wrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/variable-wrap/variable-wrap.rst -------------------------------------------------------------------------------- /tests/Functional/tests/versionchanges/versionchanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/versionchanges/versionchanges.html -------------------------------------------------------------------------------- /tests/Functional/tests/versionchanges/versionchanges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/versionchanges/versionchanges.rst -------------------------------------------------------------------------------- /tests/Functional/tests/versions/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/versions/versions.html -------------------------------------------------------------------------------- /tests/Functional/tests/versions/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/versions/versions.rst -------------------------------------------------------------------------------- /tests/Functional/tests/wrap/wrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/wrap/wrap.html -------------------------------------------------------------------------------- /tests/Functional/tests/wrap/wrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Functional/tests/wrap/wrap.rst -------------------------------------------------------------------------------- /tests/Integration/IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/IntegrationTest.php -------------------------------------------------------------------------------- /tests/Integration/tests-full/index/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests-full/index/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests-full/index/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests-full/index/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/default-menu-md/input/anotherPage.md: -------------------------------------------------------------------------------- 1 | # Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/default-menu-md/input/index.md: -------------------------------------------------------------------------------- 1 | # Document Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/default-menu-md/input/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/default-menu-md/input/yetAnotherPage.md: -------------------------------------------------------------------------------- 1 | # Yet Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/anotherPage.md: -------------------------------------------------------------------------------- 1 | # Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir1/index.md: -------------------------------------------------------------------------------- 1 | # Dir 1 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/index.md: -------------------------------------------------------------------------------- 1 | # Dir 2 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page in dir 2 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/subdir1/index.md: -------------------------------------------------------------------------------- 1 | # Subdir 1 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/subdir2/index.md: -------------------------------------------------------------------------------- 1 | # Subdir 2 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/subdir2/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page in dir 2 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/subdir2/subsubdir1/index.md: -------------------------------------------------------------------------------- 1 | # Subsubdir 1 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/dir2/yetAnotherPage.md: -------------------------------------------------------------------------------- 1 | # Yet Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/index.md: -------------------------------------------------------------------------------- 1 | # Document Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/multi-nested-menu-md/input/yetAnotherPage.md: -------------------------------------------------------------------------------- 1 | # Yet Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/anotherPage.md: -------------------------------------------------------------------------------- 1 | # Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/dir1/index.md: -------------------------------------------------------------------------------- 1 | # Dir 1 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/dir2/index.md: -------------------------------------------------------------------------------- 1 | # Dir 2 Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/dir2/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page in dir 2 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/index.md: -------------------------------------------------------------------------------- 1 | # Document Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests-full/markdown-full/nested-menu-md/input/yetAnotherPage.md: -------------------------------------------------------------------------------- 1 | # Yet Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/anchor/anchor-to-page/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/anchor/anchor-to-page/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/anchor/anchor-to-title/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/anchor/anchor-to-title/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/api/api-class-role/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/api/api-class-role/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/api/api-class-role/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/api/api-class-role/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/api/api-class-role/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/api/api-class-role/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/class/class-directive/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/class/class-directive/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/class/class-in-list/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/class/class-in-list/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/class/class-in-list/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/class/class-in-list/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/code/code-block-empty/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/code/code-block-empty/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/code/code-block-lineno/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/code/code-block-lineno/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/code/literalinclude/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/code/literalinclude/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/code/literalinclude/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/code/literalinclude/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/comments/comment-nested/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/comments/comment-nested/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/confval/confval-name/input/another.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/confval/confval-name/input/another.rst -------------------------------------------------------------------------------- /tests/Integration/tests/confval/confval-name/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/confval/confval-name/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/confval/confval-no-title/expected/logs/warning.log: -------------------------------------------------------------------------------- 1 | app.WARNING: A directive must have a title 2 | -------------------------------------------------------------------------------- /tests/Integration/tests/confval/confval-noindex/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/confval/confval-noindex/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/confval/confval-warning/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/confval/confval-warning/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/directives/directive-with-warning/expected/logs/warning.log: -------------------------------------------------------------------------------- 1 | app.WARNING: Test logging in directives {"rst-file":"index.rst","currentLineNumber":4} [] 2 | -------------------------------------------------------------------------------- /tests/Integration/tests/directives/include/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/directives/include/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/directives/include/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/directives/include/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/directives/youtube/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/directives/youtube/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/directives/youtube/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/directives/youtube/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/graphs/plantuml-inline/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/graphs/plantuml-inline/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/graphs/plantuml-inline/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/graphs/plantuml-inline/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-anchor/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-anchor/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-anchor/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-anchor/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-email/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-email/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-email/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-email/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-page/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-page/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-page/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-page/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/hyperlink-to-page/input/page1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/hyperlink-to-page/input/page1.rst -------------------------------------------------------------------------------- /tests/Integration/tests/images/figure-relative/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/figure-relative/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/images/figure-relative/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/figure-relative/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/images/image-absolute/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/image-absolute/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/images/image-absolute/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/image-absolute/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/images/image-relative/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/image-relative/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/images/image-target/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/image-target/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/images/image-target/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/images/image-target/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/include-parts/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/include-parts/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/include-parts/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/include-parts/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/include-parts/input/part1.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/include-parts/input/part1.rst.txt -------------------------------------------------------------------------------- /tests/Integration/tests/include-parts/input/part2.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/include-parts/input/part2.rst.txt -------------------------------------------------------------------------------- /tests/Integration/tests/include-parts/input/part3.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/include-parts/input/part3.rst.txt -------------------------------------------------------------------------------- /tests/Integration/tests/index-html-only/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/index-html-only/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/index-html-only/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/index-html-only/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/index-html-only/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/index-html-only/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/inline-combinations/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/inline-combinations/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/input-file/expected/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/input-file/expected/README.html -------------------------------------------------------------------------------- /tests/Integration/tests/input-file/input/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/input-file/input/README.rst -------------------------------------------------------------------------------- /tests/Integration/tests/input-file/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/input-file/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/interlink/interlink-inventory-not-found/expected/logs/warning.log: -------------------------------------------------------------------------------- 1 | app.WARNING: Interlink inventory not found 2 | -------------------------------------------------------------------------------- /tests/Integration/tests/last-rendered/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/last-rendered/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/last-rendered/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/last-rendered/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/latex/latex-confval/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/latex/latex-confval/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/latex/latex-confval/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/latex/latex-confval/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/latex/latex-index/expected/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/latex/latex-index/expected/index.tex -------------------------------------------------------------------------------- /tests/Integration/tests/latex/latex-index/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/latex/latex-index/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/latex/latex-index/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/latex/latex-index/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/big-numbers/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/big-numbers/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/lists/big-numbers/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/big-numbers/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/list-warning/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/list-warning/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/list-with-code/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/list-with-code/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/lists-hlist/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/lists-hlist/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/lists/lists-hlist/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/lists-hlist/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/lists-nested/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/lists-nested/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/lists/numbered-lists/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/lists/numbered-lists/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/blockquote-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/blockquote-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/code-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/code-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/code-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/code-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/code-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/code-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/emphasis-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/emphasis-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/emphasis-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/emphasis-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/html-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/html-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/html-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/html-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/html-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/html-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/image-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/image-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/image-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/image-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/image-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/image-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/image-path-relative-md/input/dir1/dir2/somePage.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Page in dir 2 3 | 4 | Lorem Ipsum `Dolor`. 5 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/image-path-relative-md/input/index.md: -------------------------------------------------------------------------------- 1 | # Document Title 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/index-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/index-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/index-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-name-md/input/anotherPage.md: -------------------------------------------------------------------------------- 1 | # Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-name-md/input/readme.md: -------------------------------------------------------------------------------- 1 | # Sample Markdown Document 2 | 3 | Lorem Ipsum 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/index-name-md/input/yetAnotherPage.md: -------------------------------------------------------------------------------- 1 | # Yet Another Page 2 | 3 | Lorem Ipsum Dolor. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/link-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/link-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/link-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-page-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/link-page-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-page-md/input/page1.md: -------------------------------------------------------------------------------- 1 | # Page 1 2 | 3 | This is a Markdown document with some basic formatting. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/link-page-md/input/subpages/subpage1.md: -------------------------------------------------------------------------------- 1 | # Subpage 1 2 | 3 | This is a Markdown document with some basic formatting. 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/linked-image-md/input/skip: -------------------------------------------------------------------------------- 1 | Linked images are currently not supported -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/lists-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/lists-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/lists-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/lists-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/lists-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/lists-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/paragraph-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/paragraph-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/readme-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/readme-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/readme-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/readme-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/sections-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/sections-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/sections-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/sections-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/table-md/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/table-md/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/table-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/table-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/table-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/table-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/warning-md/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/warning-md/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/warning-md/input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/markdown/warning-md/input/index.md -------------------------------------------------------------------------------- /tests/Integration/tests/markdown/warning-md/input/skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Integration/tests/meta/config-file/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/config-file/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/meta/config-file/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/config-file/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/meta/config-file/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/config-file/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/meta/meta-data/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/meta-data/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/meta/meta-data/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/meta-data/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/meta/project-meta/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/project-meta/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/meta/project-meta/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/project-meta/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/meta/project-title/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/project-title/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/meta/settings/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/settings/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/meta/settings/input/guides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/settings/input/guides.xml -------------------------------------------------------------------------------- /tests/Integration/tests/meta/settings/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/meta/settings/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/breadcrumb/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/breadcrumb/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/breadcrumb/input/page1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/breadcrumb/input/page1.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/breadcrumb/input/page2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/breadcrumb/input/page2.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/docref/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/docref/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/docref/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/docref/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/references/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/references/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/navigation/references/input/page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/navigation/references/input/page.rst -------------------------------------------------------------------------------- /tests/Integration/tests/numeral-rst/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/numeral-rst/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/numeral-rst/expected/objects.inv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/numeral-rst/expected/objects.inv.json -------------------------------------------------------------------------------- /tests/Integration/tests/numeral-rst/input/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/numeral-rst/input/404.rst -------------------------------------------------------------------------------- /tests/Integration/tests/numeral-rst/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/numeral-rst/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/option/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/option/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/option/expected/objects.inv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/option/expected/objects.inv.json -------------------------------------------------------------------------------- /tests/Integration/tests/option/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/option/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/sections/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/sections/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/sections/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/sections/input/index.rst -------------------------------------------------------------------------------- /tests/Integration/tests/tables/simple-table-error1/expected/logs/warning.log: -------------------------------------------------------------------------------- 1 | Malformed table: content 2 | -------------------------------------------------------------------------------- /tests/Integration/tests/tables/table-csv-table-with-header/input/test.csv: -------------------------------------------------------------------------------- 1 | col 1, col 2 2 | a, b 3 | c, d 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/tables/table-csv-table/input/test.csv: -------------------------------------------------------------------------------- 1 | col 1, col 2 2 | a, b 3 | c, d 4 | -------------------------------------------------------------------------------- /tests/Integration/tests/text-with-pipe/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/text-with-pipe/expected/index.html -------------------------------------------------------------------------------- /tests/Integration/tests/text-with-pipe/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/Integration/tests/text-with-pipe/input/index.rst -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tools/integration-test-copy-baseline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tools/integration-test-copy-baseline.php -------------------------------------------------------------------------------- /tools/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tools/license.sh -------------------------------------------------------------------------------- /tools/xmllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/guides/HEAD/tools/xmllint.sh --------------------------------------------------------------------------------