├── .github ├── create_release_changes.sh ├── define_release_version.sh └── workflows │ ├── build.yml │ └── pr.yml ├── .gitignore ├── .ide └── intellij-codestyle.xml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cli ├── Dockerfile ├── pom.xml ├── scripts │ └── plantuml └── src │ ├── assembly │ ├── bin │ │ ├── text2confl │ │ └── text2confl.cmd │ └── cli-package.xml │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── github │ │ │ └── zeldigas │ │ │ └── text2confl │ │ │ └── cli │ │ │ ├── CliOptions.kt │ │ │ ├── ClicktExt.kt │ │ │ ├── Convert.kt │ │ │ ├── DumpToMarkdown.kt │ │ │ ├── Logging.kt │ │ │ ├── Main.kt │ │ │ ├── PrintingUploadOperationsTracker.kt │ │ │ └── Upload.kt │ └── resources │ │ └── logback.xml │ └── test │ ├── kotlin │ └── com │ │ └── github │ │ └── zeldigas │ │ └── text2confl │ │ └── cli │ │ ├── ConfluencePublisherTest.kt │ │ ├── ConvertTest.kt │ │ ├── PrintingUploadOperationsTrackerTest.kt │ │ └── UploadTest.kt │ └── resources │ └── logback-test.xml ├── confluence-client ├── pom.xml └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── github │ │ └── zeldigas │ │ └── confclient │ │ ├── Auth.kt │ │ ├── ConfluenceClient.kt │ │ ├── ConfluenceClientConfig.kt │ │ ├── ConfluenceClientImpl.kt │ │ ├── ConfluenceCloudClient.kt │ │ ├── ConfluenceUrls.kt │ │ ├── HttpExt.kt │ │ ├── InputData.kt │ │ ├── PagedFetcher.kt │ │ ├── RateLimiting.kt │ │ └── model │ │ ├── ConfluencePage.kt │ │ ├── Space.kt │ │ └── User.kt │ └── test │ ├── kotlin │ └── com │ │ └── github │ │ └── zeldigas │ │ └── confclient │ │ ├── ConfluenceClientImplTest.kt │ │ ├── ConfluenceCloudClientTest.kt │ │ └── ConfluenceUrlsKtTest.kt │ └── resources │ ├── data │ ├── requests │ │ └── api-v2 │ │ │ ├── page-create.json │ │ │ └── page-update.json │ └── responses │ │ ├── api-v1 │ │ └── page-after-create.json │ │ ├── api-v2 │ │ ├── page-after-create.json │ │ ├── page-after-rename.json │ │ ├── page-after-update.json │ │ ├── page-attachments.json │ │ ├── page-labels.json │ │ ├── page-properties.json │ │ ├── page2-attachments.json │ │ ├── space-home.json │ │ └── spaces.json │ │ └── attachment-upload-result.json │ └── logback-test.xml ├── convert ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── github │ │ │ └── zeldigas │ │ │ └── text2confl │ │ │ └── convert │ │ │ ├── AttachmentCollector.kt │ │ │ ├── Converter.kt │ │ │ ├── FileConverter.kt │ │ │ ├── PageAttributes.kt │ │ │ ├── PageContent.kt │ │ │ ├── PagesDetector.kt │ │ │ ├── asciidoc │ │ │ ├── AsciidocAttachmentCollector.kt │ │ │ ├── AsciidocFileConverter.kt │ │ │ ├── AsciidocParser.kt │ │ │ ├── AsciidocReferenceProvider.kt │ │ │ ├── AsciidoctorConfiguration.kt │ │ │ ├── DefaultMacros.kt │ │ │ └── TemplateExtraction.kt │ │ │ ├── confluence │ │ │ ├── LanguageMapper.kt │ │ │ └── ReferenceProvider.kt │ │ │ └── markdown │ │ │ ├── ConfluenceStorageFormatConverters.kt │ │ │ ├── HtmlWriterExt.kt │ │ │ ├── MarkdownAttachmentCollector.kt │ │ │ ├── MarkdownConfiguration.kt │ │ │ ├── MarkdownFileConverter.kt │ │ │ ├── MarkdownParser.kt │ │ │ ├── diagram │ │ │ ├── DiagramGenerator.kt │ │ │ ├── DiagramMaker.kt │ │ │ ├── DiagramsExtension.kt │ │ │ ├── Exec.kt │ │ │ ├── KrokiDiagramsGenerator.kt │ │ │ ├── MermaidDiagramsGenerator.kt │ │ │ └── PlantUmlDiagramsGenerator.kt │ │ │ ├── export │ │ │ ├── ConfluenceCustomNodeRenderer.kt │ │ │ ├── ConfluenceLinksResolver.kt │ │ │ ├── ConfluenceUserResolver.kt │ │ │ └── HtmlToMarkdownConverter.kt │ │ │ └── ext │ │ │ ├── ConfluenceUserExtension.kt │ │ │ ├── DetailsExtension.kt │ │ │ ├── NodeExt.kt │ │ │ ├── SimpleAdmonitionExtension.kt │ │ │ ├── SimpleAttributesExtension.kt │ │ │ ├── SimpleMacroExtension.kt │ │ │ └── StatusExtension.kt │ └── resources │ │ └── com │ │ └── github │ │ └── zeldigas │ │ └── text2confl │ │ ├── asciidoc │ │ ├── _code_block.html.slim │ │ ├── _footnotes.html.slim │ │ ├── _toc.html.slim │ │ ├── block_admonition.html.slim │ │ ├── block_colist.html.slim │ │ ├── block_example.html.slim │ │ ├── block_image.html.slim │ │ ├── block_listing.html.slim │ │ ├── block_literal.html.slim │ │ ├── block_olist.html.slim │ │ ├── block_paragraph.html.slim │ │ ├── block_preamble.html.slim │ │ ├── block_quote.html.slim │ │ ├── block_table.html.slim │ │ ├── block_toc.html.slim │ │ ├── block_ulist.html.slim │ │ ├── embedded.html.slim │ │ ├── helpers.rb │ │ ├── inline_anchor.html.slim │ │ ├── inline_callout.html.slim │ │ ├── inline_footnote.html.slim │ │ ├── inline_image.html.slim │ │ ├── inline_quoted.html.slim │ │ └── section.html.slim │ │ └── asciidocmacros │ │ ├── SimpleInlineMacro.rb │ │ ├── StatusMacro.rb │ │ └── UserMacro.rb │ └── test │ ├── kotlin │ └── com │ │ └── github │ │ └── zeldigas │ │ └── text2confl │ │ └── convert │ │ ├── PageContentTest.kt │ │ ├── UniversalConverterTest.kt │ │ ├── asciidoc │ │ ├── AsciidocFileConverterTest.kt │ │ ├── RenderingOfAdmonitionTest.kt │ │ ├── RenderingOfBasicTextFeatures.kt │ │ ├── RenderingOfCodeBlocksTest.kt │ │ ├── RenderingOfConfluenceSpecificFeaturesTest.kt │ │ ├── RenderingOfDiagramsTest.kt │ │ ├── RenderingOfHeadingsTest.kt │ │ ├── RenderingOfImagesTest.kt │ │ ├── RenderingOfLinksTest.kt │ │ ├── RenderingOfTablesTest.kt │ │ ├── RenderingOfTaskListsTest.kt │ │ ├── RenderingOfTocTest.kt │ │ └── RenderingTestBase.kt │ │ ├── confluence │ │ ├── LanguageMapperImplTest.kt │ │ └── ReferenceProviderImplTest.kt │ │ └── markdown │ │ ├── MarkdownAttachmentCollectorTest.kt │ │ ├── MarkdownFileConverterTest.kt │ │ ├── RenderingOfAdmonitionTest.kt │ │ ├── RenderingOfCodeBlocksTest.kt │ │ ├── RenderingOfConfluenceSpecificFeaturesTest.kt │ │ ├── RenderingOfDiagramsTest.kt │ │ ├── RenderingOfHeadingsTest.kt │ │ ├── RenderingOfImagesTest.kt │ │ ├── RenderingOfLinksTest.kt │ │ ├── RenderingOfRawConfluenceMarkupTest.kt │ │ ├── RenderingOfSimpleMacroTest.kt │ │ ├── RenderingOfTablesTest.kt │ │ ├── RenderingOfTaskListsTest.kt │ │ ├── RenderingOfTocTest.kt │ │ ├── RenderingTestBase.kt │ │ ├── diagram │ │ ├── DiagramMakerTest.kt │ │ ├── DiagramMakersTest.kt │ │ ├── KrokiDiagramsGeneratorTest.kt │ │ ├── MermaidDiagramsGeneratorTest.kt │ │ ├── OsCommandExecutorTest.kt │ │ └── PlantUmlDiagramsGeneratorTest.kt │ │ └── export │ │ └── HtmlToMarkdownConverterTest.kt │ └── resources │ ├── convert │ ├── basic.html │ ├── basic.md │ ├── code.html │ ├── code.md │ ├── confluence-specific.html │ ├── confluence-specific.md │ ├── links.html │ ├── links.md │ ├── tables.html │ ├── tables.md │ ├── user-refs.html │ └── user-refs.md │ └── logback-test.xml ├── core ├── pom.xml └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── github │ │ └── zeldigas │ │ └── text2confl │ │ └── core │ │ ├── ContentValidator.kt │ │ ├── ServiceProvider.kt │ │ ├── config │ │ ├── ConverterConfig.kt │ │ ├── DirectoryConfig.kt │ │ ├── IO.kt │ │ └── UploadConfig.kt │ │ ├── export │ │ ├── ConfluenceLinkResolverImpl.kt │ │ ├── ConfluenceUserResolverImpl.kt │ │ └── PageExporter.kt │ │ └── upload │ │ ├── ConfluencePagesExt.kt │ │ ├── ContentUploadErrors.kt │ │ ├── ContentUploader.kt │ │ ├── DryRunClient.kt │ │ ├── PageUploadOperations.kt │ │ ├── PageUploadOperationsImpl.kt │ │ └── UploadOperationTracker.kt │ └── test │ ├── kotlin │ └── com │ │ └── github │ │ └── zeldigas │ │ └── text2confl │ │ └── core │ │ ├── ContentValidatorImplTest.kt │ │ ├── ServiceProviderImplTest.kt │ │ ├── config │ │ ├── ConverterConfigTest.kt │ │ └── DirectoryConfigTest.kt │ │ ├── export │ │ ├── ConfluenceLinkResolverImplTest.kt │ │ └── PageExporterTest.kt │ │ └── upload │ │ ├── ContentUploaderTest.kt │ │ ├── DryRunClientTest.kt │ │ └── PageUploadOperationsImplTest.kt │ └── resources │ ├── data │ └── .text2confl.yml │ └── logback-test.xml ├── docs ├── .text2confl.yml ├── config.schema.json ├── configuration-reference.md ├── contribution.md ├── storage-formats.md ├── storage-formats │ ├── asciidoc.adoc │ ├── asciidoc │ │ ├── _assets │ │ │ ├── asciidoctor-logo.svg │ │ │ ├── example.adoc │ │ │ ├── included.adoc │ │ │ └── test.puml │ │ ├── admonitions.adoc │ │ ├── basic.adoc │ │ ├── code.adoc │ │ ├── confluence-specific.adoc │ │ ├── diagrams.adoc │ │ ├── includes.adoc │ │ ├── links-images.adoc │ │ ├── tables.adoc │ │ └── toc.adoc │ ├── markdown.md │ └── markdown │ │ ├── _assets │ │ ├── attached_not_referenced.txt │ │ └── sample_file.txt │ │ ├── basic.md │ │ ├── code.md │ │ ├── confluence-specific.md │ │ ├── diagrams.md │ │ ├── links-images.md │ │ ├── markdown.png │ │ └── tables.md ├── text2confl-page-tree.png ├── user-guide.md └── user-guide │ ├── code-blocks.md │ ├── image-attributes.md │ ├── multitenant.md │ ├── page-attributes.md │ ├── pages-cleanup.md │ ├── table-colors.md │ ├── toc-attributes.md │ └── virtual-pages.md ├── gem-kroki └── pom.xml ├── pom.xml └── renovate.json5 /.github/create_release_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.github/create_release_changes.sh -------------------------------------------------------------------------------- /.github/define_release_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.github/define_release_version.sh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.gitignore -------------------------------------------------------------------------------- /.ide/intellij-codestyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/.ide/intellij-codestyle.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/README.md -------------------------------------------------------------------------------- /cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/Dockerfile -------------------------------------------------------------------------------- /cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/pom.xml -------------------------------------------------------------------------------- /cli/scripts/plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/scripts/plantuml -------------------------------------------------------------------------------- /cli/src/assembly/bin/text2confl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/assembly/bin/text2confl -------------------------------------------------------------------------------- /cli/src/assembly/bin/text2confl.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/assembly/bin/text2confl.cmd -------------------------------------------------------------------------------- /cli/src/assembly/cli-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/assembly/cli-package.xml -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/CliOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/CliOptions.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/ClicktExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/ClicktExt.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Convert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Convert.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/DumpToMarkdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/DumpToMarkdown.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Logging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Logging.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Main.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/PrintingUploadOperationsTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/PrintingUploadOperationsTracker.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Upload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/kotlin/com/github/zeldigas/text2confl/cli/Upload.kt -------------------------------------------------------------------------------- /cli/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/main/resources/logback.xml -------------------------------------------------------------------------------- /cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/ConfluencePublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/ConfluencePublisherTest.kt -------------------------------------------------------------------------------- /cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/ConvertTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/ConvertTest.kt -------------------------------------------------------------------------------- /cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/PrintingUploadOperationsTrackerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/PrintingUploadOperationsTrackerTest.kt -------------------------------------------------------------------------------- /cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/UploadTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/test/kotlin/com/github/zeldigas/text2confl/cli/UploadTest.kt -------------------------------------------------------------------------------- /cli/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/cli/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /confluence-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/pom.xml -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/Auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/Auth.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClient.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClientConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClientConfig.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClientImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceClientImpl.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceCloudClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceCloudClient.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceUrls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/ConfluenceUrls.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/HttpExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/HttpExt.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/InputData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/InputData.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/PagedFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/PagedFetcher.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/RateLimiting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/RateLimiting.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/ConfluencePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/ConfluencePage.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/Space.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/Space.kt -------------------------------------------------------------------------------- /confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/main/kotlin/com/github/zeldigas/confclient/model/User.kt -------------------------------------------------------------------------------- /confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceClientImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceClientImplTest.kt -------------------------------------------------------------------------------- /confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceCloudClientTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceCloudClientTest.kt -------------------------------------------------------------------------------- /confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceUrlsKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/kotlin/com/github/zeldigas/confclient/ConfluenceUrlsKtTest.kt -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/requests/api-v2/page-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/requests/api-v2/page-create.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/requests/api-v2/page-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/requests/api-v2/page-update.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v1/page-after-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v1/page-after-create.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-after-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-after-create.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-after-rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-after-rename.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-after-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-after-update.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-attachments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-attachments.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-labels.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page-properties.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/page2-attachments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/page2-attachments.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/space-home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/space-home.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/api-v2/spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/api-v2/spaces.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/data/responses/attachment-upload-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/data/responses/attachment-upload-result.json -------------------------------------------------------------------------------- /confluence-client/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/confluence-client/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /convert/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/pom.xml -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/AttachmentCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/AttachmentCollector.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/Converter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/Converter.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/FileConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/FileConverter.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PageAttributes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PageAttributes.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PageContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PageContent.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PagesDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/PagesDetector.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocAttachmentCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocAttachmentCollector.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocFileConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocFileConverter.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocParser.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocReferenceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocReferenceProvider.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidoctorConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidoctorConfiguration.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/DefaultMacros.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/DefaultMacros.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/TemplateExtraction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/TemplateExtraction.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/confluence/LanguageMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/confluence/LanguageMapper.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/confluence/ReferenceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/confluence/ReferenceProvider.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ConfluenceStorageFormatConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ConfluenceStorageFormatConverters.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/HtmlWriterExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/HtmlWriterExt.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownAttachmentCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownAttachmentCollector.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownConfiguration.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownFileConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownFileConverter.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownParser.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramGenerator.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMaker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMaker.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramsExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramsExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/Exec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/Exec.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/KrokiDiagramsGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/KrokiDiagramsGenerator.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/MermaidDiagramsGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/MermaidDiagramsGenerator.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/PlantUmlDiagramsGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/PlantUmlDiagramsGenerator.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceCustomNodeRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceCustomNodeRenderer.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceLinksResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceLinksResolver.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceUserResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/ConfluenceUserResolver.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/HtmlToMarkdownConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/HtmlToMarkdownConverter.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/ConfluenceUserExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/ConfluenceUserExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/DetailsExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/DetailsExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/NodeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/NodeExt.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleAdmonitionExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleAdmonitionExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleAttributesExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleAttributesExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleMacroExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/SimpleMacroExtension.kt -------------------------------------------------------------------------------- /convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/StatusExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/kotlin/com/github/zeldigas/text2confl/convert/markdown/ext/StatusExtension.kt -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_code_block.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_code_block.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_footnotes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_footnotes.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_toc.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/_toc.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_admonition.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_admonition.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_colist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_colist.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_example.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_example.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_image.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_image.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_listing.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_listing.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_literal.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_literal.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_olist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_olist.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_paragraph.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_paragraph.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_preamble.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_preamble.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_quote.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_quote.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_table.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_table.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_toc.html.slim: -------------------------------------------------------------------------------- 1 | include _toc.html 2 | -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_ulist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/block_ulist.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/embedded.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/embedded.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/helpers.rb -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_anchor.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_anchor.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_callout.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_callout.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_footnote.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_footnote.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_image.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_image.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/inline_quoted.html.slim: -------------------------------------------------------------------------------- 1 | = confluence_inline_quoted self -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/section.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidoc/section.html.slim -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/SimpleInlineMacro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/SimpleInlineMacro.rb -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/StatusMacro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/StatusMacro.rb -------------------------------------------------------------------------------- /convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/UserMacro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/main/resources/com/github/zeldigas/text2confl/asciidocmacros/UserMacro.rb -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/PageContentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/PageContentTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/UniversalConverterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/UniversalConverterTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocFileConverterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/AsciidocFileConverterTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfAdmonitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfAdmonitionTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfBasicTextFeatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfBasicTextFeatures.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfCodeBlocksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfCodeBlocksTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfConfluenceSpecificFeaturesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfConfluenceSpecificFeaturesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfDiagramsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfDiagramsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfHeadingsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfHeadingsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfImagesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfImagesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfLinksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfLinksTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTablesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTablesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTaskListsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTaskListsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTocTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingOfTocTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingTestBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/asciidoc/RenderingTestBase.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/confluence/LanguageMapperImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/confluence/LanguageMapperImplTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/confluence/ReferenceProviderImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/confluence/ReferenceProviderImplTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownAttachmentCollectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownAttachmentCollectorTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownFileConverterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/MarkdownFileConverterTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfAdmonitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfAdmonitionTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfCodeBlocksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfCodeBlocksTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfConfluenceSpecificFeaturesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfConfluenceSpecificFeaturesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfDiagramsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfDiagramsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfHeadingsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfHeadingsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfImagesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfImagesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfLinksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfLinksTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfRawConfluenceMarkupTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfRawConfluenceMarkupTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfSimpleMacroTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfSimpleMacroTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTablesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTablesTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTaskListsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTaskListsTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTocTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingOfTocTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingTestBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/RenderingTestBase.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMakerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMakerTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMakersTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/DiagramMakersTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/KrokiDiagramsGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/KrokiDiagramsGeneratorTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/MermaidDiagramsGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/MermaidDiagramsGeneratorTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/OsCommandExecutorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/OsCommandExecutorTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/PlantUmlDiagramsGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/diagram/PlantUmlDiagramsGeneratorTest.kt -------------------------------------------------------------------------------- /convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/HtmlToMarkdownConverterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/kotlin/com/github/zeldigas/text2confl/convert/markdown/export/HtmlToMarkdownConverterTest.kt -------------------------------------------------------------------------------- /convert/src/test/resources/convert/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/basic.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/basic.md -------------------------------------------------------------------------------- /convert/src/test/resources/convert/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/code.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/code.md -------------------------------------------------------------------------------- /convert/src/test/resources/convert/confluence-specific.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/confluence-specific.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/confluence-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/confluence-specific.md -------------------------------------------------------------------------------- /convert/src/test/resources/convert/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/links.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/links.md -------------------------------------------------------------------------------- /convert/src/test/resources/convert/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/tables.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/tables.md -------------------------------------------------------------------------------- /convert/src/test/resources/convert/user-refs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/user-refs.html -------------------------------------------------------------------------------- /convert/src/test/resources/convert/user-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/convert/user-refs.md -------------------------------------------------------------------------------- /convert/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/convert/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/pom.xml -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/ContentValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/ContentValidator.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/ServiceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/ServiceProvider.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/ConverterConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/ConverterConfig.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/DirectoryConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/DirectoryConfig.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/IO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/IO.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/UploadConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/config/UploadConfig.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceLinkResolverImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceLinkResolverImpl.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceUserResolverImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceUserResolverImpl.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/PageExporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/export/PageExporter.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ConfluencePagesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ConfluencePagesExt.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploadErrors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploadErrors.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploader.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/DryRunClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/DryRunClient.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperations.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperationsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperationsImpl.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/UploadOperationTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/main/kotlin/com/github/zeldigas/text2confl/core/upload/UploadOperationTracker.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/ContentValidatorImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/ContentValidatorImplTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/ServiceProviderImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/ServiceProviderImplTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/config/ConverterConfigTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/config/ConverterConfigTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/config/DirectoryConfigTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/config/DirectoryConfigTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceLinkResolverImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/export/ConfluenceLinkResolverImplTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/export/PageExporterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/export/PageExporterTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/ContentUploaderTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/DryRunClientTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/DryRunClientTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperationsImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/kotlin/com/github/zeldigas/text2confl/core/upload/PageUploadOperationsImplTest.kt -------------------------------------------------------------------------------- /core/src/test/resources/data/.text2confl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/resources/data/.text2confl.yml -------------------------------------------------------------------------------- /core/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/core/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /docs/.text2confl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/.text2confl.yml -------------------------------------------------------------------------------- /docs/config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/config.schema.json -------------------------------------------------------------------------------- /docs/configuration-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/configuration-reference.md -------------------------------------------------------------------------------- /docs/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/contribution.md -------------------------------------------------------------------------------- /docs/storage-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats.md -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/_assets/asciidoctor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/_assets/asciidoctor-logo.svg -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/_assets/example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/_assets/example.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/_assets/included.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/_assets/included.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/_assets/test.puml: -------------------------------------------------------------------------------- 1 | @startuml 2 | a -> b 3 | @enduml -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/admonitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/admonitions.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/basic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/basic.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/code.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/code.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/confluence-specific.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/confluence-specific.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/diagrams.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/diagrams.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/includes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/includes.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/links-images.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/links-images.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/tables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/tables.adoc -------------------------------------------------------------------------------- /docs/storage-formats/asciidoc/toc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/asciidoc/toc.adoc -------------------------------------------------------------------------------- /docs/storage-formats/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/_assets/attached_not_referenced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/_assets/attached_not_referenced.txt -------------------------------------------------------------------------------- /docs/storage-formats/markdown/_assets/sample_file.txt: -------------------------------------------------------------------------------- 1 | Sample file attached to page -------------------------------------------------------------------------------- /docs/storage-formats/markdown/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/basic.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/code.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/confluence-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/confluence-specific.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/diagrams.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/links-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/links-images.md -------------------------------------------------------------------------------- /docs/storage-formats/markdown/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/markdown.png -------------------------------------------------------------------------------- /docs/storage-formats/markdown/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/storage-formats/markdown/tables.md -------------------------------------------------------------------------------- /docs/text2confl-page-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/text2confl-page-tree.png -------------------------------------------------------------------------------- /docs/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide.md -------------------------------------------------------------------------------- /docs/user-guide/code-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/code-blocks.md -------------------------------------------------------------------------------- /docs/user-guide/image-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/image-attributes.md -------------------------------------------------------------------------------- /docs/user-guide/multitenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/multitenant.md -------------------------------------------------------------------------------- /docs/user-guide/page-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/page-attributes.md -------------------------------------------------------------------------------- /docs/user-guide/pages-cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/pages-cleanup.md -------------------------------------------------------------------------------- /docs/user-guide/table-colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/table-colors.md -------------------------------------------------------------------------------- /docs/user-guide/toc-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/toc-attributes.md -------------------------------------------------------------------------------- /docs/user-guide/virtual-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/docs/user-guide/virtual-pages.md -------------------------------------------------------------------------------- /gem-kroki/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/gem-kroki/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/pom.xml -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldigas/text2confl/HEAD/renovate.json5 --------------------------------------------------------------------------------