├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── feature_request.md │ └── question.md └── workflows │ ├── check-api.yml │ ├── examples-build.yml │ ├── gh-pages-deploy-dev-docs.yml │ ├── gh-pages-deploy-examples.yml │ ├── preview-cleanup-web-s3.yml │ ├── preview-publish-ga.yml │ ├── preview-publish-web-s3.yml │ ├── qodana.yml │ ├── tests-smoke.yml │ └── tests-thorough.yml ├── .husky └── pre-commit ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── copyright │ ├── Dokka.xml │ └── profiles_settings.xml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── docs-developer ├── README.md ├── build.gradle.kts ├── docs │ ├── developer_guide │ │ ├── architecture │ │ │ ├── architecture_overview.md │ │ │ ├── data_model │ │ │ │ ├── documentable_model.md │ │ │ │ ├── extra.md │ │ │ │ └── page_content.md │ │ │ └── extension_points │ │ │ │ ├── base_plugin.md │ │ │ │ ├── core_extension_points.md │ │ │ │ ├── extension_points.md │ │ │ │ └── generation_implementations.md │ │ ├── community │ │ │ └── slack.md │ │ ├── introduction.md │ │ ├── plugin-development │ │ │ ├── introduction.md │ │ │ └── sample-plugin-tutorial.md │ │ └── workflow.md │ ├── dokka_colors.css │ ├── favicon.svg │ └── index.md ├── index.html ├── mkdocs.yml └── requirements.txt ├── docs ├── README.md ├── cfg │ └── buildprofiles.xml ├── dokka.tree ├── images │ ├── dokka-devx-survey-banner.png │ ├── dokkaHtmlCollector-example.png │ ├── dokkaHtmlMultiModule-example.png │ ├── gradle-reload-button.png │ └── javadoc-format-example.png ├── topics │ ├── dokka-get-started.md │ ├── dokka-introduction.md │ ├── dokka-migration.md │ ├── dokka-module-and-package-docs.md │ ├── dokka-plugins.md │ ├── formats │ │ ├── dokka-html.md │ │ ├── dokka-javadoc.md │ │ └── dokka-markdown.md │ └── runners │ │ ├── dokka-cli.md │ │ ├── dokka-gradle.md │ │ └── dokka-maven.md ├── v.list └── writerside.cfg ├── dokka-integration-tests ├── README.md ├── aws_sync.sh ├── build.gradle.kts ├── cli │ ├── build.gradle.kts │ ├── projects │ │ └── it-cli │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── it │ │ │ │ └── basic │ │ │ │ └── java │ │ │ │ └── SampleJavaClass.java │ │ │ └── kotlin │ │ │ ├── RootPackageClass.kt │ │ │ └── it │ │ │ ├── basic │ │ │ ├── EmptyPackage.kt │ │ │ └── PublicClass.kt │ │ │ ├── internal │ │ │ └── InternalClass.kt │ │ │ ├── overriddenVisibility │ │ │ └── VisiblePrivateClass.kt │ │ │ └── protected │ │ │ └── ProtectedClass.kt │ └── src │ │ ├── cliIntegrationTest │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── it │ │ │ └── cli │ │ │ └── CliIntegrationTest.kt │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── it │ │ └── cli │ │ ├── AbstractCliIntegrationTest.kt │ │ └── jsonBuilder.kt ├── gradle.properties ├── gradle │ ├── build.gradle.kts │ ├── projects │ │ ├── README.md │ │ ├── coroutines │ │ │ └── coroutines.diff │ │ ├── datetime │ │ │ └── datetime.diff │ │ ├── io │ │ │ └── io.diff │ │ ├── it-android-0 │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── it │ │ │ │ └── android │ │ │ │ ├── AndroidSpecificClass.kt │ │ │ │ └── IntegrationTestActivity.kt │ │ ├── it-android-compose │ │ │ ├── build.gradle.kts │ │ │ ├── core │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ └── androidMain │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── kotlin │ │ │ │ │ └── MenuItem.kt │ │ │ ├── expectedData │ │ │ │ └── html │ │ │ │ │ ├── core │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ └── org.dokka.it.android.kmp.core │ │ │ │ │ │ ├── -menu-item │ │ │ │ │ │ ├── -menu-item.html │ │ │ │ │ │ ├── image-vector.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── is-important.html │ │ │ │ │ │ ├── label.html │ │ │ │ │ │ └── on-click.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── material3 │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ └── org.dokka.it.android.kmp.material3 │ │ │ │ │ │ ├── -top-app-bar-action.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── libs.versions.toml │ │ │ ├── material3 │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ └── androidMain │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── kotlin │ │ │ │ │ └── TopAppBarAction.kt │ │ │ └── settings.gradle.kts │ │ ├── it-android-kotlin-mp-builtin │ │ │ ├── build.gradle.kts │ │ │ ├── expectedData │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── it-android │ │ │ │ │ ├── it.android │ │ │ │ │ │ ├── -android-specific-class │ │ │ │ │ │ │ ├── -android-specific-class.html │ │ │ │ │ │ │ ├── create-view.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sparse-int-array.html │ │ │ │ │ │ ├── -integration-test-activity │ │ │ │ │ │ │ ├── -integration-test-activity.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── androidMain │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── kotlin │ │ │ │ └── it │ │ │ │ └── android │ │ │ │ ├── AndroidSpecificClass.kt │ │ │ │ └── IntegrationTestActivity.kt │ │ ├── it-android │ │ │ ├── build.gradle.kts │ │ │ ├── expectedData │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── it-android │ │ │ │ │ ├── it.android │ │ │ │ │ │ ├── -android-specific-class │ │ │ │ │ │ │ ├── -android-specific-class.html │ │ │ │ │ │ │ ├── create-view.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sparse-int-array.html │ │ │ │ │ │ ├── -integration-test-activity │ │ │ │ │ │ │ ├── -integration-test-activity.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── it │ │ │ │ └── android │ │ │ │ ├── AndroidSpecificClass.kt │ │ │ │ └── IntegrationTestActivity.kt │ │ ├── it-basic-groovy │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── custom │ │ │ │ ├── java │ │ │ │ │ └── it │ │ │ │ │ │ └── basic │ │ │ │ │ │ └── java │ │ │ │ │ │ └── SampleJavaClass.java │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── basic │ │ │ │ │ └── PublicClass.kt │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── it │ │ │ │ │ └── basic │ │ │ │ │ └── java │ │ │ │ │ └── SampleJavaClass.java │ │ │ │ └── kotlin │ │ │ │ └── it │ │ │ │ └── basic │ │ │ │ └── PublicClass.kt │ │ ├── it-basic │ │ │ ├── build.gradle.kts │ │ │ ├── customResources │ │ │ │ ├── custom-resource.svg │ │ │ │ ├── custom-style-to-add.css │ │ │ │ └── logo-styles.css │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── it │ │ │ │ │ │ └── basic │ │ │ │ │ │ └── java │ │ │ │ │ │ └── SampleJavaClass.java │ │ │ │ └── kotlin │ │ │ │ │ ├── RootPackageClass.kt │ │ │ │ │ └── it │ │ │ │ │ ├── basic │ │ │ │ │ └── PublicClass.kt │ │ │ │ │ ├── internal │ │ │ │ │ └── InternalClass.kt │ │ │ │ │ ├── overriddenVisibility │ │ │ │ │ └── VisiblePrivateClass.kt │ │ │ │ │ ├── protected │ │ │ │ │ └── ProtectedClass.kt │ │ │ │ │ ├── suppressedByPackage │ │ │ │ │ └── SuppressedByPackage.kt │ │ │ │ │ └── suppressedByPath │ │ │ │ │ └── SuppressedByPath.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── it │ │ │ │ └── basic │ │ │ │ └── TestClass.kt │ │ ├── it-collector-0 │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── moduleA │ │ │ │ ├── build.gradle.kts │ │ │ │ ├── moduleB │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jetbrains │ │ │ │ │ │ └── dokka │ │ │ │ │ │ └── it │ │ │ │ │ │ └── moduleB │ │ │ │ │ │ └── ModuleB.kt │ │ │ │ └── moduleC │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── it │ │ │ │ │ └── moduleC │ │ │ │ │ └── ModuleC.kt │ │ │ └── settings.gradle.kts │ │ ├── it-configuration │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── it │ │ │ │ └── ClassWithUndocumentedDeclarations.kt │ │ ├── it-js-ir-0 │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ ├── RootPackageClass.kt │ │ │ │ └── it │ │ │ │ ├── basic │ │ │ │ └── PublicClass.kt │ │ │ │ ├── internal │ │ │ │ └── InternalClass.kt │ │ │ │ ├── suppressedByPackage │ │ │ │ └── SuppressedByPackage.kt │ │ │ │ └── suppressedByPath │ │ │ │ └── SuppressedByPath.kt │ │ ├── it-kotlin-multiplatform │ │ │ ├── build.gradle.kts │ │ │ ├── expectedData │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── it-kotlin-multiplatform │ │ │ │ │ ├── a.b.c │ │ │ │ │ │ ├── -android-native-fn.html │ │ │ │ │ │ ├── -android-native-main-cls │ │ │ │ │ │ │ ├── -android-native-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -common-main-cls │ │ │ │ │ │ │ ├── -common-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -ios-main-cls │ │ │ │ │ │ │ ├── -ios-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -jvm-main-cls │ │ │ │ │ │ │ ├── -jvm-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -linux-main-cls │ │ │ │ │ │ │ ├── -linux-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -native-main-cls │ │ │ │ │ │ │ ├── -native-main-cls.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── [ios-arm64]ios-x64-main-fn.html │ │ │ │ │ │ ├── [ios-x64]ios-x64-main-fn.html │ │ │ │ │ │ ├── commpn-main-fn.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ios-main-fn.html │ │ │ │ │ │ ├── jvm-main-fn.html │ │ │ │ │ │ ├── lets-use-it.html │ │ │ │ │ │ ├── linux-arm64-fn.html │ │ │ │ │ │ ├── linux-fn.html │ │ │ │ │ │ └── linux-x64-fn.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── androidNativeMain │ │ │ │ └── kotlin │ │ │ │ │ ├── AndroidNativeMainCls.kt │ │ │ │ │ └── cnames.kt │ │ │ │ ├── commonMain │ │ │ │ └── kotlin │ │ │ │ │ └── CommonMainCls.kt │ │ │ │ ├── iosArm64Main │ │ │ │ └── kotlin │ │ │ │ │ └── iosX64Fn.kt │ │ │ │ ├── iosMain │ │ │ │ └── kotlin │ │ │ │ │ └── IosMainCls.kt │ │ │ │ ├── iosX64Main │ │ │ │ └── kotlin │ │ │ │ │ └── iosX64Fn.kt │ │ │ │ ├── jvmMain │ │ │ │ └── kotlin │ │ │ │ │ ├── JvmMainCls.kt │ │ │ │ │ └── jvmFn.kt │ │ │ │ ├── linuxArm64Main │ │ │ │ └── kotlin │ │ │ │ │ └── linuxX64Fn.kt │ │ │ │ ├── linuxMain │ │ │ │ └── kotlin │ │ │ │ │ └── LinuxMainCls.kt │ │ │ │ ├── linuxX64Main │ │ │ │ └── kotlin │ │ │ │ │ └── linuxX64Fn.kt │ │ │ │ └── nativeMain │ │ │ │ └── kotlin │ │ │ │ └── NativeMainCls.kt │ │ ├── it-multimodule-0 │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── moduleA │ │ │ │ ├── build.gradle.kts │ │ │ │ ├── moduleB │ │ │ │ │ ├── Module.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jetbrains │ │ │ │ │ │ └── dokka │ │ │ │ │ │ └── it │ │ │ │ │ │ └── moduleB │ │ │ │ │ │ └── ModuleB.kt │ │ │ │ ├── moduleC │ │ │ │ │ ├── Module.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jetbrains │ │ │ │ │ │ └── dokka │ │ │ │ │ │ └── it │ │ │ │ │ │ └── moduleC │ │ │ │ │ │ └── ModuleC.kt │ │ │ │ └── moduleD │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── it │ │ │ │ │ └── moduleD │ │ │ │ │ └── ModuleC.kt │ │ │ └── settings.gradle.kts │ │ ├── it-multimodule-1 │ │ │ ├── build.gradle │ │ │ ├── first │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ ├── foo │ │ │ │ │ ├── FirstClass.kt │ │ │ │ │ ├── FirstSubclass.kt │ │ │ │ │ └── Main.kt │ │ │ │ │ └── noPackage.kt │ │ │ ├── gradle.properties │ │ │ ├── second │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ ├── NoPackageClass.kt │ │ │ │ │ ├── bar │ │ │ │ │ └── SecondClass.kt │ │ │ │ │ └── foo │ │ │ │ │ └── ThirdClass.kt │ │ │ └── settings.gradle.kts │ │ ├── it-multimodule-inter-module-links │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── moduleA │ │ │ │ ├── build.gradle.kts │ │ │ │ ├── moduleB │ │ │ │ │ ├── Module.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jetbrains │ │ │ │ │ │ └── dokka │ │ │ │ │ │ └── it │ │ │ │ │ │ └── ModuleB.kt │ │ │ │ ├── moduleC │ │ │ │ │ ├── Module.md │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jetbrains │ │ │ │ │ │ └── dokka │ │ │ │ │ │ └── it │ │ │ │ │ │ └── ModuleC.kt │ │ │ │ └── moduleD │ │ │ │ │ ├── build.gradle.kts │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── moduleD │ │ │ │ │ └── ModuleD.kt │ │ │ └── settings.gradle.kts │ │ ├── it-multimodule-versioning-0 │ │ │ ├── build.gradle │ │ │ ├── first │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── foo │ │ │ │ │ └── FirstClass.kt │ │ │ ├── gradle.properties │ │ │ ├── second │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── bar │ │ │ │ │ └── SecondClass.kt │ │ │ └── settings.gradle.kts │ │ ├── it-multiplatform-0 │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── commonMain │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── mpp0 │ │ │ │ │ ├── CommonMainClass.kt │ │ │ │ │ ├── ExpectedClass.kt │ │ │ │ │ └── coroutines.kt │ │ │ │ ├── desktopMain │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── mpp0 │ │ │ │ │ ├── CPointerExtension.kt │ │ │ │ │ └── ExpectedClass2.kt │ │ │ │ ├── jsMain │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── mpp0 │ │ │ │ │ ├── ExpectedClass.kt │ │ │ │ │ └── runBlocking.kt │ │ │ │ ├── jvmMain │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── mpp0 │ │ │ │ │ ├── ExpectedClass.kt │ │ │ │ │ ├── JvmOnlyClass.kt │ │ │ │ │ └── runBlocking.kt │ │ │ │ ├── linuxMain │ │ │ │ └── kotlin │ │ │ │ │ └── it │ │ │ │ │ └── mpp0 │ │ │ │ │ ├── CPointerExtension.kt │ │ │ │ │ ├── ExpectedClass.kt │ │ │ │ │ └── runBlocking.kt │ │ │ │ └── macosMain │ │ │ │ └── kotlin │ │ │ │ └── it │ │ │ │ └── mpp0 │ │ │ │ ├── ExpectedClass.kt │ │ │ │ └── runBlocking.kt │ │ ├── it-multiplatform-android-jvm │ │ │ ├── build.gradle.kts │ │ │ ├── expectedData │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── it-multiplatform-android-jvm │ │ │ │ │ ├── it.mpp.android │ │ │ │ │ │ ├── -android-and-jvm-main-class │ │ │ │ │ │ │ ├── -android-and-jvm-main-class.html │ │ │ │ │ │ │ ├── get-files.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -android-main-class │ │ │ │ │ │ │ ├── -android-main-class.html │ │ │ │ │ │ │ ├── get-files.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -common-class │ │ │ │ │ │ │ ├── -common-class.html │ │ │ │ │ │ │ ├── get-files.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -jvm-main-class │ │ │ │ │ │ │ ├── -jvm-main-class.html │ │ │ │ │ │ │ ├── get-files.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── androidAndJvmMain │ │ │ │ └── kotlin │ │ │ │ │ └── AndroidAndJvmMainClass.kt │ │ │ │ ├── androidMain │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── kotlin │ │ │ │ │ └── AndroidMainClass.kt │ │ │ │ ├── commonMain │ │ │ │ └── kotlin │ │ │ │ │ └── CommonClass.kt │ │ │ │ └── jvmMain │ │ │ │ └── kotlin │ │ │ │ └── JvmMainClass.kt │ │ ├── it-multiplatform-multimodule │ │ │ ├── build.gradle.kts │ │ │ ├── first │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ └── commonMain │ │ │ │ │ └── kotlin │ │ │ │ │ └── Subclass.kt │ │ │ ├── gradle.properties │ │ │ ├── second │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ └── commonMain │ │ │ │ │ └── kotlin │ │ │ │ │ └── Usage.kt │ │ │ └── settings.gradle.kts │ │ ├── it-sequential-tasks-execution-stress │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── common │ │ │ │ ├── java │ │ │ │ │ └── it │ │ │ │ │ │ └── basic │ │ │ │ │ │ └── java │ │ │ │ │ │ └── SampleJavaClass.java │ │ │ │ └── kotlin │ │ │ │ │ └── RootPackageClass.kt │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── it │ │ │ │ │ └── basic │ │ │ │ │ └── java │ │ │ │ │ └── SampleJavaClass.java │ │ │ │ └── kotlin │ │ │ │ └── RootPackageClass.kt │ │ ├── it-wasm-js-wasi-basic │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ ├── wasmJsMain │ │ │ │ └── kotlin │ │ │ │ │ ├── RootPackageClass.kt │ │ │ │ │ └── it │ │ │ │ │ ├── basic │ │ │ │ │ └── PublicClass.kt │ │ │ │ │ ├── internal │ │ │ │ │ └── InternalClass.kt │ │ │ │ │ ├── suppressedByPackage │ │ │ │ │ └── SuppressedByPackage.kt │ │ │ │ │ └── suppressedByPath │ │ │ │ │ └── SuppressedByPath.kt │ │ │ │ └── wasmWasiMain │ │ │ │ └── kotlin │ │ │ │ ├── RootPackageClass.kt │ │ │ │ └── it │ │ │ │ ├── basic │ │ │ │ └── PublicClass.kt │ │ │ │ ├── internal │ │ │ │ └── InternalClass.kt │ │ │ │ ├── suppressedByPackage │ │ │ │ └── SuppressedByPackage.kt │ │ │ │ └── suppressedByPath │ │ │ │ └── SuppressedByPath.kt │ │ ├── serialization │ │ │ └── serialization.diff │ │ ├── template.settings.gradle.kts │ │ └── ui-showcase │ │ │ ├── README.md │ │ │ ├── build-logic │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ ├── uitest.dokka-kmp.gradle.kts │ │ │ │ └── uitest.dokka.gradle.kts │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── jvm │ │ │ ├── build.gradle.kts │ │ │ ├── description.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── uitest │ │ │ │ ├── ClassWithSuchLongNameThatItLikelyWontFitInOneLineAnywhere.kt │ │ │ │ ├── Overload.kt │ │ │ │ ├── SinceKotlinAnnotation.kt │ │ │ │ ├── emptypackage │ │ │ │ └── PrivateClass.kt │ │ │ │ ├── internal │ │ │ │ └── Internal.kt │ │ │ │ ├── kdoc │ │ │ │ ├── ClassKDocs.kt │ │ │ │ └── FunctionKDocs.kt │ │ │ │ ├── markdown │ │ │ │ ├── MarkdownCode.kt │ │ │ │ ├── MarkdownHeaders.kt │ │ │ │ ├── MarkdownTable.kt │ │ │ │ └── MarkdownVarious.kt │ │ │ │ ├── rendering │ │ │ │ ├── LongDescription.kt │ │ │ │ └── LongElementNames.kt │ │ │ │ ├── signature │ │ │ │ └── Signature.kt │ │ │ │ └── types │ │ │ │ ├── KotlinTopLevelFunction.kt │ │ │ │ ├── KotlinTopLevelProperty.kt │ │ │ │ ├── SimpleDeprecatedKotlinClass.kt │ │ │ │ ├── SimpleJavaAbstractClass.java │ │ │ │ ├── SimpleJavaAnnotation.java │ │ │ │ ├── SimpleJavaClass.java │ │ │ │ ├── SimpleJavaEnum.java │ │ │ │ ├── SimpleJavaException.java │ │ │ │ ├── SimpleJavaInterface.java │ │ │ │ ├── SimpleKotlinAbstractClass.kt │ │ │ │ ├── SimpleKotlinAnnotationClass.kt │ │ │ │ ├── SimpleKotlinClass.kt │ │ │ │ ├── SimpleKotlinDataClass.kt │ │ │ │ ├── SimpleKotlinEnumClass.kt │ │ │ │ ├── SimpleKotlinException.kt │ │ │ │ ├── SimpleKotlinInterface.kt │ │ │ │ ├── SimpleKotlinObject.kt │ │ │ │ ├── SimpleKotlinSealedClass.kt │ │ │ │ ├── SimpleKotlinSealedInterface.kt │ │ │ │ └── Typealias.kt │ │ │ ├── kmp │ │ │ ├── build.gradle.kts │ │ │ ├── description.md │ │ │ └── src │ │ │ │ ├── commonMain │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── uitest │ │ │ │ │ └── kmp │ │ │ │ │ ├── common │ │ │ │ │ ├── Context.kt │ │ │ │ │ ├── ContextReceiversExample.kt │ │ │ │ │ ├── Foo.kt │ │ │ │ │ └── KmpClass.kt │ │ │ │ │ ├── coroutines │ │ │ │ │ └── CommonCoroutineExtensions.kt │ │ │ │ │ └── date │ │ │ │ │ └── CommonDateUtils.kt │ │ │ │ ├── jsMain │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── uitest │ │ │ │ │ └── kmp │ │ │ │ │ ├── JsFunctions.kt │ │ │ │ │ ├── common │ │ │ │ │ └── KmpClass.js.kt │ │ │ │ │ ├── coroutines │ │ │ │ │ └── JsCoroutineExtensions.kt │ │ │ │ │ └── date │ │ │ │ │ └── JsDateUtils.kt │ │ │ │ ├── jvmMain │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── uitest │ │ │ │ │ └── kmp │ │ │ │ │ ├── JavaAnnotation.java │ │ │ │ │ ├── JvmFunctions.kt │ │ │ │ │ ├── common │ │ │ │ │ └── KmpClass.jvm.kt │ │ │ │ │ ├── coroutines │ │ │ │ │ └── JvmCoroutineExtensions.kt │ │ │ │ │ └── date │ │ │ │ │ └── JvmDateUtils.kt │ │ │ │ ├── linuxMain │ │ │ │ └── kotlin │ │ │ │ │ └── org │ │ │ │ │ └── jetbrains │ │ │ │ │ └── dokka │ │ │ │ │ └── uitest │ │ │ │ │ └── kmp │ │ │ │ │ ├── CInterop.kt │ │ │ │ │ ├── common │ │ │ │ │ └── KmpClass.linux.kt │ │ │ │ │ ├── coroutines │ │ │ │ │ └── LinuxCoroutineExtensions.kt │ │ │ │ │ └── date │ │ │ │ │ └── LinuxDateUtils.kt │ │ │ │ └── macosMain │ │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── uitest │ │ │ │ └── kmp │ │ │ │ ├── CInterop.kt │ │ │ │ ├── common │ │ │ │ └── KmpClass.macos.kt │ │ │ │ ├── coroutines │ │ │ │ └── MacOsCoroutineExtensions.kt │ │ │ │ └── date │ │ │ │ └── MacOsDateUtils.kt │ │ │ ├── previousDocVersions │ │ │ ├── 0.9 │ │ │ │ ├── images │ │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ │ ├── arrow_down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── nav-icons │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ └── theme-toggle.svg │ │ │ │ ├── index.html │ │ │ │ ├── jvm │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.emptypackage.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.internal │ │ │ │ │ │ ├── function-to-be-used-as-sample.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kdoc │ │ │ │ │ │ ├── -class-k-docs │ │ │ │ │ │ │ ├── -class-k-docs.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── primary-constructor-property.html │ │ │ │ │ │ ├── additional-info.html │ │ │ │ │ │ ├── all-k-doc-tags-in-one-place.html │ │ │ │ │ │ ├── extension.html │ │ │ │ │ │ ├── function-with-a-really-long-name-similar-to-that-class-with-a-long-name-but-this-one-is-a-function.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── multiple-link-sections.html │ │ │ │ │ │ ├── params.html │ │ │ │ │ │ ├── throws.html │ │ │ │ │ │ └── with-sample.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.markdown │ │ │ │ │ │ ├── -markdown-code │ │ │ │ │ │ │ ├── -markdown-code.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-headers │ │ │ │ │ │ │ ├── -markdown-headers.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-table │ │ │ │ │ │ │ ├── -markdown-table.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-various │ │ │ │ │ │ │ ├── -markdown-various.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.signature │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s │ │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s.html │ │ │ │ │ │ │ ├── function_with_long_name_with_underscores_same_story_as_this_class_name.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mixed_underscore-with-dashes_same_thing-as_above-you-never_know-what-might_happen.html │ │ │ │ │ │ │ └── very-very-long-name-with-dashes-for-some-reason-even-if-not-popular-but-might-happen-maybe.html │ │ │ │ │ │ ├── -signature │ │ │ │ │ │ │ ├── -signature.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invoke.html │ │ │ │ │ │ ├── signature-simple.html │ │ │ │ │ │ └── signature.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.types │ │ │ │ │ │ ├── -s-i-m-p-l-e_-k-o-t-l-i-n_-t-o-p_-l-e-v-e-l_-v-a-l_-h-e-l-l-o_-w-o-r-l-d.html │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class │ │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-abstract-class │ │ │ │ │ │ │ ├── -simple-java-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-annotation │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-class │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-java-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-enum │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-java-exception │ │ │ │ │ │ │ ├── -simple-java-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-abstract-class │ │ │ │ │ │ │ ├── -simple-kotlin-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-annotation-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-class │ │ │ │ │ │ │ ├── -companion-object │ │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-kotlin-class.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple-jvm-extension-within-class.html │ │ │ │ │ │ │ └── simple-jvm-function.html │ │ │ │ │ │ ├── -simple-kotlin-data-class │ │ │ │ │ │ │ ├── -simple-kotlin-data-class.html │ │ │ │ │ │ │ ├── component1.html │ │ │ │ │ │ │ ├── copy.html │ │ │ │ │ │ │ ├── foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-enum-class │ │ │ │ │ │ │ ├── -o-n-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-h-r-e-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-w-o │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-kotlin-exception │ │ │ │ │ │ │ ├── -simple-kotlin-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-interface │ │ │ │ │ │ │ ├── -companion │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-object │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -typealias-kotlin-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-deprecated-kotlin-top-level-function.html │ │ │ │ │ │ ├── simple-kotlin-top-level-function.html │ │ │ │ │ │ └── simple-kotlin-top-level-val.html │ │ │ │ │ └── org.jetbrains.dokka.uitest │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere.html │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -since-kotlin-annotation │ │ │ │ │ │ ├── -since-kotlin-annotation.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.html │ │ │ │ │ │ ├── three.html │ │ │ │ │ │ └── two.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── overload.html │ │ │ │ ├── kmp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.common │ │ │ │ │ │ ├── -foo │ │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -kmp-class │ │ │ │ │ │ │ ├── -kmp-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.coroutines │ │ │ │ │ │ ├── async-with-dealy.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.date │ │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ │ ├── get-date.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── org.jetbrains.dokka.uitest.kmp │ │ │ │ │ │ ├── -java-annotation │ │ │ │ │ │ ├── aliases.html │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js.html │ │ │ │ │ │ ├── jvm.html │ │ │ │ │ │ ├── print-pointer-raw-value.html │ │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ │ ├── clipboard.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ ├── styles │ │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── multimodule.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ └── version.json │ │ │ ├── 1.0 │ │ │ │ ├── images │ │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ │ ├── arrow_down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── nav-icons │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ └── theme-toggle.svg │ │ │ │ ├── index.html │ │ │ │ ├── jvm │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.emptypackage.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.internal │ │ │ │ │ │ ├── function-to-be-used-as-sample.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kdoc │ │ │ │ │ │ ├── -class-k-docs │ │ │ │ │ │ │ ├── -class-k-docs.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── primary-constructor-property.html │ │ │ │ │ │ ├── additional-info.html │ │ │ │ │ │ ├── all-k-doc-tags-in-one-place.html │ │ │ │ │ │ ├── extension.html │ │ │ │ │ │ ├── function-with-a-really-long-name-similar-to-that-class-with-a-long-name-but-this-one-is-a-function.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── multiple-link-sections.html │ │ │ │ │ │ ├── params.html │ │ │ │ │ │ ├── throws.html │ │ │ │ │ │ └── with-sample.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.markdown │ │ │ │ │ │ ├── -markdown-code │ │ │ │ │ │ │ ├── -markdown-code.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-headers │ │ │ │ │ │ │ ├── -markdown-headers.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-table │ │ │ │ │ │ │ ├── -markdown-table.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-various │ │ │ │ │ │ │ ├── -markdown-various.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.rendering │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s │ │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s.html │ │ │ │ │ │ │ ├── function_with_long_name_with_underscores_same_story_as_this_class_name.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mixed_underscore-with-dashes_same_thing-as_above-you-never_know-what-might_happen.html │ │ │ │ │ │ │ └── very-very-long-name-with-dashes-for-some-reason-even-if-not-popular-but-might-happen-maybe.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── very-long-description.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.signature │ │ │ │ │ │ ├── -signature │ │ │ │ │ │ │ ├── -signature.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invoke.html │ │ │ │ │ │ ├── signature-simple.html │ │ │ │ │ │ └── signature.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.types │ │ │ │ │ │ ├── -s-i-m-p-l-e_-k-o-t-l-i-n_-t-o-p_-l-e-v-e-l_-v-a-l_-h-e-l-l-o_-w-o-r-l-d.html │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class │ │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-abstract-class │ │ │ │ │ │ │ ├── -simple-java-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-annotation │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-class │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-java-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-enum │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-java-exception │ │ │ │ │ │ │ ├── -simple-java-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-abstract-class │ │ │ │ │ │ │ ├── -simple-kotlin-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-annotation-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-class │ │ │ │ │ │ │ ├── -companion-object │ │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-kotlin-class.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple-jvm-extension-within-class.html │ │ │ │ │ │ │ └── simple-jvm-function.html │ │ │ │ │ │ ├── -simple-kotlin-data-class │ │ │ │ │ │ │ ├── -simple-kotlin-data-class.html │ │ │ │ │ │ │ ├── component1.html │ │ │ │ │ │ │ ├── copy.html │ │ │ │ │ │ │ ├── foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-enum-class │ │ │ │ │ │ │ ├── -o-n-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-h-r-e-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-w-o │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-kotlin-exception │ │ │ │ │ │ │ ├── -simple-kotlin-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-interface │ │ │ │ │ │ │ ├── -companion │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-object │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -typealias-kotlin-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-deprecated-kotlin-top-level-function.html │ │ │ │ │ │ ├── simple-kotlin-top-level-function.html │ │ │ │ │ │ └── simple-kotlin-top-level-val.html │ │ │ │ │ └── org.jetbrains.dokka.uitest │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere.html │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -since-kotlin-annotation │ │ │ │ │ │ ├── -since-kotlin-annotation.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.html │ │ │ │ │ │ ├── three.html │ │ │ │ │ │ └── two.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── overload.html │ │ │ │ ├── kmp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.common │ │ │ │ │ │ ├── -foo │ │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -kmp-class │ │ │ │ │ │ │ ├── -kmp-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.coroutines │ │ │ │ │ │ ├── async-with-delay.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.date │ │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ │ ├── get-date.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── org.jetbrains.dokka.uitest.kmp │ │ │ │ │ │ ├── -java-annotation │ │ │ │ │ │ ├── aliases.html │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ │ ├── [linux]print-pointer-raw-value.html │ │ │ │ │ │ ├── [macos]print-pointer-raw-value.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js.html │ │ │ │ │ │ ├── jvm.html │ │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ │ ├── clipboard.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ ├── styles │ │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── multimodule.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ └── version.json │ │ │ ├── 1.5 │ │ │ │ ├── images │ │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ │ ├── arrow_down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── nav-icons │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ └── theme-toggle.svg │ │ │ │ ├── index.html │ │ │ │ ├── jvm │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.emptypackage.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.internal │ │ │ │ │ │ ├── function-to-be-used-as-sample.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kdoc │ │ │ │ │ │ ├── -class-k-docs │ │ │ │ │ │ │ ├── -class-k-docs.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── primary-constructor-property.html │ │ │ │ │ │ ├── additional-info.html │ │ │ │ │ │ ├── all-k-doc-tags-in-one-place.html │ │ │ │ │ │ ├── extension.html │ │ │ │ │ │ ├── function-with-a-really-long-name-similar-to-that-class-with-a-long-name-but-this-one-is-a-function.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── multiple-link-sections.html │ │ │ │ │ │ ├── params.html │ │ │ │ │ │ ├── throws.html │ │ │ │ │ │ └── with-sample.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.markdown │ │ │ │ │ │ ├── -markdown-code │ │ │ │ │ │ │ ├── -markdown-code.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-headers │ │ │ │ │ │ │ ├── -markdown-headers.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-table │ │ │ │ │ │ │ ├── -markdown-table.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-various │ │ │ │ │ │ │ ├── -markdown-various.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.rendering │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s │ │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s.html │ │ │ │ │ │ │ ├── function_with_long_name_with_underscores_same_story_as_this_class_name.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mixed_underscore-with-dashes_same_thing-as_above-you-never_know-what-might_happen.html │ │ │ │ │ │ │ └── very-very-long-name-with-dashes-for-some-reason-even-if-not-popular-but-might-happen-maybe.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── very-long-description.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.signature │ │ │ │ │ │ ├── -signature │ │ │ │ │ │ │ ├── -signature.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invoke.html │ │ │ │ │ │ ├── signature-simple.html │ │ │ │ │ │ └── signature.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.types │ │ │ │ │ │ ├── -s-i-m-p-l-e_-k-o-t-l-i-n_-t-o-p_-l-e-v-e-l_-v-a-l_-h-e-l-l-o_-w-o-r-l-d.html │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class │ │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-abstract-class │ │ │ │ │ │ │ ├── -simple-java-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-annotation │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-class │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-java-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-enum │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-java-exception │ │ │ │ │ │ │ ├── -simple-java-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-abstract-class │ │ │ │ │ │ │ ├── -simple-kotlin-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-annotation-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-class │ │ │ │ │ │ │ ├── -companion-object │ │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-kotlin-class.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple-jvm-extension-within-class.html │ │ │ │ │ │ │ └── simple-jvm-function.html │ │ │ │ │ │ ├── -simple-kotlin-data-class │ │ │ │ │ │ │ ├── -simple-kotlin-data-class.html │ │ │ │ │ │ │ ├── component1.html │ │ │ │ │ │ │ ├── copy.html │ │ │ │ │ │ │ ├── foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-enum-class │ │ │ │ │ │ │ ├── -o-n-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-h-r-e-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-w-o │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-kotlin-exception │ │ │ │ │ │ │ ├── -simple-kotlin-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-interface │ │ │ │ │ │ │ ├── -companion │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-object │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -typealias-kotlin-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-deprecated-kotlin-top-level-function.html │ │ │ │ │ │ ├── simple-kotlin-top-level-function.html │ │ │ │ │ │ └── simple-kotlin-top-level-val.html │ │ │ │ │ └── org.jetbrains.dokka.uitest │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere.html │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -since-kotlin-annotation │ │ │ │ │ │ ├── -since-kotlin-annotation.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.html │ │ │ │ │ │ ├── three.html │ │ │ │ │ │ └── two.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── overload.html │ │ │ │ ├── kmp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.common │ │ │ │ │ │ ├── -foo │ │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -kmp-class │ │ │ │ │ │ │ ├── -kmp-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.coroutines │ │ │ │ │ │ ├── async-with-delay.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.date │ │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ │ ├── get-date.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── org.jetbrains.dokka.uitest.kmp │ │ │ │ │ │ ├── -java-annotation │ │ │ │ │ │ ├── aliases.html │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ │ ├── [linux]print-pointer-raw-value.html │ │ │ │ │ │ ├── [macos]print-pointer-raw-value.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js.html │ │ │ │ │ │ ├── jvm.html │ │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ │ ├── clipboard.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ ├── styles │ │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── multimodule.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ └── version.json │ │ │ ├── 1.8 │ │ │ │ ├── images │ │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ │ ├── arrow_down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── nav-icons │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ └── theme-toggle.svg │ │ │ │ ├── index.html │ │ │ │ ├── jvm │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.emptypackage.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.internal │ │ │ │ │ │ ├── function-to-be-used-as-sample.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kdoc │ │ │ │ │ │ ├── -class-k-docs │ │ │ │ │ │ │ ├── -class-k-docs.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── primary-constructor-property.html │ │ │ │ │ │ ├── additional-info.html │ │ │ │ │ │ ├── all-k-doc-tags-in-one-place.html │ │ │ │ │ │ ├── extension.html │ │ │ │ │ │ ├── function-with-a-really-long-name-similar-to-that-class-with-a-long-name-but-this-one-is-a-function.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── multiple-link-sections.html │ │ │ │ │ │ ├── params.html │ │ │ │ │ │ ├── throws.html │ │ │ │ │ │ └── with-sample.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.markdown │ │ │ │ │ │ ├── -markdown-code │ │ │ │ │ │ │ ├── -markdown-code.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-headers │ │ │ │ │ │ │ ├── -markdown-headers.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-table │ │ │ │ │ │ │ ├── -markdown-table.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -markdown-various │ │ │ │ │ │ │ ├── -markdown-various.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.rendering │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s │ │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s.html │ │ │ │ │ │ │ ├── function_with_long_name_with_underscores_same_story_as_this_class_name.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mixed_underscore-with-dashes_same_thing-as_above-you-never_know-what-might_happen.html │ │ │ │ │ │ │ └── very-very-long-name-with-dashes-for-some-reason-even-if-not-popular-but-might-happen-maybe.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── very-long-description.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.signature │ │ │ │ │ │ ├── -signature │ │ │ │ │ │ │ ├── -signature.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invoke.html │ │ │ │ │ │ ├── signature-simple.html │ │ │ │ │ │ └── signature.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.types │ │ │ │ │ │ ├── -s-i-m-p-l-e_-k-o-t-l-i-n_-t-o-p_-l-e-v-e-l_-v-a-l_-h-e-l-l-o_-w-o-r-l-d.html │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class │ │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-abstract-class │ │ │ │ │ │ │ ├── -simple-java-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-annotation │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-class │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-java-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-enum │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-java-exception │ │ │ │ │ │ │ ├── -simple-java-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-abstract-class │ │ │ │ │ │ │ ├── -simple-kotlin-abstract-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-annotation-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-class │ │ │ │ │ │ │ ├── -companion-object │ │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -simple-kotlin-class.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple-jvm-extension-within-class.html │ │ │ │ │ │ │ └── simple-jvm-function.html │ │ │ │ │ │ ├── -simple-kotlin-data-class │ │ │ │ │ │ │ ├── -simple-kotlin-data-class.html │ │ │ │ │ │ │ ├── component1.html │ │ │ │ │ │ │ ├── copy.html │ │ │ │ │ │ │ ├── foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-enum-class │ │ │ │ │ │ │ ├── -o-n-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-h-r-e-e │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -t-w-o │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ ├── -simple-kotlin-exception │ │ │ │ │ │ │ ├── -simple-kotlin-exception.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-interface │ │ │ │ │ │ │ ├── -companion │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-object │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-sealed-interface │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -typealias-kotlin-class │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-deprecated-kotlin-top-level-function.html │ │ │ │ │ │ ├── simple-kotlin-top-level-function.html │ │ │ │ │ │ └── simple-kotlin-top-level-val.html │ │ │ │ │ └── org.jetbrains.dokka.uitest │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere │ │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere.html │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -since-kotlin-annotation │ │ │ │ │ │ ├── -since-kotlin-annotation.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.html │ │ │ │ │ │ ├── three.html │ │ │ │ │ │ └── two.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── overload.html │ │ │ │ ├── kmp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.common │ │ │ │ │ │ ├── -foo │ │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -kmp-class │ │ │ │ │ │ │ ├── -kmp-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.coroutines │ │ │ │ │ │ ├── async-with-delay.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.date │ │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ │ ├── get-date.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── org.jetbrains.dokka.uitest.kmp │ │ │ │ │ │ ├── -java-annotation │ │ │ │ │ │ ├── aliases.html │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ │ ├── [linux]print-pointer-raw-value.html │ │ │ │ │ │ ├── [macos]print-pointer-raw-value.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js.html │ │ │ │ │ │ ├── jvm.html │ │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ │ ├── clipboard.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ ├── styles │ │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── multimodule.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ └── version.json │ │ │ └── 1.9 │ │ │ │ ├── images │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ ├── arrow_down.svg │ │ │ │ ├── burger.svg │ │ │ │ ├── copy-icon.svg │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ ├── homepage.svg │ │ │ │ ├── logo-icon.svg │ │ │ │ ├── nav-icons │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ └── theme-toggle.svg │ │ │ │ ├── index.html │ │ │ │ ├── jvm │ │ │ │ ├── index.html │ │ │ │ ├── navigation.html │ │ │ │ ├── org.jetbrains.dokka.uitest.emptypackage.html │ │ │ │ ├── org.jetbrains.dokka.uitest.internal │ │ │ │ │ ├── function-to-be-used-as-sample.html │ │ │ │ │ └── index.html │ │ │ │ ├── org.jetbrains.dokka.uitest.kdoc │ │ │ │ │ ├── -class-k-docs │ │ │ │ │ │ ├── -class-k-docs.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── primary-constructor-property.html │ │ │ │ │ ├── additional-info.html │ │ │ │ │ ├── all-k-doc-tags-in-one-place.html │ │ │ │ │ ├── extension.html │ │ │ │ │ ├── function-with-a-really-long-name-similar-to-that-class-with-a-long-name-but-this-one-is-a-function.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── links.html │ │ │ │ │ ├── multiple-link-sections.html │ │ │ │ │ ├── params.html │ │ │ │ │ ├── throws.html │ │ │ │ │ └── with-sample.html │ │ │ │ ├── org.jetbrains.dokka.uitest.markdown │ │ │ │ │ ├── -markdown-code │ │ │ │ │ │ ├── -markdown-code.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -markdown-headers │ │ │ │ │ │ ├── -markdown-headers.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -markdown-table │ │ │ │ │ │ ├── -markdown-table.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -markdown-various │ │ │ │ │ │ ├── -markdown-various.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── org.jetbrains.dokka.uitest.rendering │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s │ │ │ │ │ │ ├── -l-o-n-g_-c-l-a-s-s_-n-a-m-e_-w-i-t-h_-u-n-d-e-r-s-c-o-r-e-s_-e-v-e-n_-i-f_-i-t_-i-s_-n-o-t_-b-y_-c-o-n-v-e-n-t-i-o-n_-b-u-t_-i-t_-m-i-g-h-t_-e-x-i-s-t_-w-h-o_-k-n-o-w-s.html │ │ │ │ │ │ ├── function_with_long_name_with_underscores_same_story_as_this_class_name.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── mixed_underscore-with-dashes_same_thing-as_above-you-never_know-what-might_happen.html │ │ │ │ │ │ └── very-very-long-name-with-dashes-for-some-reason-even-if-not-popular-but-might-happen-maybe.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── very-long-description.html │ │ │ │ ├── org.jetbrains.dokka.uitest.signature │ │ │ │ │ ├── -signature │ │ │ │ │ │ ├── -signature.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invoke.html │ │ │ │ │ ├── signature-simple.html │ │ │ │ │ └── signature.html │ │ │ │ ├── org.jetbrains.dokka.uitest.types │ │ │ │ │ ├── -s-i-m-p-l-e_-k-o-t-l-i-n_-t-o-p_-l-e-v-e-l_-v-a-l_-h-e-l-l-o_-w-o-r-l-d.html │ │ │ │ │ ├── -simple-deprecated-kotlin-class │ │ │ │ │ │ ├── -simple-deprecated-kotlin-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-java-abstract-class │ │ │ │ │ │ ├── -simple-java-abstract-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-java-annotation │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-java-class │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-java-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-java-enum │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── -simple-java-exception │ │ │ │ │ │ ├── -simple-java-exception.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-java-interface │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-abstract-class │ │ │ │ │ │ ├── -simple-kotlin-abstract-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-annotation-class │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-class │ │ │ │ │ │ ├── -companion-object │ │ │ │ │ │ │ ├── -nested-class │ │ │ │ │ │ │ │ ├── -nested-class.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -inner-class │ │ │ │ │ │ │ ├── -inner-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -simple-kotlin-class.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-jvm-extension-within-class.html │ │ │ │ │ │ └── simple-jvm-function.html │ │ │ │ │ ├── -simple-kotlin-data-class │ │ │ │ │ │ ├── -simple-kotlin-data-class.html │ │ │ │ │ │ ├── component1.html │ │ │ │ │ │ ├── copy.html │ │ │ │ │ │ ├── foo.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-enum-class │ │ │ │ │ │ ├── -o-n-e │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -t-h-r-e-e │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -t-w-o │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── -simple-kotlin-exception │ │ │ │ │ │ ├── -simple-kotlin-exception.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-interface │ │ │ │ │ │ ├── -companion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-object │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-sealed-class │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -simple-kotlin-sealed-interface │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -typealias-kotlin-class │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simple-deprecated-kotlin-top-level-function.html │ │ │ │ │ ├── simple-kotlin-top-level-function.html │ │ │ │ │ └── simple-kotlin-top-level-val.html │ │ │ │ └── org.jetbrains.dokka.uitest │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere │ │ │ │ │ ├── -class-with-such-long-name-that-it-likely-wont-fit-in-one-line-anywhere.html │ │ │ │ │ └── index.html │ │ │ │ │ ├── -since-kotlin-annotation │ │ │ │ │ ├── -since-kotlin-annotation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── one.html │ │ │ │ │ ├── three.html │ │ │ │ │ └── two.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── overload.html │ │ │ │ ├── kmp │ │ │ │ ├── index.html │ │ │ │ ├── navigation.html │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.common │ │ │ │ │ ├── -foo │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -kmp-class │ │ │ │ │ │ ├── -kmp-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.coroutines │ │ │ │ │ ├── async-with-delay.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── name.html │ │ │ │ ├── org.jetbrains.dokka.uitest.kmp.date │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ ├── get-date.html │ │ │ │ │ └── index.html │ │ │ │ └── org.jetbrains.dokka.uitest.kmp │ │ │ │ │ ├── -java-annotation │ │ │ │ │ ├── aliases.html │ │ │ │ │ ├── description.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── usage.html │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ ├── [linux]print-pointer-raw-value.html │ │ │ │ │ ├── [macos]print-pointer-raw-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js.html │ │ │ │ │ ├── jvm.html │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ ├── clipboard.js │ │ │ │ ├── main.js │ │ │ │ ├── navigation-loader.js │ │ │ │ ├── pages.json │ │ │ │ ├── platform-content-handler.js │ │ │ │ ├── prism.js │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ ├── styles │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ ├── logo-styles.css │ │ │ │ ├── main.css │ │ │ │ ├── multimodule.css │ │ │ │ ├── prism.css │ │ │ │ └── style.css │ │ │ │ └── version.json │ │ │ └── settings.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── it │ │ │ └── gradle │ │ │ ├── AbstractGradleIntegrationTest.kt │ │ │ ├── BuildVersions.kt │ │ │ ├── TestConstants.kt │ │ │ ├── TestEnvironment.kt │ │ │ ├── TestedVersions.kt │ │ │ ├── gradleAssertions.kt │ │ │ ├── gradleCCReportData.kt │ │ │ ├── gradleRunnerUtils.kt │ │ │ ├── htmlAssertions.kt │ │ │ ├── junit │ │ │ ├── DokkaGradlePluginTest.kt │ │ │ ├── DokkaGradlePluginTestExtension.kt │ │ │ ├── DokkaGradleProjectRunner.kt │ │ │ ├── GradleTestProjectInitializer.kt │ │ │ ├── TestedVersions.kt │ │ │ ├── TestedVersionsSource.kt │ │ │ ├── WithGradleProperties.kt │ │ │ └── testTags.kt │ │ │ └── utils │ │ │ └── SemVer.kt │ │ ├── test │ │ └── kotlin │ │ │ ├── AndroidComposeIT.kt │ │ │ ├── AndroidKotlinMultiplatformBuiltInTest.kt │ │ │ ├── AndroidProjectIT.kt │ │ │ ├── KotlinMultiplatformIT.kt │ │ │ └── MultiplatformAndroidJvmProjectIT.kt │ │ ├── testExampleProjects │ │ ├── expectedData │ │ │ └── exampleProjects │ │ │ │ ├── basic-gradle-example │ │ │ │ └── html │ │ │ │ │ ├── -dokka -gradle -example │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -greeter │ │ │ │ │ │ │ ├── -greeter.html │ │ │ │ │ │ │ ├── greet.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── name.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── main.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── composite-build-example │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── kakakpo │ │ │ │ │ ├── foo.example.module.kakapo │ │ │ │ │ │ ├── -kakapo │ │ │ │ │ │ │ ├── -kakapo.html │ │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── kea │ │ │ │ │ ├── foo.example.module.kea │ │ │ │ │ │ ├── -kea │ │ │ │ │ │ │ ├── -kea.html │ │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── custom-dokka-plugin-example │ │ │ │ └── html │ │ │ │ │ ├── -demo -library │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -greeter │ │ │ │ │ │ │ ├── -greeter.html │ │ │ │ │ │ │ ├── greet.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── name.html │ │ │ │ │ │ ├── -hide-from-dokka │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── custom-styling-example │ │ │ │ └── html │ │ │ │ │ ├── custom-format-example │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -greeter │ │ │ │ │ │ │ ├── -greeter.html │ │ │ │ │ │ │ ├── greet.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── name.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── main.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── ktor-logo.png │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── java-example │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── my-java-application │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -my-java-application │ │ │ │ │ │ │ ├── -my-java-application.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── main.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── my-java-features │ │ │ │ │ ├── demo.feature │ │ │ │ │ │ ├── -my-java-feature-util │ │ │ │ │ │ │ ├── -my-java-feature-util.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── demo.mongodb │ │ │ │ │ │ ├── -my-mongo-db-util │ │ │ │ │ │ │ ├── -my-mongo-db-util.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── my-java-library │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -my-java-library-class │ │ │ │ │ │ │ ├── -my-java-library-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── javadoc-example │ │ │ │ └── javadoc │ │ │ │ │ ├── allclasses.html │ │ │ │ │ ├── demo │ │ │ │ │ ├── Greeter.html │ │ │ │ │ ├── HelloWorldKt.html │ │ │ │ │ └── package-summary.html │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── dokka-javadoc-stylesheet.css │ │ │ │ │ ├── element-list │ │ │ │ │ ├── index-files │ │ │ │ │ ├── index-1.html │ │ │ │ │ ├── index-2.html │ │ │ │ │ ├── index-3.html │ │ │ │ │ └── index-4.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery │ │ │ │ │ ├── external │ │ │ │ │ │ └── jquery │ │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ │ ├── jquery-migrate-3.4.0.min.js │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ └── jquery-ui.structure.min.css │ │ │ │ │ ├── member-search-index.js │ │ │ │ │ ├── module-search-index.js │ │ │ │ │ ├── package-list │ │ │ │ │ ├── package-search-index.js │ │ │ │ │ ├── resources │ │ │ │ │ ├── glass.png │ │ │ │ │ └── x.png │ │ │ │ │ ├── search.js │ │ │ │ │ ├── stylesheet.css │ │ │ │ │ ├── tag-search-index.js │ │ │ │ │ └── type-search-index.js │ │ │ │ ├── kotlin-as-java-example │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── kotlin-as-java-example │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -greeter │ │ │ │ │ │ │ ├── -greeter.html │ │ │ │ │ │ │ ├── get-name.html │ │ │ │ │ │ │ ├── greet.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -hello-world-kt │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── main.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── kotlin-multiplatform-example │ │ │ │ └── html │ │ │ │ │ ├── dokka-multiplatform-example │ │ │ │ │ ├── org.kotlintestmpp.common │ │ │ │ │ │ ├── -foo │ │ │ │ │ │ │ ├── -foo.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.kotlintestmpp.coroutines │ │ │ │ │ │ ├── async-with-delay.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── org.kotlintestmpp.date │ │ │ │ │ │ ├── get-current-date.html │ │ │ │ │ │ ├── get-date.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── org.kotlintestmpp │ │ │ │ │ │ ├── -java-annotation │ │ │ │ │ │ │ ├── aliases.html │ │ │ │ │ │ │ ├── description.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── [js]my-extension.html │ │ │ │ │ │ ├── [js]shared.html │ │ │ │ │ │ ├── [jvm]my-extension.html │ │ │ │ │ │ ├── [jvm]shared.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js.html │ │ │ │ │ │ ├── jvm.html │ │ │ │ │ │ ├── print-pointer-raw-value.html │ │ │ │ │ │ └── start-connection-pipeline.html │ │ │ │ │ └── package-list │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ ├── library-publishing-example │ │ │ │ ├── html │ │ │ │ │ ├── dokka-library-publishing-example │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── -greeter │ │ │ │ │ │ │ │ ├── -greeter.html │ │ │ │ │ │ │ │ ├── greet.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── name.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── main.html │ │ │ │ │ │ └── package-list │ │ │ │ │ ├── images │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── burger.svg │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ │ ├── cross.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ │ ├── homepage.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ │ ├── pages.json │ │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ │ ├── prism.js │ │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── prism.css │ │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ │ └── ui-kit.min.js │ │ │ │ └── javadoc │ │ │ │ │ ├── allclasses.html │ │ │ │ │ ├── demo │ │ │ │ │ ├── Greeter.html │ │ │ │ │ ├── HelloWorldKt.html │ │ │ │ │ └── package-summary.html │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── dokka-javadoc-stylesheet.css │ │ │ │ │ ├── element-list │ │ │ │ │ ├── index-files │ │ │ │ │ ├── index-1.html │ │ │ │ │ ├── index-2.html │ │ │ │ │ ├── index-3.html │ │ │ │ │ └── index-4.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery │ │ │ │ │ ├── external │ │ │ │ │ │ └── jquery │ │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ │ ├── jquery-migrate-3.4.0.min.js │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ └── jquery-ui.structure.min.css │ │ │ │ │ ├── member-search-index.js │ │ │ │ │ ├── module-search-index.js │ │ │ │ │ ├── package-list │ │ │ │ │ ├── package-search-index.js │ │ │ │ │ ├── resources │ │ │ │ │ ├── glass.png │ │ │ │ │ └── x.png │ │ │ │ │ ├── search.js │ │ │ │ │ ├── stylesheet.css │ │ │ │ │ ├── tag-search-index.js │ │ │ │ │ └── type-search-index.js │ │ │ │ ├── multimodule-example │ │ │ │ └── html │ │ │ │ │ ├── childProjectA │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -child-project-a-class │ │ │ │ │ │ │ ├── -child-project-a-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── childProjectB │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -child-project-b-class │ │ │ │ │ │ │ ├── -child-project-b-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── images │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ ├── annotation.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ ├── enum.svg │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ ├── field-value.svg │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ ├── homepage.svg │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ ├── object.svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── success-icon.svg │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── scripts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ │ └── sourceset_dependencies.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ └── ui-kit │ │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ └── versioning-multimodule-example │ │ │ │ └── html │ │ │ │ ├── childProjectA │ │ │ │ ├── demo │ │ │ │ │ ├── -child-project-a-class │ │ │ │ │ │ ├── -child-project-a-class.html │ │ │ │ │ │ ├── extend.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -fancy-a-p-i │ │ │ │ │ │ ├── -fancy-a-p-i.html │ │ │ │ │ │ ├── do-something.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── navigation.html │ │ │ │ ├── childProjectB │ │ │ │ ├── demo │ │ │ │ │ ├── -child-project-b-class │ │ │ │ │ │ ├── -child-project-b-class.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── super-function42.html │ │ │ │ ├── index.html │ │ │ │ └── navigation.html │ │ │ │ ├── images │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ ├── abstract-class.svg │ │ │ │ ├── anchor-copy-icon.svg │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ ├── annotation.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── burger.svg │ │ │ │ ├── check.svg │ │ │ │ ├── checkbox-off.svg │ │ │ │ ├── checkbox-on.svg │ │ │ │ ├── class-kotlin.svg │ │ │ │ ├── class.svg │ │ │ │ ├── copy-icon.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── enum-kotlin.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── exception-class.svg │ │ │ │ ├── field-value.svg │ │ │ │ ├── field-variable.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── function.svg │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ ├── homepage.svg │ │ │ │ ├── interface-kotlin.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── logo-icon.svg │ │ │ │ ├── object.svg │ │ │ │ ├── placeholder.svg │ │ │ │ ├── success-icon.svg │ │ │ │ ├── theme-toggle.svg │ │ │ │ └── typealias-kotlin.svg │ │ │ │ ├── index.html │ │ │ │ ├── navigation.html │ │ │ │ ├── not-found-version.html │ │ │ │ ├── older │ │ │ │ └── 0.9 │ │ │ │ │ ├── childProjectA │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -child-project-a-class │ │ │ │ │ │ │ ├── -child-project-a-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── childProjectB │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── -child-project-b-class │ │ │ │ │ │ │ ├── -child-project-b-class.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── navigation.html │ │ │ │ │ ├── images │ │ │ │ │ ├── anchor-copy-button.svg │ │ │ │ │ ├── copy-icon.svg │ │ │ │ │ ├── copy-successful-icon.svg │ │ │ │ │ ├── footer-go-to-link.svg │ │ │ │ │ ├── go-to-top-icon.svg │ │ │ │ │ └── logo-icon.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── not-found-version.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── scripts │ │ │ │ │ ├── clipboard.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── navigation-loader.js │ │ │ │ │ ├── pages.json │ │ │ │ │ ├── platform-content-handler.js │ │ │ │ │ ├── prism.js │ │ │ │ │ ├── sourceset_dependencies.js │ │ │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── font-jb-sans-auto.css │ │ │ │ │ ├── logo-styles.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── multimodule.css │ │ │ │ │ ├── prism.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── ui-kit │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ │ │ ├── abstract-class.svg │ │ │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ │ │ ├── annotation.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── burger.svg │ │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ │ ├── checkbox-on.svg │ │ │ │ │ │ ├── class-kotlin.svg │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ ├── cross.svg │ │ │ │ │ │ ├── enum-kotlin.svg │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ ├── exception-class.svg │ │ │ │ │ │ ├── field-value.svg │ │ │ │ │ │ ├── field-variable.svg │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ ├── function.svg │ │ │ │ │ │ ├── homepage.svg │ │ │ │ │ │ ├── interface-kotlin.svg │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ │ ├── theme-toggle.svg │ │ │ │ │ │ └── typealias-kotlin.svg │ │ │ │ │ ├── ui-kit.min.css │ │ │ │ │ └── ui-kit.min.js │ │ │ │ │ └── version.json │ │ │ │ ├── package-list │ │ │ │ ├── scripts │ │ │ │ ├── main.js │ │ │ │ ├── navigation-loader.js │ │ │ │ ├── pages.json │ │ │ │ ├── platform-content-handler.js │ │ │ │ ├── prism.js │ │ │ │ ├── safe-local-storage_blocking.js │ │ │ │ └── sourceset_dependencies.js │ │ │ │ ├── styles │ │ │ │ ├── logo-styles.css │ │ │ │ ├── main.css │ │ │ │ ├── multimodule.css │ │ │ │ ├── prism.css │ │ │ │ └── style.css │ │ │ │ ├── ui-kit │ │ │ │ ├── fonts │ │ │ │ │ ├── inter-latin-400-italic.woff │ │ │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ │ │ ├── inter-latin-400-normal.woff │ │ │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ │ │ ├── inter-latin-600-normal.woff │ │ │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ │ ├── ui-kit.min.css │ │ │ │ └── ui-kit.min.js │ │ │ │ └── version.json │ │ └── kotlin │ │ │ └── ExampleProjectsTest.kt │ │ ├── testExternalProjectKotlinxCoroutines │ │ └── kotlin │ │ │ └── CoroutinesGradleIntegrationTest.kt │ │ ├── testExternalProjectKotlinxDatetime │ │ └── kotlin │ │ │ └── DatetimeGradleIntegrationTest.kt │ │ ├── testExternalProjectKotlinxIo │ │ └── kotlin │ │ │ └── IoGradleIntegrationTest.kt │ │ ├── testExternalProjectKotlinxSerialization │ │ └── kotlin │ │ │ └── SerializationGradleIntegrationTest.kt │ │ ├── testTemplateProjectAndroid │ │ └── kotlin │ │ │ └── Android0GradleIntegrationTest.kt │ │ ├── testTemplateProjectBasic │ │ └── kotlin │ │ │ ├── AbstractGradleCachingIntegrationTest.kt │ │ │ ├── BasicCachingIntegrationTest.kt │ │ │ ├── BasicGradleIntegrationTest.kt │ │ │ └── GradleRelocatedCachingIntegrationTest.kt │ │ ├── testTemplateProjectBasicGroovy │ │ └── kotlin │ │ │ └── BasicGroovyIntegrationTest.kt │ │ ├── testTemplateProjectCollector │ │ └── kotlin │ │ │ └── Collector0IntegrationTest.kt │ │ ├── testTemplateProjectConfiguration │ │ └── kotlin │ │ │ └── ConfigurationTest.kt │ │ ├── testTemplateProjectJsIr │ │ └── kotlin │ │ │ └── JsIRGradleIntegrationTest.kt │ │ ├── testTemplateProjectMultimodule0 │ │ └── kotlin │ │ │ └── MultiModule0IntegrationTest.kt │ │ ├── testTemplateProjectMultimodule1 │ │ └── kotlin │ │ │ └── MultiModule1IntegrationTest.kt │ │ ├── testTemplateProjectMultimoduleInterModuleLinks │ │ └── kotlin │ │ │ └── MultiModuleInterModuleLinksIntegrationTest.kt │ │ ├── testTemplateProjectMultimoduleVersioning │ │ └── kotlin │ │ │ └── Versioning0IntegrationTest.kt │ │ ├── testTemplateProjectMultiplatform │ │ └── kotlin │ │ │ └── Multiplatform0GradleIntegrationTest.kt │ │ ├── testTemplateProjectMultiplatformMultimodule │ │ └── kotlin │ │ │ └── MultiModuleMultiplatformIntegrationTest.kt │ │ ├── testTemplateProjectTasksExecutionStress │ │ └── kotlin │ │ │ └── SequentialTasksExecutionStressTest.kt │ │ ├── testTemplateProjectWasmJsWasiBasic │ │ └── kotlin │ │ │ └── WasmJsWasiGradleIntegrationTest.kt │ │ └── testUiShowcaseProject │ │ └── kotlin │ │ └── UiShowcaseIntegrationTest.kt ├── maven │ ├── build.gradle.kts │ ├── projects │ │ ├── biojava │ │ │ └── biojava.diff │ │ └── it-maven │ │ │ ├── customResources │ │ │ ├── custom-resource.svg │ │ │ ├── custom-style-to-add.css │ │ │ └── logo-styles.css │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── it │ │ │ │ └── basic │ │ │ │ └── java │ │ │ │ └── SampleJavaClass.java │ │ │ └── kotlin │ │ │ └── it │ │ │ ├── basic │ │ │ └── PublicClass.kt │ │ │ ├── internal │ │ │ └── InternalClass.kt │ │ │ ├── overriddenVisibility │ │ │ └── VisiblePrivateClass.kt │ │ │ └── protected │ │ │ └── ProtectedClass.kt │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── settingsXml.kt │ │ ├── testExternalProjectBioJava │ │ └── kotlin │ │ │ └── BiojavaIntegrationTest.kt │ │ └── testTemplateProjectMaven │ │ └── kotlin │ │ └── MavenIntegrationTest.kt ├── settings.gradle.kts └── utilities │ ├── build.gradle.kts │ └── src │ └── main │ └── kotlin │ └── org │ └── jetbrains │ └── dokka │ └── it │ ├── AbstractIntegrationTest.kt │ ├── TestOutputCopier.kt │ ├── gitSubmoduleUtils.kt │ ├── processUtils.kt │ └── systemProperties.kt ├── dokka-runners ├── dokka-gradle-plugin │ ├── api │ │ └── dokka-gradle-plugin.api │ ├── build.gradle.kts │ ├── gradle.properties │ ├── settings.gradle.kts │ └── src │ │ ├── classicMain │ │ └── kotlin │ │ │ ├── DokkaArtifacts.kt │ │ │ ├── DokkaClassicPlugin.kt │ │ │ ├── DokkaMultiModuleFileLayout.kt │ │ │ ├── DokkaProperty.kt │ │ │ ├── DokkaSourceSetMapper.kt │ │ │ ├── GradleDokkaSourceSetBuilder.kt │ │ │ ├── GradleDokkaSourceSetBuilderExtensions.kt │ │ │ ├── GradleDokkaSourceSetBuilderFactory.kt │ │ │ ├── GradleExternalDocumentationLinkBuilder.kt │ │ │ ├── GradlePackageOptionsBuilder.kt │ │ │ ├── GradleSourceLinkBuilder.kt │ │ │ ├── TaskDependencyInternalWithAdditions.kt │ │ │ ├── checkChildDokkaTasksIsNotEmpty.kt │ │ │ ├── checkDependentSourceSets.kt │ │ │ ├── dokkaBootstrapFactory.kt │ │ │ ├── dokkaSourceSetIDFactory.kt │ │ │ ├── gradleConfigurations.kt │ │ │ ├── internal │ │ │ └── AbstractDokkaTaskExtensions.kt │ │ │ ├── kotlin │ │ │ ├── KotlinGradlePluginVersion.kt │ │ │ ├── KotlinNativeDistributionAccessor.kt │ │ │ ├── KotlinSourceSetGist.kt │ │ │ ├── isMainSourceSet.kt │ │ │ ├── kotlinClasspathUtils.kt │ │ │ ├── kotlinCompilationUtils.kt │ │ │ ├── kotlinSourceSetUtils.kt │ │ │ └── platformOfSourceSet.kt │ │ │ ├── sourceSetKotlinGistConfiguration.kt │ │ │ ├── tasks │ │ │ ├── AbstractDokkaLeafTask.kt │ │ │ ├── AbstractDokkaParentTask.kt │ │ │ ├── AbstractDokkaTask.kt │ │ │ ├── DokkaCollectorTask.kt │ │ │ ├── DokkaMultiModuleTask.kt │ │ │ ├── DokkaTask.kt │ │ │ └── DokkaTaskPartial.kt │ │ │ └── utils.kt │ │ ├── classicTest │ │ └── kotlin │ │ │ ├── AbstractDokkaParentTaskTest.kt │ │ │ ├── AndroidAutoConfigurationTest.kt │ │ │ ├── CheckSourceSetDependenciesTest.kt │ │ │ ├── ConfigureWithKotlinSourceSetGistTest.kt │ │ │ ├── DokkaClassicPluginApplyTest.kt │ │ │ ├── DokkaConfigurationJsonTest.kt │ │ │ ├── DokkaConfigurationSerializableTest.kt │ │ │ ├── DokkaMultiModuleFileLayoutTest.kt │ │ │ ├── GradleDokkaSourceSetBuilder.kt │ │ │ ├── GradleDokkaSourceSetBuilderTest.kt │ │ │ ├── KotlinDslDokkaTaskConfigurationTest.kt │ │ │ ├── KotlinSourceSetGistTest.kt │ │ │ ├── kotlin │ │ │ └── KotlinGradlePluginVersionTest.kt │ │ │ ├── tasks │ │ │ ├── DokkaCollectorTaskTest.kt │ │ │ ├── DokkaMultiModuleTaskTest.kt │ │ │ └── DokkaTaskTest.kt │ │ │ └── utils │ │ │ ├── AgpUtils.kt │ │ │ └── samWithReceiverWorkarounds.kt │ │ ├── main │ │ └── kotlin │ │ │ ├── DokkaBasePlugin.kt │ │ │ ├── DokkaExtension.kt │ │ │ ├── DokkaPlugin.kt │ │ │ ├── adapters │ │ │ ├── AndroidAdapter.kt │ │ │ ├── JavaAdapter.kt │ │ │ └── KotlinAdapter.kt │ │ │ ├── dependencies │ │ │ ├── BaseDependencyManager.kt │ │ │ ├── DependencyContainerNames.kt │ │ │ ├── DokkaAttribute.kt │ │ │ ├── DokkaJavaRuntimeUsageCompatibilityRule.kt │ │ │ ├── FormatDependenciesManager.kt │ │ │ ├── ModuleComponentDependencies.kt │ │ │ └── attributeValues.kt │ │ │ ├── engine │ │ │ ├── parameters │ │ │ │ ├── DokkaExternalDocumentationLinkSpec.kt │ │ │ │ ├── DokkaGeneratorParametersSpec.kt │ │ │ │ ├── DokkaModuleDescriptionKxs.kt │ │ │ │ ├── DokkaPackageOptionsSpec.kt │ │ │ │ ├── DokkaSourceLinkSpec.kt │ │ │ │ ├── DokkaSourceSetSpec.kt │ │ │ │ ├── HasConfigurableVisibilityModifiers.kt │ │ │ │ ├── KotlinPlatform.kt │ │ │ │ ├── SourceSetIdSpec.kt │ │ │ │ ├── VisibilityModifier.kt │ │ │ │ └── builders │ │ │ │ │ ├── DokkaParametersBuilder.kt │ │ │ │ │ └── DokkaSourceSetBuilder.kt │ │ │ └── plugins │ │ │ │ ├── DokkaHtmlPluginParameters.kt │ │ │ │ ├── DokkaPluginParametersBaseSpec.kt │ │ │ │ └── DokkaVersioningPluginParameters.kt │ │ │ ├── formats │ │ │ ├── DokkaFormatPlugin.kt │ │ │ ├── DokkaFormatTasks.kt │ │ │ ├── DokkaHtmlPlugin.kt │ │ │ ├── DokkaJavadocPlugin.kt │ │ │ └── DokkaPublication.kt │ │ │ ├── internal │ │ │ ├── HasFormatName.kt │ │ │ ├── InternalDokkaGradlePluginApi.kt │ │ │ ├── LoggerAdapter.kt │ │ │ ├── PluginFeaturesService.kt │ │ │ ├── PluginIds.kt │ │ │ ├── collectionsUtils.kt │ │ │ ├── dokkaBootstrapFactory.kt │ │ │ ├── findExtensionLenient.kt │ │ │ ├── gradleProviderUtils.kt │ │ │ ├── gradleTypealiases.kt │ │ │ ├── gradleUtils.kt │ │ │ ├── kotlinxSerializationUtils.kt │ │ │ ├── logUtils.kt │ │ │ ├── pathUtils.kt │ │ │ ├── stringUtils.kt │ │ │ ├── uriUtils.kt │ │ │ └── v2MigrationUtils.kt │ │ │ ├── tasks │ │ │ ├── DokkaBaseTask.kt │ │ │ ├── DokkaGenerateModuleTask.kt │ │ │ ├── DokkaGeneratePublicationTask.kt │ │ │ ├── DokkaGenerateTask.kt │ │ │ ├── LogHtmlPublicationLinkTask.kt │ │ │ └── TaskNames.kt │ │ │ └── workers │ │ │ ├── DokkaGeneratorWorker.kt │ │ │ └── WorkerIsolationProperties.kt │ │ ├── test │ │ └── kotlin │ │ │ ├── DokkaPluginTest.kt │ │ │ ├── ModulePathTests.kt │ │ │ ├── engine │ │ │ ├── parameters │ │ │ │ ├── DokkaExternalDocumentationLinkSpecTest.kt │ │ │ │ ├── DokkaModuleDescriptionKxsTest.kt │ │ │ │ ├── DokkaSourceLinkSpecTest.kt │ │ │ │ ├── DokkaSourceSetSpecTest.kt │ │ │ │ ├── KotlinPlatformTest.kt │ │ │ │ ├── VisibilityModifierTest.kt │ │ │ │ └── builders │ │ │ │ │ └── DokkaSourceSetBuilderTest.kt │ │ │ └── plugins │ │ │ │ └── DokkaVersioningPluginParametersTest.kt │ │ │ ├── formats │ │ │ ├── DokkaFormatPluginTest.kt │ │ │ └── DokkaFormatTasksTest.kt │ │ │ ├── internal │ │ │ ├── DokkaBootstrapProxyTest.kt │ │ │ ├── LoggerAdapterTest.kt │ │ │ ├── MigrationHelpersTest.kt │ │ │ ├── PathUtilsTest.kt │ │ │ └── UriUtilsTest.kt │ │ │ └── utils │ │ │ └── ShouldBeADirectoryWithSameContentAsTest.kt │ │ ├── testFixtures │ │ └── kotlin │ │ │ ├── GradleProjectUtils.kt │ │ │ ├── GradlePropertiesBuilder.kt │ │ │ ├── GradleTestKitUtils.kt │ │ │ ├── KotestProjectConfig.kt │ │ │ ├── fileTree.kt │ │ │ ├── files.kt │ │ │ ├── gradleRunnerUtils.kt │ │ │ ├── kotestCollectionMatchers.kt │ │ │ ├── kotestConditions.kt │ │ │ ├── kotestFiles.kt │ │ │ ├── kotestGradleAssertions.kt │ │ │ ├── kotestStringMatchers.kt │ │ │ ├── projects │ │ │ ├── MultiModuleProject.kt │ │ │ └── NoConfigMultiModuleProject.kt │ │ │ ├── samWithReceiverWorkarounds.kt │ │ │ ├── stringUtils.kt │ │ │ ├── systemVariableProviders.kt │ │ │ └── text.kt │ │ └── testFunctional │ │ ├── kotlin │ │ ├── DokkaBaseTasksLinksTest.kt │ │ ├── DokkaDependenciesCompatibilityTest.kt │ │ ├── DokkaGeneratorFailureTest.kt │ │ ├── DokkaGeneratorLoggingTest.kt │ │ ├── DokkaPluginFunctionalTest.kt │ │ ├── DokkaV1TaskDisabledTest.kt │ │ ├── DumpDokkaConfigurationTest.kt │ │ ├── DuplicateModulePathWarningTest.kt │ │ ├── GradlePluginProjectIntegrationTest.kt │ │ ├── HtmlAggregationWarningTest.kt │ │ ├── KotlinAnalysisSymlinksTest.kt │ │ ├── KotlinDslAccessorsTest.kt │ │ ├── KotlinMultiplatformFunctionalTest.kt │ │ ├── MigrationMessagesTest.kt │ │ ├── MultiModuleAggregationTest.kt │ │ ├── MultiModuleFunctionalTest.kt │ │ ├── OverrideJsonConfigTest.kt │ │ ├── PluginFeaturesServiceTest.kt │ │ ├── TryK2MessagesTest.kt │ │ ├── VersioningPluginTest.kt │ │ └── tasks │ │ │ └── LogHtmlPublicationLinkTaskTest.kt │ │ └── resources │ │ └── KotlinDslAccessorsTest │ │ ├── root-project-v2-migration-helpers.txt │ │ ├── root-project.txt │ │ ├── subproject-goodbye-v2-migration-helpers.txt │ │ ├── subproject-goodbye.txt │ │ ├── subproject-hello-v2-migration-helpers.txt │ │ └── subproject-hello.txt ├── runner-cli │ ├── api │ │ └── runner-cli.api │ ├── build.gradle.kts │ ├── gradle.properties │ ├── settings.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ ├── CliArgumentTypes.kt │ │ │ ├── GlobalArguments.kt │ │ │ ├── LinkMapper.kt │ │ │ ├── PackageOptionsParser.kt │ │ │ ├── SourceSetArgumentsParser.kt │ │ │ └── main.kt │ │ └── test │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── CliTest.kt │ │ └── resources │ │ ├── my-file-no-sourceset-options.json │ │ └── my-file.json └── runner-maven-plugin │ ├── api │ └── runner-maven-plugin.api │ ├── build.gradle.kts │ ├── gradle.properties │ ├── pom.template.xml │ ├── settings.gradle.kts │ ├── settings.xml │ └── src │ └── main │ └── kotlin │ └── org │ └── jetbrains │ └── dokka │ └── maven │ ├── DokkaMojo.kt │ ├── ExternalDocumentationLinkBuilder.kt │ ├── MavenDokkaLogger.kt │ ├── PackageOptions.kt │ └── SourceLinkMapItem.kt ├── dokka-subprojects ├── README.md ├── analysis-java-psi │ ├── README.md │ ├── api │ │ └── analysis-java-psi.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── intellij │ │ │ └── openapi │ │ │ └── fileTypes │ │ │ └── BinaryFileTypeDecompilers.java │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── analysis │ │ │ └── java │ │ │ ├── DefaultPsiToDocumentableTranslator.kt │ │ │ ├── JavaAnalysisPlugin.kt │ │ │ ├── JavadocTag.kt │ │ │ ├── SynheticElementDocumentationProvider.kt │ │ │ ├── doccomment │ │ │ ├── DocComment.kt │ │ │ ├── DocCommentCreator.kt │ │ │ ├── DocCommentFactory.kt │ │ │ ├── DocCommentFinder.kt │ │ │ ├── DocumentationContent.kt │ │ │ ├── JavaDocComment.kt │ │ │ ├── JavaDocCommentCreator.kt │ │ │ └── PsiDocumentationContent.kt │ │ │ ├── parsers │ │ │ ├── CommentResolutionContext.kt │ │ │ ├── DocCommentParser.kt │ │ │ ├── DokkaPsiParser.kt │ │ │ ├── JavaDocCommentParser.kt │ │ │ ├── JavadocParser.kt │ │ │ └── doctag │ │ │ │ ├── DocTagParserContext.kt │ │ │ │ ├── HtmlToDocTagConverter.kt │ │ │ │ ├── InheritDocTagContentProvider.kt │ │ │ │ ├── InheritDocTagResolver.kt │ │ │ │ ├── PsiDocTagParser.kt │ │ │ │ └── PsiElementToHtmlConverter.kt │ │ │ └── util │ │ │ ├── CoreCopyPaste.kt │ │ │ ├── NoopIntellijLogger.kt │ │ │ ├── PropertiesConventionUtil.kt │ │ │ ├── PsiAccessorConventionUtil.kt │ │ │ ├── PsiCommentsUtils.kt │ │ │ ├── PsiUtil.kt │ │ │ ├── StdlibUtil.kt │ │ │ └── resolveToGetDri.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── analysis-kotlin-api │ ├── README.md │ ├── api │ │ └── analysis-kotlin-api.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── analysis │ │ │ └── kotlin │ │ │ ├── KotlinAnalysisPlugin.kt │ │ │ ├── documentable │ │ │ └── ExternalDocumentableProvider.kt │ │ │ ├── internal │ │ │ ├── DocumentableSourceLanguageParser.kt │ │ │ ├── FullClassHierarchyBuilder.kt │ │ │ ├── InheritanceBuilder.kt │ │ │ ├── InternalKotlinAnalysisPlugin.kt │ │ │ ├── KotlinToJavaService.kt │ │ │ ├── ModuleAndPackageDocumentationReader.kt │ │ │ └── SyntheticDocumentableDetector.kt │ │ │ ├── markdown │ │ │ └── MarkdownApi.kt │ │ │ └── sample │ │ │ ├── SampleAnalysisEnvironment.kt │ │ │ ├── SampleAnalysisEnvironmentCreator.kt │ │ │ ├── SampleRewriter.kt │ │ │ └── SampleSnippet.kt │ │ ├── test │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── analysis │ │ │ │ └── test │ │ │ │ ├── SourceRootChecker.kt │ │ │ │ ├── TagsAnnotations.kt │ │ │ │ ├── documentable │ │ │ │ ├── ExternalDocumentableProviderTest.kt │ │ │ │ ├── KotlinModalityTest.kt │ │ │ │ ├── ObviousFunctionsTest.kt │ │ │ │ └── SpecialCharacterTest.kt │ │ │ │ ├── jvm │ │ │ │ ├── java │ │ │ │ │ ├── InnerModifierJavaAnalysisTest.kt │ │ │ │ │ ├── JavaModalityTest.kt │ │ │ │ │ ├── JavadocParamAnalysisTest.kt │ │ │ │ │ └── SampleJavaAnalysisTest.kt │ │ │ │ ├── kotlin │ │ │ │ │ └── SampleKotlinJvmAnalysisTest.kt │ │ │ │ └── mixed │ │ │ │ │ └── SampleMixedJvmAnalysisTest.kt │ │ │ │ ├── moduledocs │ │ │ │ └── PackageDocumentationAnalysisTest.kt │ │ │ │ └── sample │ │ │ │ ├── SampleAnalysisTest.kt │ │ │ │ └── SampleRewriterTest.kt │ │ └── resources │ │ │ └── jars │ │ │ ├── README.md │ │ │ └── kotlinx-cli-jvm-0.3.6.jar │ │ └── testFixtures │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── analysis │ │ └── test │ │ └── api │ │ ├── TestData.kt │ │ ├── TestDataFile.kt │ │ ├── TestProject.kt │ │ ├── TestProjectFactory.kt │ │ ├── analysis │ │ ├── TestAnalysisContext.kt │ │ ├── TestAnalysisServices.kt │ │ └── TestProjectAnalyzer.kt │ │ ├── configuration │ │ ├── TestDokkaConfiguration.kt │ │ ├── TestDokkaConfigurationBuilder.kt │ │ └── TestDokkaConfigurationMapper.kt │ │ ├── jvm │ │ ├── java │ │ │ ├── JavaConfigurationBuilder.kt │ │ │ ├── JavaFileCreator.kt │ │ │ ├── JavaTestData.kt │ │ │ ├── JavaTestDataFile.kt │ │ │ └── JavaTestProject.kt │ │ ├── kotlin │ │ │ ├── KotlinJvmConfigurationBuilder.kt │ │ │ ├── KotlinJvmDependencyUtils.kt │ │ │ └── KotlinJvmTestProject.kt │ │ └── mixed │ │ │ ├── MixedJvmConfigurationBuilder.kt │ │ │ ├── MixedJvmTestData.kt │ │ │ └── MixedJvmTestProject.kt │ │ ├── kotlin │ │ ├── KotlinTestData.kt │ │ ├── KotlinTestDataFile.kt │ │ ├── KtFileCreator.kt │ │ └── sample │ │ │ ├── KotlinSampleFileCreator.kt │ │ │ ├── KotlinSampleTestData.kt │ │ │ └── KotlinSampleTestDataFile.kt │ │ ├── markdown │ │ ├── MarkdownTestData.kt │ │ ├── MarkdownTestDataFile.kt │ │ └── MdFileCreator.kt │ │ └── util │ │ ├── CollectionUtils.kt │ │ ├── DokkaLoggerUtils.kt │ │ ├── DslApiUtils.kt │ │ ├── FileUtils.kt │ │ └── TestAnalysisApiUtils.kt ├── analysis-kotlin-descriptors-compiler │ ├── README.md │ ├── api │ │ └── analysis-kotlin-descriptors-compiler.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── analysis │ │ │ │ └── kotlin │ │ │ │ └── descriptors │ │ │ │ └── compiler │ │ │ │ ├── AnalysisContextCreator.kt │ │ │ │ ├── CompilerDescriptorAnalysisPlugin.kt │ │ │ │ ├── CompilerDocumentableSourceLanguageParser.kt │ │ │ │ ├── CompilerExtensionPointProvider.kt │ │ │ │ ├── DescriptorFinder.kt │ │ │ │ ├── K1SourceRootIndependentChecker.kt │ │ │ │ ├── KDocFinder.kt │ │ │ │ ├── KLibService.kt │ │ │ │ ├── MockApplicationHack.kt │ │ │ │ ├── configuration │ │ │ │ ├── AbsolutePathString.kt │ │ │ │ ├── AnalysisContext.kt │ │ │ │ ├── AnalysisEnvironment.kt │ │ │ │ ├── CallableFactory.kt │ │ │ │ ├── DRIFactory.kt │ │ │ │ ├── DRITargetFactory.kt │ │ │ │ ├── Documentable.kt │ │ │ │ ├── KotlinAnalysis.kt │ │ │ │ ├── TypeReferenceFactory.kt │ │ │ │ └── resolve │ │ │ │ │ ├── CommonKlibModuleInfo.kt │ │ │ │ │ ├── DokkaJsKlibLibraryInfo.kt │ │ │ │ │ ├── DokkaJsResolverForModuleFactory.kt │ │ │ │ │ ├── DokkaKlibLibraryDependencyResolver.kt │ │ │ │ │ ├── DokkaKlibLibraryInfo.kt │ │ │ │ │ ├── DokkaKlibMetadataCommonDependencyContainer.kt │ │ │ │ │ ├── DokkaNativeKlibLibraryInfo.kt │ │ │ │ │ └── DokkaNativeResolverForModuleFactory.kt │ │ │ │ ├── impl │ │ │ │ ├── DescriptorFullClassHierarchyBuilder.kt │ │ │ │ ├── DescriptorInheritanceBuilder.kt │ │ │ │ ├── DescriptorKotlinToJavaMapper.kt │ │ │ │ ├── DescriptorSampleAnalysisEnvironment.kt │ │ │ │ ├── DescriptorSyntheticDocumentableDetector.kt │ │ │ │ └── moduledocs │ │ │ │ │ ├── IllegalModuleAndPackageDocumentation.kt │ │ │ │ │ ├── ModuleAndPackageDocumentation.kt │ │ │ │ │ ├── ModuleAndPackageDocumentationFragment.kt │ │ │ │ │ ├── ModuleAndPackageDocumentationParsingContext.kt │ │ │ │ │ ├── ModuleAndPackageDocumentationReader.kt │ │ │ │ │ ├── ModuleAndPackageDocumentationSource.kt │ │ │ │ │ ├── parseModuleAndPackageDocumentation.kt │ │ │ │ │ └── parseModuleAndPackageDocumentationFragments.kt │ │ │ │ ├── java │ │ │ │ ├── DescriptorDocumentationContent.kt │ │ │ │ ├── DescriptorKotlinDocComment.kt │ │ │ │ ├── DescriptorKotlinDocCommentCreator.kt │ │ │ │ ├── DescriptorKotlinDocCommentParser.kt │ │ │ │ ├── KotlinAnalysisProjectProvider.kt │ │ │ │ ├── KotlinAnalysisSourceRootsExtractor.kt │ │ │ │ └── KotlinInheritDocTagContentProvider.kt │ │ │ │ └── translator │ │ │ │ ├── CollectionExtensions.kt │ │ │ │ ├── DefaultDescriptorToDocumentableTranslator.kt │ │ │ │ ├── DescriptorAccessorConventionUtil.kt │ │ │ │ ├── DescriptorExternalDocumentablesProvider.kt │ │ │ │ ├── ExternalClasslikesTranslator.kt │ │ │ │ ├── KdocMarkdownParser.kt │ │ │ │ ├── SyntheticDescriptorDocumentationProvider.kt │ │ │ │ ├── annotationsValue.kt │ │ │ │ └── isException.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── analysis │ │ └── kotlin │ │ └── descriptors │ │ └── ParseModuleAndPackageDocumentationFragmentsTest.kt ├── analysis-kotlin-descriptors-ide │ ├── README.md │ ├── api │ │ └── analysis-kotlin-descriptors-ide.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ ├── dokka │ │ │ └── analysis │ │ │ │ └── kotlin │ │ │ │ └── descriptors │ │ │ │ └── ide │ │ │ │ ├── CachingIdeKlibMetadataLoader.kt │ │ │ │ ├── CoreKotlinCacheService.kt │ │ │ │ ├── DokkaResolutionFacade.kt │ │ │ │ ├── IdeAnalysisContextCreator.kt │ │ │ │ ├── IdeDescriptorAnalysisPlugin.kt │ │ │ │ ├── IdeDescriptorFinder.kt │ │ │ │ ├── IdeKLibService.kt │ │ │ │ ├── IdeMockApplicationHack.kt │ │ │ │ ├── IdePluginKDocFinder.kt │ │ │ │ └── ResolutionFacadeAnalysisContext.kt │ │ │ └── kotlin │ │ │ ├── caches │ │ │ └── resolve │ │ │ │ ├── KotlinCacheService.kt │ │ │ │ └── PlatformAnalysisSettings.kt │ │ │ ├── idea │ │ │ ├── caches │ │ │ │ └── resolve │ │ │ │ │ └── ExtendedResolutionApi.kt │ │ │ ├── kdoc │ │ │ │ ├── findKDoc.kt │ │ │ │ └── resolveKDocLink.kt │ │ │ ├── klib │ │ │ │ └── KlibCompatibilityInfo.kt │ │ │ ├── resolve │ │ │ │ └── ResolutionFacade.kt │ │ │ └── util │ │ │ │ ├── CallType.kt │ │ │ │ ├── ExtensionsUtils.kt │ │ │ │ └── FuzzyTypeUtils.kt │ │ │ └── resolve │ │ │ └── lazy │ │ │ └── BodyResolveMode.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── analysis-kotlin-descriptors │ ├── README.md │ ├── api │ │ └── analysis-kotlin-descriptors.api │ └── build.gradle.kts ├── analysis-kotlin-symbols │ ├── README.md │ ├── api │ │ └── analysis-kotlin-symbols.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── intellij │ │ │ └── util │ │ │ └── lang │ │ │ └── JavaVersion.java │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── analysis │ │ │ └── kotlin │ │ │ └── symbols │ │ │ ├── kdoc │ │ │ ├── KDocProvider.kt │ │ │ ├── KdocMarkdownParser.kt │ │ │ ├── ResolveKDocLink.kt │ │ │ ├── SyntheticKDocProvider.kt │ │ │ ├── java │ │ │ │ ├── DescriptorDocumentationContent.kt │ │ │ │ ├── DescriptorKotlinDocCommentCreator.kt │ │ │ │ ├── KotlinDocComment.kt │ │ │ │ ├── KotlinDocCommentParser.kt │ │ │ │ └── KotlinInheritDocTagContentProvider.kt │ │ │ └── moduledocs │ │ │ │ ├── IllegalModuleAndPackageDocumentation.kt │ │ │ │ ├── ModuleAndPackageDocumentation.kt │ │ │ │ ├── ModuleAndPackageDocumentationFragment.kt │ │ │ │ ├── ModuleAndPackageDocumentationParsingContext.kt │ │ │ │ ├── ModuleAndPackageDocumentationReader.kt │ │ │ │ ├── ModuleAndPackageDocumentationSource.kt │ │ │ │ ├── parseModuleAndPackageDocumentation.kt │ │ │ │ └── parseModuleAndPackageDocumentationFragments.kt │ │ │ ├── plugin │ │ │ ├── AnalysisContext.kt │ │ │ ├── InternalConfiguration.kt │ │ │ ├── KotlinAnalysis.kt │ │ │ ├── SourceRootIndependentChecker.kt │ │ │ └── SymbolsAnalysisPlugin.kt │ │ │ ├── services │ │ │ ├── KotlinAnalysisProjectProvider.kt │ │ │ ├── KotlinAnalysisSourceRootsExtractor.kt │ │ │ ├── KotlinDocumentableSourceLanguageParser.kt │ │ │ ├── KtPsiDocumentableSource.kt │ │ │ ├── SymbolExternalDocumentablesProvider.kt │ │ │ ├── SymbolFullClassHierarchyBuilder.kt │ │ │ ├── SymbolInheritanceBuilder.kt │ │ │ ├── SymbolKotlinToJavaMapper.kt │ │ │ ├── SymbolSampleAnalysisEnvironment.kt │ │ │ └── SymbolSyntheticDocumentableDetector.kt │ │ │ ├── translators │ │ │ ├── AnnotationTranslator.kt │ │ │ ├── DRIFactory.kt │ │ │ ├── DefaultSymbolToDocumentableTranslator.kt │ │ │ ├── TranslatorError.kt │ │ │ ├── TypeReferenceFactory.kt │ │ │ └── TypeTranslator.kt │ │ │ └── utils │ │ │ └── isException.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── analysis-markdown-jb │ ├── README.md │ ├── api │ │ └── analysis-markdown-jb.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── analysis │ │ └── markdown │ │ └── jb │ │ ├── MarkdownParser.kt │ │ ├── ParseUtils.kt │ │ ├── Parser.kt │ │ └── factories │ │ └── DocTagsFromIElementFactory.kt ├── build.gradle.kts ├── core-content-matcher-test-utils │ ├── api │ │ └── core-content-matcher-test-utils.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── test │ │ └── tools │ │ └── matchers │ │ └── content │ │ ├── ContentMatchersDsl.kt │ │ └── contentMatchers.kt ├── core-test-api │ ├── api │ │ └── dokka-test-api.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── testApi │ │ ├── configuration.kt │ │ ├── context │ │ └── MockContext.kt │ │ ├── logger │ │ └── TestLogger.kt │ │ └── testRunner │ │ ├── TestDokkaConfigurationBuilder.kt │ │ └── TestRunner.kt ├── core │ ├── api │ │ └── dokka-core.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ ├── ConfigurationJsonUtils.kt │ │ │ │ ├── CoreExtensions.kt │ │ │ │ ├── DelicateDokkaApi.kt │ │ │ │ ├── DokkaBootstrap.kt │ │ │ │ ├── DokkaBootstrapImpl.kt │ │ │ │ ├── DokkaException.kt │ │ │ │ ├── DokkaGenerator.kt │ │ │ │ ├── DokkaVersion.kt │ │ │ │ ├── ExperimentalDokkaApi.kt │ │ │ │ ├── InternalDokkaApi.kt │ │ │ │ ├── configuration.kt │ │ │ │ ├── defaultConfiguration.kt │ │ │ │ ├── defaultExternalLinks.kt │ │ │ │ ├── generation │ │ │ │ └── Generation.kt │ │ │ │ ├── links │ │ │ │ └── DRI.kt │ │ │ │ ├── model │ │ │ │ ├── CompositeSourceSetID.kt │ │ │ │ ├── DisplaySourceSet.kt │ │ │ │ ├── Documentable.kt │ │ │ │ ├── JvmField.kt │ │ │ │ ├── WithChildren.kt │ │ │ │ ├── additionalExtras.kt │ │ │ │ ├── ancestryNode.kt │ │ │ │ ├── classKinds.kt │ │ │ │ ├── defaultValues.kt │ │ │ │ ├── doc │ │ │ │ │ ├── DocTag.kt │ │ │ │ │ ├── DocumentationNode.kt │ │ │ │ │ └── TagWrapper.kt │ │ │ │ ├── documentableProperties.kt │ │ │ │ ├── documentableUtils.kt │ │ │ │ ├── extraModifiers.kt │ │ │ │ ├── jvmName.kt │ │ │ │ └── properties │ │ │ │ │ ├── PropertyContainer.kt │ │ │ │ │ └── properties.kt │ │ │ │ ├── pages │ │ │ │ ├── ContentNodes.kt │ │ │ │ ├── PageNodes.kt │ │ │ │ ├── Pages.kt │ │ │ │ ├── RendererSpecificPage.kt │ │ │ │ ├── contentNodeProperties.kt │ │ │ │ └── utils.kt │ │ │ │ ├── plugability │ │ │ │ ├── DokkaContext.kt │ │ │ │ ├── DokkaJavaPlugin.kt │ │ │ │ ├── DokkaPlugin.kt │ │ │ │ ├── LazyEvaluated.kt │ │ │ │ └── extensions.kt │ │ │ │ ├── renderers │ │ │ │ ├── PostAction.kt │ │ │ │ └── Renderer.kt │ │ │ │ ├── transformers │ │ │ │ ├── documentation │ │ │ │ │ ├── DefaultDocumentableMerger.kt │ │ │ │ │ ├── DocumentableMerger.kt │ │ │ │ │ ├── DocumentableToPageTranslator.kt │ │ │ │ │ ├── DocumentableTransformer.kt │ │ │ │ │ └── PreMergeDocumentableTransformer.kt │ │ │ │ ├── pages │ │ │ │ │ ├── PageCreator.kt │ │ │ │ │ ├── PageTransformer.kt │ │ │ │ │ └── PageTransformerBuilders.kt │ │ │ │ └── sources │ │ │ │ │ ├── AsyncSourceToDocumentableTranslator.kt │ │ │ │ │ └── SourceToDocumentableTranslator.kt │ │ │ │ ├── utilities │ │ │ │ ├── Collections.kt │ │ │ │ ├── DokkaLogging.kt │ │ │ │ ├── Html.kt │ │ │ │ ├── SelfRepresentingSingletonSet.kt │ │ │ │ ├── ServiceLocator.kt │ │ │ │ ├── Uri.kt │ │ │ │ ├── associateWithNotNull.kt │ │ │ │ ├── cast.kt │ │ │ │ ├── json.kt │ │ │ │ └── parallelCollectionOperations.kt │ │ │ │ └── validity │ │ │ │ └── PreGenerationChecker.kt │ │ └── resources │ │ │ └── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── dokka │ │ │ └── dokka-version.properties │ │ └── test │ │ └── kotlin │ │ ├── model │ │ ├── CompositeSourceSetIDTest.kt │ │ ├── DisplaySourceSetTest.kt │ │ └── DocumentableTest.kt │ │ └── utilities │ │ ├── DokkaConfigurationJsonTest.kt │ │ └── JsonKtTest.kt ├── plugin-all-modules-page │ ├── README.md │ ├── api │ │ └── plugin-all-modules-page.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── allModulesPage │ │ │ │ ├── AllModulesPageGeneration.kt │ │ │ │ ├── AllModulesPagePlugin.kt │ │ │ │ ├── ExternalModuleLinkResolver.kt │ │ │ │ ├── MultimoduleLocationProvider.kt │ │ │ │ ├── MultimodulePageCreator.kt │ │ │ │ └── ResolveLinkCommandHandler.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── allModulesPage │ │ ├── MultiModuleDokkaTestGenerator.kt │ │ └── templates │ │ ├── MultiModuleDocumentationTest.kt │ │ ├── ResolveLinkCommandResolutionTest.kt │ │ ├── ResolveLinkGfmCommandResolutionTest.kt │ │ ├── ResolveLinkOfTheSamePackagesInDifferentModulesCommandResolutionTest.kt │ │ └── mockedPackageListFactory.kt ├── plugin-android-documentation │ ├── README.md │ ├── api │ │ └── plugin-android-documentation.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── android │ │ │ │ ├── AndroidDocumentationPlugin.kt │ │ │ │ └── transformers │ │ │ │ └── HideTagDocumentableFilter.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── transformers │ │ └── HideTagDocumentableFilterTest.kt ├── plugin-base-frontend │ ├── .eslintrc.js │ ├── .nvmrc │ ├── .prettierrc.js │ ├── README.md │ ├── build.gradle.kts │ ├── create-component.mjs │ ├── lint-staged.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ └── main │ │ │ ├── components │ │ │ ├── app │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ └── searchIcon.svg │ │ │ ├── root.tsx │ │ │ ├── search │ │ │ │ ├── dokkaFuzzyFilter.tsx │ │ │ │ ├── dokkaSearchAnchor.tsx │ │ │ │ ├── search.scss │ │ │ │ ├── search.tsx │ │ │ │ ├── searchResultRow.tsx │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ ├── arrayUtils.ts │ │ │ │ ├── hotkey.ts │ │ │ │ ├── os.ts │ │ │ │ └── requests.tsx │ │ │ ├── scss │ │ │ └── index.scss │ │ │ ├── types │ │ │ ├── @jetbrains │ │ │ │ └── index.d.ts │ │ │ └── global.d.ts │ │ │ └── ui-kit │ │ │ ├── _assets │ │ │ ├── anchor-copy-icon.svg │ │ │ ├── arrow-down.svg │ │ │ ├── burger.svg │ │ │ ├── check.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox-on.svg │ │ │ ├── copy-icon.svg │ │ │ ├── cross.svg │ │ │ ├── filter.svg │ │ │ ├── go-to-top-icon.svg │ │ │ ├── homepage.svg │ │ │ ├── nav-icons │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ ├── abstract-class.svg │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ ├── annotation.svg │ │ │ │ ├── class-kotlin.svg │ │ │ │ ├── class.svg │ │ │ │ ├── enum-kotlin.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── exception-class.svg │ │ │ │ ├── field-value.svg │ │ │ │ ├── field-variable.svg │ │ │ │ ├── function.svg │ │ │ │ ├── interface-kotlin.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── object.svg │ │ │ │ └── typealias-kotlin.svg │ │ │ ├── placeholder.svg │ │ │ ├── success-icon.svg │ │ │ └── theme-toggle.svg │ │ │ ├── _tokens │ │ │ ├── breakpoints.scss │ │ │ ├── colors.scss │ │ │ ├── index.scss │ │ │ ├── sizes.scss │ │ │ ├── transitions.scss │ │ │ └── typography.scss │ │ │ ├── breadcrumbs │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── button │ │ │ ├── button.stories.ftl │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── checkbox │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── code-block │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── copy-tooltip │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── dropdown │ │ │ ├── dropdown.stories.ftl │ │ │ ├── focus-trap.ts │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── filter-section │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── footer │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── global.scss │ │ │ ├── helpers.scss │ │ │ ├── icon │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── index.ts │ │ │ ├── inline-code │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── layout │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── library-name │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── library-version │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── link │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── navbar-button │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── navbar │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── platform-tag │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── table │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── tabs │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── toc-tree │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ └── utils.ts │ ├── stylelint.config.js │ ├── tsconfig.json │ ├── webpack.config-ui-kit.js │ └── webpack.config.js ├── plugin-base-test-utils │ ├── api │ │ └── plugin-base-test-utils.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── base │ │ └── testApi │ │ ├── renderers │ │ ├── RenderingOnlyTestBase.kt │ │ └── TestPage.kt │ │ ├── signatures │ │ └── SignatureUtils.kt │ │ ├── testRunner │ │ └── baseTestApi.kt │ │ └── utils │ │ ├── JsoupUtils.kt │ │ ├── TestOutputWriter.kt │ │ └── assertHtmlEqualsIgnoringWhitespace.kt ├── plugin-base │ ├── README.md │ ├── api │ │ └── plugin-base.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── base │ │ │ │ ├── DokkaBase.kt │ │ │ │ ├── DokkaBaseConfiguration.kt │ │ │ │ ├── DokkaBaseInternalConfiguration.kt │ │ │ │ ├── deprecated │ │ │ │ ├── AnalysisApiDeprecatedError.kt │ │ │ │ ├── KotlinAnalysisDeprecatedApi.kt │ │ │ │ ├── ParsersDeprecatedAPI.kt │ │ │ │ ├── ParsersFactoriesDeprecatedAPI.kt │ │ │ │ ├── TranslatorDescriptorsDeprecatedAPI.kt │ │ │ │ └── TranslatorPsiDeprecatedAPI.kt │ │ │ │ ├── generation │ │ │ │ ├── SingleModuleGeneration.kt │ │ │ │ └── SourceSetIdUniquenessChecker.kt │ │ │ │ ├── pages │ │ │ │ └── AllTypesPageNode.kt │ │ │ │ ├── renderers │ │ │ │ ├── DefaultRenderer.kt │ │ │ │ ├── FileWriter.kt │ │ │ │ ├── OutputWriter.kt │ │ │ │ ├── PackageListService.kt │ │ │ │ ├── TabSortingStrategy.kt │ │ │ │ ├── contentTypeChecking.kt │ │ │ │ ├── html │ │ │ │ │ ├── HtmlCodeBlockRenderer.kt │ │ │ │ │ ├── HtmlContent.kt │ │ │ │ │ ├── HtmlRenderer.kt │ │ │ │ │ ├── NavigationDataProvider.kt │ │ │ │ │ ├── NavigationPage.kt │ │ │ │ │ ├── SearchbarDataInstaller.kt │ │ │ │ │ ├── Tags.kt │ │ │ │ │ ├── command │ │ │ │ │ │ └── consumers │ │ │ │ │ │ │ ├── ImmediateResolutionTagConsumer.kt │ │ │ │ │ │ │ ├── PathToRootConsumer.kt │ │ │ │ │ │ │ ├── ReplaceVersionsConsumer.kt │ │ │ │ │ │ │ └── ResolveLinkConsumer.kt │ │ │ │ │ ├── htmlFormatingUtils.kt │ │ │ │ │ ├── htmlPreprocessors.kt │ │ │ │ │ ├── innerTemplating │ │ │ │ │ │ ├── DefaultTemplateModelFactory.kt │ │ │ │ │ │ ├── DefaultTemplateModelMerger.kt │ │ │ │ │ │ ├── HtmlTemplater.kt │ │ │ │ │ │ ├── TemplateModelFactory.kt │ │ │ │ │ │ └── TemplateModelMerger.kt │ │ │ │ │ └── shouldRenderSourceSetBubbles.kt │ │ │ │ ├── pageId.kt │ │ │ │ └── preprocessors.kt │ │ │ │ ├── resolvers │ │ │ │ ├── anchors │ │ │ │ │ └── AnchorsHint.kt │ │ │ │ ├── external │ │ │ │ │ ├── DefaultExternalLocationProvider.kt │ │ │ │ │ ├── DefaultExternalLocationProviderFactory.kt │ │ │ │ │ ├── Dokka010ExternalLocationProvider.kt │ │ │ │ │ ├── ExternalLocationProvider.kt │ │ │ │ │ ├── ExternalLocationProviderFactory.kt │ │ │ │ │ ├── ExternalLocationProviderFactoryWithCache.kt │ │ │ │ │ └── javadoc │ │ │ │ │ │ ├── AndroidExternalLocationProvider.kt │ │ │ │ │ │ ├── JavadocExternalLocationProvider.kt │ │ │ │ │ │ └── JavadocExternalLocationProviderFactory.kt │ │ │ │ ├── local │ │ │ │ │ ├── DefaultLocationProvider.kt │ │ │ │ │ ├── DokkaBaseLocationProvider.kt │ │ │ │ │ ├── DokkaLocationProvider.kt │ │ │ │ │ ├── DokkaLocationProviderFactory.kt │ │ │ │ │ ├── LocationProvider.kt │ │ │ │ │ └── LocationProviderFactory.kt │ │ │ │ └── shared │ │ │ │ │ ├── ExternalDocumentation.kt │ │ │ │ │ ├── LinkFormat.kt │ │ │ │ │ ├── PackageList.kt │ │ │ │ │ ├── RecognizedLinkFormat.kt │ │ │ │ │ └── utils.kt │ │ │ │ ├── signatures │ │ │ │ ├── JvmSignatureUtils.kt │ │ │ │ ├── KotlinSignatureProvider.kt │ │ │ │ ├── KotlinSignatureUtils.kt │ │ │ │ └── SignatureProvider.kt │ │ │ │ ├── templating │ │ │ │ ├── AddToNavigationCommand.kt │ │ │ │ ├── AddToSearch.kt │ │ │ │ ├── AddToSourcesetDependencies.kt │ │ │ │ ├── Command.kt │ │ │ │ ├── ImmediateHtmlCommandConsumer.kt │ │ │ │ ├── InsertTemplateExtra.kt │ │ │ │ ├── PathToRootSubstitutionCommand.kt │ │ │ │ ├── ProjectNameSubstitutionCommand.kt │ │ │ │ ├── ReplaceVersionsCommand.kt │ │ │ │ ├── ResolveLinkCommand.kt │ │ │ │ └── jsonMapperForPlugins.kt │ │ │ │ ├── transformers │ │ │ │ ├── documentables │ │ │ │ │ ├── ActualTypealiasAdder.kt │ │ │ │ │ ├── ClashingDriIdentifier.kt │ │ │ │ │ ├── DefaultDocumentableMerger.kt │ │ │ │ │ ├── DeprecatedDocumentableFilterTransformer.kt │ │ │ │ │ ├── DocumentableReplacerTransformer.kt │ │ │ │ │ ├── DocumentableVisibilityFilterTransformer.kt │ │ │ │ │ ├── EmptyModulesFilterTransformer.kt │ │ │ │ │ ├── EmptyPackagesFilterTransformer.kt │ │ │ │ │ ├── ExtensionExtractorTransformer.kt │ │ │ │ │ ├── InheritedEntriesDocumentableFilterTransformer.kt │ │ │ │ │ ├── InheritorsExtractorTransformer.kt │ │ │ │ │ ├── JvmMappedMethodsDocumentableFilterTransformer.kt │ │ │ │ │ ├── KotlinArrayDocumentableReplacerTransformer.kt │ │ │ │ │ ├── ModuleAndPackageDocumentationTransformer.kt │ │ │ │ │ ├── ObviousFunctionsDocumentableFilterTransformer.kt │ │ │ │ │ ├── ReportUndocumentedTransformer.kt │ │ │ │ │ ├── SuppressTagDocumentableFilter.kt │ │ │ │ │ ├── SuppressedByConditionDocumentableFilterTransformer.kt │ │ │ │ │ ├── SuppressedByConfigurationDocumentableFilterTransformer.kt │ │ │ │ │ └── utils.kt │ │ │ │ └── pages │ │ │ │ │ ├── DefaultSamplesTransformer.kt │ │ │ │ │ ├── annotations │ │ │ │ │ └── SinceKotlinTransformer.kt │ │ │ │ │ ├── comments │ │ │ │ │ ├── CommentsToContentConverter.kt │ │ │ │ │ └── DocTagToContentConverter.kt │ │ │ │ │ ├── merger │ │ │ │ │ ├── FallbackPageMergerStrategy.kt │ │ │ │ │ ├── PageMerger.kt │ │ │ │ │ ├── PageMergerStrategy.kt │ │ │ │ │ ├── SameMethodNamePageMergerStrategy.kt │ │ │ │ │ └── SourceSetMergingPageTransformer.kt │ │ │ │ │ ├── sourcelinks │ │ │ │ │ └── SourceLinksTransformer.kt │ │ │ │ │ └── tags │ │ │ │ │ ├── CustomTagContentProvider.kt │ │ │ │ │ └── SinceKotlinTagContentProvider.kt │ │ │ │ ├── translators │ │ │ │ └── documentables │ │ │ │ │ ├── DefaultDocumentableToPageTranslator.kt │ │ │ │ │ ├── DefaultPageCreator.kt │ │ │ │ │ ├── DeprecationSectionCreator.kt │ │ │ │ │ ├── DescriptionSections.kt │ │ │ │ │ ├── DriClashAwareName.kt │ │ │ │ │ ├── PageContentBuilder.kt │ │ │ │ │ └── briefFromContentNodes.kt │ │ │ │ └── utils │ │ │ │ ├── CollectionExtensions.kt │ │ │ │ └── alphabeticalOrder.kt │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ │ └── dokka │ │ │ ├── docs │ │ │ ├── javadoc │ │ │ │ ├── EnumValueOf.java.template │ │ │ │ └── EnumValues.java.template │ │ │ └── kdoc │ │ │ │ ├── EnumEntries.kt.template │ │ │ │ ├── EnumValueOf.kt.template │ │ │ │ └── EnumValues.kt.template │ │ │ ├── format │ │ │ ├── gfm.properties │ │ │ ├── html-as-java.properties │ │ │ ├── html.properties │ │ │ ├── java-layout-html.properties │ │ │ ├── jekyll.properties │ │ │ ├── kotlin-website-html.properties │ │ │ └── markdown.properties │ │ │ ├── images │ │ │ ├── abstract-class-kotlin.svg │ │ │ ├── abstract-class.svg │ │ │ ├── anchor-copy-icon.svg │ │ │ ├── annotation-kotlin.svg │ │ │ ├── annotation.svg │ │ │ ├── arrow-down.svg │ │ │ ├── burger.svg │ │ │ ├── check.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox-on.svg │ │ │ ├── class-kotlin.svg │ │ │ ├── class.svg │ │ │ ├── copy-icon.svg │ │ │ ├── cross.svg │ │ │ ├── enum-kotlin.svg │ │ │ ├── enum.svg │ │ │ ├── exception-class.svg │ │ │ ├── field-value.svg │ │ │ ├── field-variable.svg │ │ │ ├── filter.svg │ │ │ ├── function.svg │ │ │ ├── go-to-top-icon.svg │ │ │ ├── homepage.svg │ │ │ ├── interface-kotlin.svg │ │ │ ├── interface.svg │ │ │ ├── logo-icon.svg │ │ │ ├── object.svg │ │ │ ├── placeholder.svg │ │ │ ├── success-icon.svg │ │ │ ├── theme-toggle.svg │ │ │ └── typealias-kotlin.svg │ │ │ ├── inbound-link-resolver │ │ │ ├── dokka-default.properties │ │ │ ├── java-layout-html.properties │ │ │ └── javadoc.properties │ │ │ ├── scripts │ │ │ ├── navigation-loader.js │ │ │ ├── platform-content-handler.js │ │ │ ├── prism.js │ │ │ └── safe-local-storage_blocking.js │ │ │ ├── styles │ │ │ ├── logo-styles.css │ │ │ ├── prism.css │ │ │ └── style.css │ │ │ ├── templates │ │ │ ├── base.ftl │ │ │ └── includes │ │ │ │ ├── footer.ftl │ │ │ │ ├── header.ftl │ │ │ │ ├── page_metadata.ftl │ │ │ │ └── source_set_selector.ftl │ │ │ └── ui-kit │ │ │ ├── fonts │ │ │ ├── inter-latin-400-italic.woff │ │ │ ├── inter-latin-400-italic.woff2 │ │ │ ├── inter-latin-400-normal.woff │ │ │ ├── inter-latin-400-normal.woff2 │ │ │ ├── inter-latin-600-normal.woff │ │ │ ├── inter-latin-600-normal.woff2 │ │ │ ├── jetbrains-mono-latin-400-normal.woff │ │ │ ├── jetbrains-mono-latin-400-normal.woff2 │ │ │ ├── jetbrains-mono-latin-600-normal.woff │ │ │ └── jetbrains-mono-latin-600-normal.woff2 │ │ │ ├── ui-kit.css │ │ │ ├── ui-kit.min.css │ │ │ └── ui-kit.min.js │ │ └── test │ │ ├── kotlin │ │ ├── EnumTemplatesTest.kt │ │ ├── basic │ │ │ ├── AbortGracefullyOnMissingDocumentablesTest.kt │ │ │ ├── DRITest.kt │ │ │ ├── DokkaBasicTests.kt │ │ │ ├── FailOnWarningTest.kt │ │ │ └── LoggerTest.kt │ │ ├── content │ │ │ ├── AllTypesPageTest.kt │ │ │ ├── ContentInDescriptionTest.kt │ │ │ ├── ExtensionsTest.kt │ │ │ ├── HighlightingTest.kt │ │ │ ├── ModulePageTest.kt │ │ │ ├── annotations │ │ │ │ ├── ContentForAnnotationsTest.kt │ │ │ │ ├── FileLevelJvmNameTest.kt │ │ │ │ ├── JavaDeprecatedTest.kt │ │ │ │ ├── KotlinDeprecatedTest.kt │ │ │ │ └── SinceKotlinTest.kt │ │ │ ├── exceptions │ │ │ │ └── ContentForExceptions.kt │ │ │ ├── functions │ │ │ │ ├── ContentForBriefTest.kt │ │ │ │ └── ContentForConstructors.kt │ │ │ ├── inheritors │ │ │ │ └── ContentForInheritorsTest.kt │ │ │ ├── params │ │ │ │ └── ContentForParamsTest.kt │ │ │ ├── properties │ │ │ │ └── ContentForClassWithParamsAndPropertiesTest.kt │ │ │ ├── receiver │ │ │ │ └── ContentForReceiverTest.kt │ │ │ ├── samples │ │ │ │ └── ContentForSamplesTest.kt │ │ │ ├── seealso │ │ │ │ └── ContentForSeeAlsoTest.kt │ │ │ ├── signatures │ │ │ │ ├── ConstructorsSignaturesTest.kt │ │ │ │ └── ContentForSignaturesTest.kt │ │ │ └── typealiases │ │ │ │ ├── NestedTypealiasTest.kt │ │ │ │ └── TypealiasTest.kt │ │ ├── enums │ │ │ ├── JavaEnumsTest.kt │ │ │ └── KotlinEnumsTest.kt │ │ ├── expect │ │ │ ├── AbstractExpectTest.kt │ │ │ ├── ExpectGenerator.kt │ │ │ ├── ExpectTest.kt │ │ │ └── ExpectUtils.kt │ │ ├── expectActuals │ │ │ └── ExpectActualsTest.kt │ │ ├── filter │ │ │ ├── DeprecationFilterTest.kt │ │ │ ├── EmptyPackagesFilterTest.kt │ │ │ ├── JavaFileFilterTest.kt │ │ │ ├── JavaVisibilityFilterTest.kt │ │ │ ├── KotlinArrayDocumentableReplacerTest.kt │ │ │ └── VisibilityFilterTest.kt │ │ ├── generation │ │ │ └── SourceSetIdUniquenessCheckerTest.kt │ │ ├── issues │ │ │ └── IssuesTest.kt │ │ ├── linkableContent │ │ │ └── LinkableContentTest.kt │ │ ├── linking │ │ │ └── EnumValuesLinkingTest.kt │ │ ├── locationProvider │ │ │ ├── AndroidExternalLocationProviderTest.kt │ │ │ ├── DefaultExternalLocationProviderTest.kt │ │ │ ├── Dokka010ExternalLocationProviderTest.kt │ │ │ ├── DokkaLocationProviderTest.kt │ │ │ ├── JavadocExternalLocationProviderTest.kt │ │ │ └── MultiModuleLinkingTest.kt │ │ ├── markdown │ │ │ ├── KDocTest.kt │ │ │ ├── LinkTest.kt │ │ │ └── ParserTest.kt │ │ ├── model │ │ │ ├── ClassesTest.kt │ │ │ ├── CommentTest.kt │ │ │ ├── ConstructorsTest.kt │ │ │ ├── ExtensionsTest.kt │ │ │ ├── FunctionsTest.kt │ │ │ ├── InheritorsTest.kt │ │ │ ├── JavaTest.kt │ │ │ ├── MultiLanguageInheritanceTest.kt │ │ │ ├── NestedTypealiasesTest.kt │ │ │ ├── ObjectTest.kt │ │ │ ├── PackagesTest.kt │ │ │ ├── PropertyTest.kt │ │ │ ├── TypesTest.kt │ │ │ └── annotations │ │ │ │ ├── JavaAnnotationsForParametersTest.kt │ │ │ │ ├── JavaAnnotationsTest.kt │ │ │ │ └── KotlinAnnotationsForParametersTest.kt │ │ ├── multiplatform │ │ │ └── BasicMultiplatformTest.kt │ │ ├── packageList │ │ │ └── PackageListTest.kt │ │ ├── pageMerger │ │ │ └── PageNodeMergerTest.kt │ │ ├── parsers │ │ │ └── JavadocParserTest.kt │ │ ├── renderers │ │ │ └── html │ │ │ │ ├── BasicTest.kt │ │ │ │ ├── BreadcrumbsTest.kt │ │ │ │ ├── CodeBlocksTest.kt │ │ │ │ ├── CoverPageTest.kt │ │ │ │ ├── CustomFooterTest.kt │ │ │ │ ├── DivergentTest.kt │ │ │ │ ├── FooterMessageTest.kt │ │ │ │ ├── FormattingUtilsTest.kt │ │ │ │ ├── GroupWrappingTest.kt │ │ │ │ ├── HeaderTest.kt │ │ │ │ ├── HtmlRenderingOnlyTestBase.kt │ │ │ │ ├── ListStylesTest.kt │ │ │ │ ├── NavigationIconTest.kt │ │ │ │ ├── NavigationTest.kt │ │ │ │ ├── SearchbarDataInstallerTest.kt │ │ │ │ ├── SourceSetDependentHintTest.kt │ │ │ │ ├── SourceSetFilterTest.kt │ │ │ │ ├── TabbedContentTest.kt │ │ │ │ └── TextStylesTest.kt │ │ ├── resourceLinks │ │ │ └── ResourceLinksTest.kt │ │ ├── signatures │ │ │ ├── AbstractRenderingTest.kt │ │ │ ├── DivergentSignatureTest.kt │ │ │ ├── FunctionalTypeConstructorsSignatureTest.kt │ │ │ ├── InheritedAccessorsSignatureTest.kt │ │ │ ├── ObviousTypeSkippingTest.kt │ │ │ ├── RawHtmlRenderingTest.kt │ │ │ ├── SignatureTest.kt │ │ │ └── VarianceSignatureTest.kt │ │ ├── superFields │ │ │ ├── DescriptorSuperPropertiesTest.kt │ │ │ └── PsiSuperFieldsTest.kt │ │ ├── transformerBuilders │ │ │ └── PageTransformerBuilderTest.kt │ │ ├── transformers │ │ │ ├── AbstractContextModuleAndPackageDocumentationReaderTest.kt │ │ │ ├── CommentsToContentConverterTest.kt │ │ │ ├── ContextModuleAndPackageDocumentationReaderTest1.kt │ │ │ ├── ContextModuleAndPackageDocumentationReaderTest3.kt │ │ │ ├── DivisionSwitchTest.kt │ │ │ ├── InheritedEntriesDocumentableFilterTransfromerTest.kt │ │ │ ├── InvalidContentModuleAndPackageDocumentationReaderTest.kt │ │ │ ├── JvmMappedMethodsFilterTest.kt │ │ │ ├── MergeImplicitExpectActualDeclarationsTest.kt │ │ │ ├── ModuleAndPackageDocumentationTransformerFunctionalTest.kt │ │ │ ├── ModuleAndPackageDocumentationTransformerUnitTest.kt │ │ │ ├── ObviousAndInheritedFunctionsDocumentableFilterTest.kt │ │ │ ├── ReportUndocumentedTransformerTest.kt │ │ │ ├── SourceLinkTransformerTest.kt │ │ │ ├── SuppressTagFilterTest.kt │ │ │ ├── SuppressedByConfigurationDocumentableFilterTransformerTest.kt │ │ │ └── isExceptionTest.kt │ │ ├── translators │ │ │ ├── AccessorMethodNamingTest.kt │ │ │ ├── Bug1341.kt │ │ │ ├── DefaultDescriptorToDocumentableTranslatorTest.kt │ │ │ ├── DefaultPsiToDocumentableTranslatorTest.kt │ │ │ ├── JavadocInheritDocsTest.kt │ │ │ ├── JavadocInheritedDocTagsTest.kt │ │ │ ├── JavadocParserTest.kt │ │ │ ├── KMPTest.kt │ │ │ └── utils.kt │ │ └── utils │ │ │ ├── HtmlUtils.kt │ │ │ ├── ModelUtils.kt │ │ │ ├── TagsAnnotations.kt │ │ │ ├── TestUtils.kt │ │ │ ├── contentUtils.kt │ │ │ └── systemProperties.kt │ │ └── resources │ │ ├── content │ │ └── samples │ │ │ └── samples.kt │ │ ├── jars │ │ ├── jvmAndroidLib-jvm-copy.jar │ │ └── jvmAndroidLib-jvm.jar │ │ ├── linkable │ │ ├── includes │ │ │ ├── include1.md │ │ │ ├── include11.md │ │ │ └── include2.md │ │ ├── samples │ │ │ ├── jsMain │ │ │ │ ├── kotlin │ │ │ │ │ └── JsClass.kt │ │ │ │ └── resources │ │ │ │ │ └── Samples.kt │ │ │ └── jvmMain │ │ │ │ ├── kotlin │ │ │ │ └── JvmClass.kt │ │ │ │ └── resources │ │ │ │ └── Samples.kt │ │ └── sources │ │ │ ├── jsMain │ │ │ └── kotlin │ │ │ │ └── JsClass.kt │ │ │ └── jvmMain │ │ │ └── kotlin │ │ │ └── JvmClass.kt │ │ ├── linking │ │ └── jvmMain │ │ │ └── kotlin │ │ │ └── linking │ │ │ └── source │ │ │ ├── JavaEnum.java │ │ │ ├── JavaLinker.java │ │ │ ├── KotlinEnum.kt │ │ │ └── KotlinLinker.kt │ │ ├── locationProvider │ │ ├── jdk8-package-list │ │ ├── multi-module-package-list │ │ ├── old-package-list │ │ └── stdlib-package-list │ │ └── multiplatform │ │ └── basicMultiplatformTest │ │ ├── commonMain │ │ └── kotlin │ │ │ ├── Clock.kt │ │ │ └── House.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── Clock.kt │ │ ├── jvmAndJsSecondCommonMain │ │ └── kotlin │ │ │ └── Greeter.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── example │ │ ├── Clock.kt │ │ ├── ClockDays.kt │ │ ├── HtmlTest.kt │ │ └── ParticularClock.kt ├── plugin-gfm-template-processing │ ├── api │ │ └── plugin-gfm-template-processing.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── gfm │ │ │ └── templateProcessing │ │ │ ├── GfmTemplateProcessingPlugin.kt │ │ │ └── GfmTemplateProcessingStrategy.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── plugin-gfm │ ├── README.md │ ├── api │ │ └── plugin-gfm.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── gfm │ │ │ │ ├── GfmPlugin.kt │ │ │ │ ├── gfmTemplating.kt │ │ │ │ ├── location │ │ │ │ └── MarkdownLocationProvider.kt │ │ │ │ └── renderer │ │ │ │ ├── BriefCommentPreprocessor.kt │ │ │ │ └── CommonmarkRenderer.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── renderers │ │ └── gfm │ │ ├── CodeWrappingTest.kt │ │ ├── DivergentTest.kt │ │ ├── GfmRenderingOnlyTestBase.kt │ │ ├── GroupWrappingTest.kt │ │ ├── SimpleElementsTest.kt │ │ └── SourceSetDependentHintTest.kt ├── plugin-javadoc │ ├── README.md │ ├── api │ │ └── plugin-javadoc.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── javadoc │ │ │ │ ├── JavadocDocumentableToPageTranslator.kt │ │ │ │ ├── JavadocPageCreator.kt │ │ │ │ ├── JavadocPlugin.kt │ │ │ │ ├── location │ │ │ │ ├── JavadocLocationProvider.kt │ │ │ │ └── JavadocLocationProviderFactory.kt │ │ │ │ ├── pages │ │ │ │ ├── JavadocContentNodes.kt │ │ │ │ ├── JavadocIndexExtra.kt │ │ │ │ ├── JavadocPageNodes.kt │ │ │ │ ├── htmlPreprocessors.kt │ │ │ │ └── utils.kt │ │ │ │ ├── renderer │ │ │ │ ├── JavadocContentToHtmlTranslator.kt │ │ │ │ ├── JavadocContentToTemplateMapTranslator.kt │ │ │ │ ├── KorteJavadocRenderer.kt │ │ │ │ └── SearchScriptsCreator.kt │ │ │ │ ├── signatures │ │ │ │ └── JavadocSignatureProvider.kt │ │ │ │ ├── transformers │ │ │ │ └── documentables │ │ │ │ │ └── JavadocDocumentableJVMSourceSetFilter.kt │ │ │ │ ├── translators │ │ │ │ └── documentables │ │ │ │ │ └── JavadocPageContentBuilder.kt │ │ │ │ ├── utils.kt │ │ │ │ └── validity │ │ │ │ └── MultiplatformConfiguredChecker.kt │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ │ ├── static_res │ │ │ ├── dokka-javadoc-stylesheet.css │ │ │ ├── jquery │ │ │ │ ├── external │ │ │ │ │ └── jquery │ │ │ │ │ │ └── jquery.js │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ ├── jquery-migrate-3.4.0.min.js │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ └── jquery-ui.structure.min.css │ │ │ ├── resources │ │ │ │ ├── glass.png │ │ │ │ └── x.png │ │ │ ├── search.js │ │ │ └── stylesheet.css │ │ │ └── views │ │ │ ├── class.korte │ │ │ ├── components │ │ │ ├── base.korte │ │ │ ├── bottomNavbar.korte │ │ │ ├── head.korte │ │ │ ├── indexPage.korte │ │ │ ├── indexTable.korte │ │ │ ├── navList.korte │ │ │ ├── subNav.korte │ │ │ └── topNavbar.korte │ │ │ ├── deprecated.korte │ │ │ ├── indexPage.korte │ │ │ ├── listPage.korte │ │ │ ├── tabPage.korte │ │ │ └── treePage.korte │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── javadoc │ │ ├── AbstractJavadocTemplateMapTest.kt │ │ ├── Asserts.kt │ │ ├── JavadocAccessorNamingTest.kt │ │ ├── JavadocAllClassesTemplateMapTest.kt │ │ ├── JavadocClasslikeTemplateMapTest.kt │ │ ├── JavadocConstructorsTest.kt │ │ ├── JavadocDeprecatedTest.kt │ │ ├── JavadocIndexTest.kt │ │ ├── JavadocLocationTemplateMapTest.kt │ │ ├── JavadocModuleTemplateMapTest.kt │ │ ├── JavadocPackageTemplateMapTest.kt │ │ ├── JavadocTest.kt │ │ ├── location │ │ ├── JavadocLinkingTest.kt │ │ └── JavadocLocationTest.kt │ │ ├── packagelist │ │ └── JavadocPackageListTest.kt │ │ ├── search │ │ └── JavadocIndexSearchTest.kt │ │ ├── transformers │ │ └── documentables │ │ │ └── JavadocDocumentableJVMSourceSetFilterTest.kt │ │ └── validity │ │ └── MultiplatformConfiguredCheckerTest.kt ├── plugin-jekyll-template-processing │ ├── api │ │ └── plugin-jekyll-template-processing.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── gfm │ │ │ └── templateProcessing │ │ │ └── JekyllTemplateProcessingPlugin.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── plugin-jekyll │ ├── README.md │ ├── api │ │ └── plugin-jekyll.api │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── jekyll │ │ │ └── JekyllPlugin.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin ├── plugin-kotlin-as-java │ ├── README.md │ ├── api │ │ └── plugin-kotlin-as-java.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── kotlinAsJava │ │ │ │ ├── CollectionExtensions.kt │ │ │ │ ├── KotlinAsJavaPlugin.kt │ │ │ │ ├── converters │ │ │ │ ├── KotlinCompanion.kt │ │ │ │ └── KotlinToJavaConverter.kt │ │ │ │ ├── jvmField.kt │ │ │ │ ├── jvmName.kt │ │ │ │ ├── jvmOverloads.kt │ │ │ │ ├── jvmStatic.kt │ │ │ │ ├── jvmSynthetic.kt │ │ │ │ ├── signatures │ │ │ │ ├── JavaSignatureProvider.kt │ │ │ │ └── JavaSignatureUtils.kt │ │ │ │ ├── transformToJava.kt │ │ │ │ ├── transformers │ │ │ │ ├── JvmNameDocumentableTransformer.kt │ │ │ │ ├── JvmNameProvider.kt │ │ │ │ ├── KotlinAsJavaDocumentableTransformer.kt │ │ │ │ └── withCallableName.kt │ │ │ │ └── translators │ │ │ │ ├── KotlinAsJavaDocumentableToPageTranslator.kt │ │ │ │ └── KotlinAsJavaPageCreator.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── kotlinAsJavaPlugin │ │ ├── CompanionAsJavaTest.kt │ │ ├── DRITranslationTest.kt │ │ ├── JvmFieldTest.kt │ │ ├── JvmNameTest.kt │ │ ├── JvmOverloadsTest.kt │ │ ├── JvmSyntheticTest.kt │ │ ├── KotlinAsJavaPluginTest.kt │ │ └── KotlinAsJavaSignatureTest.kt ├── plugin-mathjax │ ├── README.md │ ├── api │ │ └── plugin-mathjax.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ └── mathjax │ │ │ │ └── MathjaxPlugin.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── mathjaxTest │ │ └── MathjaxPluginTest.kt ├── plugin-templating │ ├── README.md │ ├── api │ │ └── plugin-templating.api │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── dokka │ │ │ │ ├── allModulesPage │ │ │ │ └── templates │ │ │ │ │ ├── JsonElementBasedTemplateProcessingStrategy.kt │ │ │ │ │ └── PackageListProcessingStrategy.kt │ │ │ │ └── templates │ │ │ │ ├── AddToNavigationCommandHandler.kt │ │ │ │ ├── CommandHandler.kt │ │ │ │ ├── DirectiveBasedTemplateProcessing.kt │ │ │ │ ├── FallbackTemplateProcessingStrategy.kt │ │ │ │ ├── PathToRootSubstitutor.kt │ │ │ │ ├── ProjectNameSubstitutor.kt │ │ │ │ ├── ReplaceVersionCommandHandler.kt │ │ │ │ ├── SourcesetDependencyProcessingStrategy.kt │ │ │ │ ├── SubstitutionCommandHandler.kt │ │ │ │ ├── Substitutor.kt │ │ │ │ ├── TemplateProcessor.kt │ │ │ │ └── TemplatingPlugin.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── dokka │ │ └── templates │ │ ├── AddToNavigationCommandResolutionTest.kt │ │ ├── AddToSearchCommandResolutionTest.kt │ │ ├── SubstitutionCommandResolutionTest.kt │ │ ├── TemplatingDokkaTestGenerator.kt │ │ ├── TestTemplatingGeneration.kt │ │ └── TestTemplatingPlugin.kt └── plugin-versioning │ ├── README.md │ ├── api │ └── plugin-versioning.api │ ├── build.gradle.kts │ ├── src │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── dokka │ │ │ └── versioning │ │ │ ├── DefaultPreviousDocumentationCopyPostAction.kt │ │ │ ├── ReplaceVersionCommandConsumer.kt │ │ │ ├── ReplaceVersionsCommand.kt │ │ │ ├── VersioningConfiguration.kt │ │ │ ├── VersioningPlugin.kt │ │ │ ├── VersioningStorage.kt │ │ │ ├── VersionsNavigationCreator.kt │ │ │ ├── VersionsOrdering.kt │ │ │ └── htmlPreprocessors.kt │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ └── dokka │ │ ├── not-found-version.html │ │ └── styles │ │ └── multimodule.css │ └── versioning-plugin-example.png ├── examples ├── README.md ├── gradle-v2 │ ├── README.md │ ├── basic-gradle-example │ │ ├── Module.md │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── composite-build-example │ │ ├── README.md │ │ ├── build-logic │ │ │ ├── build.gradle.kts │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ ├── dokka-convention.gradle.kts │ │ │ │ └── kotlin-jvm-convention.gradle.kts │ │ ├── build.gradle.kts │ │ ├── docs │ │ │ ├── build.gradle.kts │ │ │ └── settings.gradle.kts │ │ ├── gradle.properties │ │ ├── module-kakapo │ │ │ ├── build.gradle.kts │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── Kakapo.kt │ │ ├── module-kea │ │ │ ├── build.gradle.kts │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── Kea.kt │ │ └── settings.gradle.kts │ ├── custom-dokka-plugin-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo-library │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── demo │ │ │ │ └── HelloWorld.kt │ │ ├── dokka-plugin-hide-internal-api │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── kotlin │ │ │ │ └── demo │ │ │ │ │ └── dokka │ │ │ │ │ └── plugin │ │ │ │ │ └── HideInternalApiPlugin.kt │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ │ ├── gradle.properties │ │ └── settings.gradle.kts │ ├── custom-styling-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── ktor-logo.png │ │ ├── logo-styles.css │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── java-example │ │ ├── Module.md │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── buildSrc │ │ │ ├── build.gradle.kts │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ ├── dokka-convention.gradle.kts │ │ │ │ ├── java-application-convention.gradle.kts │ │ │ │ ├── java-base-convention.gradle.kts │ │ │ │ ├── java-library-convention.gradle.kts │ │ │ │ └── java-mongodb-library-convention.gradle.kts │ │ ├── gradle.properties │ │ ├── my-java-application │ │ │ ├── Module.md │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── demo │ │ │ │ └── MyJavaApplication.java │ │ ├── my-java-features │ │ │ ├── Module.md │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── demo │ │ │ │ │ └── feature │ │ │ │ │ └── MyJavaFeatureUtil.java │ │ │ │ └── mongodbSupport │ │ │ │ └── java │ │ │ │ └── demo │ │ │ │ └── mongodb │ │ │ │ └── MyMongoDbUtil.java │ │ ├── my-java-library │ │ │ ├── Module.md │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── demo │ │ │ │ └── MyJavaLibraryClass.java │ │ └── settings.gradle.kts │ ├── javadoc-example │ │ ├── Module.md │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── kotlin-as-java-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── kotlin-multiplatform-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── settings.gradle.kts │ │ └── src │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── CommonCoroutineExtensions.kt │ │ │ │ ├── CommonDateUtils.kt │ │ │ │ └── common │ │ │ │ └── Foo.kt │ │ │ ├── customJdk9 │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintest │ │ │ │ └── jdk9 │ │ │ │ └── CustomSourceSetFile.kt │ │ │ ├── jsMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── JsCoroutineExtensions.kt │ │ │ │ ├── JsDateUtils.kt │ │ │ │ └── JsFunctions.kt │ │ │ ├── jvmMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── JavaAnnotation.java │ │ │ │ ├── JvmCoroutineExtensions.kt │ │ │ │ ├── JvmDateUtils.kt │ │ │ │ └── JvmFunctions.kt │ │ │ ├── linuxMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── CInterop.kt │ │ │ │ ├── LinuxCoroutineExtensions.kt │ │ │ │ └── LinuxDateUtils.kt │ │ │ └── macosMain │ │ │ └── kotlin │ │ │ └── org │ │ │ └── kotlintestmpp │ │ │ ├── MacOsCoroutineExtensions.kt │ │ │ └── MacOsDateUtils.kt │ ├── library-publishing-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── multimodule-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── buildSrc │ │ │ ├── build.gradle.kts │ │ │ ├── settings.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── dokka-convention.gradle.kts │ │ ├── childProjectA │ │ │ ├── ModuleA.md │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── demo │ │ │ │ └── ChildProjectAClass.kt │ │ ├── childProjectB │ │ │ ├── ModuleB.md │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── demo │ │ │ │ └── ChildProjectBClass.kt │ │ ├── demo.png │ │ ├── docs │ │ │ ├── DocsModule.md │ │ │ └── build.gradle.kts │ │ ├── gradle.properties │ │ └── settings.gradle.kts │ └── versioning-multimodule-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── buildSrc │ │ ├── build.gradle.kts │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── dokka-convention.gradle.kts │ │ ├── childProjectA │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ ├── ChildProjectAClass.kt │ │ │ └── FancyAPI.kt │ │ ├── childProjectB │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ ├── ChildProjectBClass.kt │ │ │ └── Functions.kt │ │ ├── demo.png │ │ ├── docs │ │ ├── build.gradle.kts │ │ └── previousDocVersions │ │ │ └── 0.9 │ │ │ ├── childProjectA │ │ │ ├── demo │ │ │ │ ├── -child-project-a-class │ │ │ │ │ ├── -child-project-a-class.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navigation.html │ │ │ ├── childProjectB │ │ │ ├── demo │ │ │ │ ├── -child-project-b-class │ │ │ │ │ ├── -child-project-b-class.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navigation.html │ │ │ ├── images │ │ │ ├── anchor-copy-button.svg │ │ │ ├── copy-icon.svg │ │ │ ├── copy-successful-icon.svg │ │ │ ├── footer-go-to-link.svg │ │ │ ├── go-to-top-icon.svg │ │ │ └── logo-icon.svg │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── not-found-version.html │ │ │ ├── package-list │ │ │ ├── scripts │ │ │ ├── clipboard.js │ │ │ ├── main.js │ │ │ ├── navigation-loader.js │ │ │ ├── pages.json │ │ │ ├── platform-content-handler.js │ │ │ ├── prism.js │ │ │ ├── sourceset_dependencies.js │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ ├── styles │ │ │ ├── font-jb-sans-auto.css │ │ │ ├── logo-styles.css │ │ │ ├── main.css │ │ │ ├── multimodule.css │ │ │ ├── prism.css │ │ │ └── style.css │ │ │ ├── ui-kit │ │ │ ├── assets │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ ├── abstract-class.svg │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ ├── annotation.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── burger.svg │ │ │ │ ├── checkbox-off.svg │ │ │ │ ├── checkbox-on.svg │ │ │ │ ├── class-kotlin.svg │ │ │ │ ├── class.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── enum-kotlin.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── exception-class.svg │ │ │ │ ├── field-value.svg │ │ │ │ ├── field-variable.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── function.svg │ │ │ │ ├── homepage.svg │ │ │ │ ├── interface-kotlin.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── object.svg │ │ │ │ ├── placeholder.svg │ │ │ │ ├── theme-toggle.svg │ │ │ │ └── typealias-kotlin.svg │ │ │ ├── ui-kit.min.css │ │ │ └── ui-kit.min.js │ │ │ └── version.json │ │ ├── gradle.properties │ │ └── settings.gradle.kts ├── gradle │ ├── README.md │ ├── dokka-customFormat-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── ktor-logo.png │ │ ├── logo-styles.css │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── dokka-gradle-example │ │ ├── Module.md │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── dokka-kotlinAsJava-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── dokka-library-publishing-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ └── HelloWorld.kt │ ├── dokka-multimodule-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── parentProject │ │ │ ├── build.gradle.kts │ │ │ ├── childProjectA │ │ │ │ ├── ModuleA.md │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── kotlin │ │ │ │ │ └── demo │ │ │ │ │ └── ChildProjectAClass.kt │ │ │ └── childProjectB │ │ │ │ ├── ModuleB.md │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── demo │ │ │ │ └── ChildProjectBClass.kt │ │ └── settings.gradle.kts │ ├── dokka-multiplatform-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── CommonCoroutineExtensions.kt │ │ │ │ ├── CommonDateUtils.kt │ │ │ │ └── common │ │ │ │ └── Foo.kt │ │ │ ├── customJdk9 │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintest │ │ │ │ └── jdk9 │ │ │ │ └── CustomSourceSetFile.kt │ │ │ ├── jsMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── JsCoroutineExtensions.kt │ │ │ │ ├── JsDateUtils.kt │ │ │ │ └── JsFunctions.kt │ │ │ ├── jvmMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── JavaAnnotation.java │ │ │ │ ├── JvmCoroutineExtensions.kt │ │ │ │ ├── JvmDateUtils.kt │ │ │ │ └── JvmFunctions.kt │ │ │ ├── linuxMain │ │ │ └── kotlin │ │ │ │ └── org │ │ │ │ └── kotlintestmpp │ │ │ │ ├── CInterop.kt │ │ │ │ ├── LinuxCoroutineExtensions.kt │ │ │ │ └── LinuxDateUtils.kt │ │ │ └── macosMain │ │ │ └── kotlin │ │ │ └── org │ │ │ └── kotlintestmpp │ │ │ ├── MacOsCoroutineExtensions.kt │ │ │ └── MacOsDateUtils.kt │ └── dokka-versioning-multimodule-example │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── demo.png │ │ ├── gradle.properties │ │ ├── parentProject │ │ ├── build.gradle.kts │ │ ├── childProjectA │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── demo │ │ │ │ ├── ChildProjectAClass.kt │ │ │ │ └── FancyAPI.kt │ │ └── childProjectB │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── demo │ │ │ ├── ChildProjectBClass.kt │ │ │ └── Functions.kt │ │ ├── previousDocVersions │ │ └── 0.9 │ │ │ ├── childProjectA │ │ │ ├── demo │ │ │ │ ├── -child-project-a-class │ │ │ │ │ ├── -child-project-a-class.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navigation.html │ │ │ ├── childProjectB │ │ │ ├── demo │ │ │ │ ├── -child-project-b-class │ │ │ │ │ ├── -child-project-b-class.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navigation.html │ │ │ ├── images │ │ │ ├── anchor-copy-button.svg │ │ │ ├── arrow_down.svg │ │ │ ├── copy-icon.svg │ │ │ ├── copy-successful-icon.svg │ │ │ ├── footer-go-to-link.svg │ │ │ ├── go-to-top-icon.svg │ │ │ ├── logo-icon.svg │ │ │ ├── nav-icons │ │ │ │ ├── abstract-class-kotlin.svg │ │ │ │ ├── abstract-class.svg │ │ │ │ ├── annotation-kotlin.svg │ │ │ │ ├── annotation.svg │ │ │ │ ├── class-kotlin.svg │ │ │ │ ├── class.svg │ │ │ │ ├── enum-kotlin.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── exception-class.svg │ │ │ │ ├── field-value.svg │ │ │ │ ├── field-variable.svg │ │ │ │ ├── function.svg │ │ │ │ ├── interface-kotlin.svg │ │ │ │ ├── interface.svg │ │ │ │ └── object.svg │ │ │ └── theme-toggle.svg │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── not-found-version.html │ │ │ ├── package-list │ │ │ ├── scripts │ │ │ ├── clipboard.js │ │ │ ├── main.js │ │ │ ├── navigation-loader.js │ │ │ ├── pages.json │ │ │ ├── platform-content-handler.js │ │ │ ├── prism.js │ │ │ ├── sourceset_dependencies.js │ │ │ └── symbol-parameters-wrapper_deferred.js │ │ │ ├── styles │ │ │ ├── jetbrains-mono.css │ │ │ ├── logo-styles.css │ │ │ ├── main.css │ │ │ ├── multimodule.css │ │ │ ├── prism.css │ │ │ └── style.css │ │ │ └── version.json │ │ └── settings.gradle.kts ├── maven │ ├── Module.md │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── HelloWorld.kt └── plugin │ └── hide-internal-api │ ├── LICENSE │ ├── README.md │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── example │ │ │ └── dokka │ │ │ └── plugin │ │ │ └── HideInternalApiPlugin.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.dokka.plugability.DokkaPlugin │ └── test │ └── kotlin │ └── org │ └── example │ └── dokka │ └── plugin │ └── HideInternalApiPluginTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── qodana.sarif.json ├── scripts ├── testDokka.sh └── testDokka.sh.md └── settings.gradle.kts /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/check-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/check-api.yml -------------------------------------------------------------------------------- /.github/workflows/examples-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/examples-build.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages-deploy-dev-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/gh-pages-deploy-dev-docs.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages-deploy-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/gh-pages-deploy-examples.yml -------------------------------------------------------------------------------- /.github/workflows/preview-cleanup-web-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/preview-cleanup-web-s3.yml -------------------------------------------------------------------------------- /.github/workflows/preview-publish-ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/preview-publish-ga.yml -------------------------------------------------------------------------------- /.github/workflows/preview-publish-web-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/preview-publish-web-s3.yml -------------------------------------------------------------------------------- /.github/workflows/qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/qodana.yml -------------------------------------------------------------------------------- /.github/workflows/tests-smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/tests-smoke.yml -------------------------------------------------------------------------------- /.github/workflows/tests-thorough.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.github/workflows/tests-thorough.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/copyright/Dokka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.idea/copyright/Dokka.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/README.md -------------------------------------------------------------------------------- /docs-developer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/README.md -------------------------------------------------------------------------------- /docs-developer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/build.gradle.kts -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/architecture/architecture_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/architecture/architecture_overview.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/architecture/data_model/documentable_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/architecture/data_model/documentable_model.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/architecture/data_model/extra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/architecture/data_model/extra.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/architecture/data_model/page_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/architecture/data_model/page_content.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/architecture/extension_points/base_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/architecture/extension_points/base_plugin.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/community/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/community/slack.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/introduction.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/plugin-development/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/plugin-development/introduction.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/plugin-development/sample-plugin-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/plugin-development/sample-plugin-tutorial.md -------------------------------------------------------------------------------- /docs-developer/docs/developer_guide/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/developer_guide/workflow.md -------------------------------------------------------------------------------- /docs-developer/docs/dokka_colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/dokka_colors.css -------------------------------------------------------------------------------- /docs-developer/docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/favicon.svg -------------------------------------------------------------------------------- /docs-developer/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/docs/index.md -------------------------------------------------------------------------------- /docs-developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/index.html -------------------------------------------------------------------------------- /docs-developer/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/mkdocs.yml -------------------------------------------------------------------------------- /docs-developer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs-developer/requirements.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cfg/buildprofiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/cfg/buildprofiles.xml -------------------------------------------------------------------------------- /docs/dokka.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/dokka.tree -------------------------------------------------------------------------------- /docs/images/dokka-devx-survey-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/images/dokka-devx-survey-banner.png -------------------------------------------------------------------------------- /docs/images/dokkaHtmlCollector-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/images/dokkaHtmlCollector-example.png -------------------------------------------------------------------------------- /docs/images/dokkaHtmlMultiModule-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/images/dokkaHtmlMultiModule-example.png -------------------------------------------------------------------------------- /docs/images/gradle-reload-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/images/gradle-reload-button.png -------------------------------------------------------------------------------- /docs/images/javadoc-format-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/images/javadoc-format-example.png -------------------------------------------------------------------------------- /docs/topics/dokka-get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/dokka-get-started.md -------------------------------------------------------------------------------- /docs/topics/dokka-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/dokka-introduction.md -------------------------------------------------------------------------------- /docs/topics/dokka-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/dokka-migration.md -------------------------------------------------------------------------------- /docs/topics/dokka-module-and-package-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/dokka-module-and-package-docs.md -------------------------------------------------------------------------------- /docs/topics/dokka-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/dokka-plugins.md -------------------------------------------------------------------------------- /docs/topics/formats/dokka-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/formats/dokka-html.md -------------------------------------------------------------------------------- /docs/topics/formats/dokka-javadoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/formats/dokka-javadoc.md -------------------------------------------------------------------------------- /docs/topics/formats/dokka-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/formats/dokka-markdown.md -------------------------------------------------------------------------------- /docs/topics/runners/dokka-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/runners/dokka-cli.md -------------------------------------------------------------------------------- /docs/topics/runners/dokka-gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/runners/dokka-gradle.md -------------------------------------------------------------------------------- /docs/topics/runners/dokka-maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/topics/runners/dokka-maven.md -------------------------------------------------------------------------------- /docs/v.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/v.list -------------------------------------------------------------------------------- /docs/writerside.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/docs/writerside.cfg -------------------------------------------------------------------------------- /dokka-integration-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/aws_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/aws_sync.sh -------------------------------------------------------------------------------- /dokka-integration-tests/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/cli/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/cli/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/cli/projects/it-cli/src/main/kotlin/RootPackageClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/cli/projects/it-cli/src/main/kotlin/RootPackageClass.kt -------------------------------------------------------------------------------- /dokka-integration-tests/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/coroutines/coroutines.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/coroutines/coroutines.diff -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/datetime/datetime.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/datetime/datetime.diff -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/io/io.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/io/io.diff -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-0/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-0/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-0/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-0/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-compose/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-compose/core/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/core/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-compose/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/material3/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android-compose/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android-compose/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android/expectedData/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android/expectedData/html/index.html -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic-groovy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic-groovy/build.gradle -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic-groovy/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic-groovy/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic-groovy/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic-groovy/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic/customResources/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic/customResources/logo-styles.css -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-basic/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-basic/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/moduleA/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/moduleA/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/moduleA/moduleB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/moduleA/moduleB/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/moduleA/moduleC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/moduleA/moduleC/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-collector-0/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-collector-0/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-configuration/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-configuration/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-configuration/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-configuration/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-configuration/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-js-ir-0/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-js-ir-0/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-js-ir-0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-js-ir-0/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-js-ir-0/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-js-ir-0/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-kotlin-multiplatform/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-kotlin-multiplatform/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-0/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-0/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-0/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-0/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-0/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-1/build.gradle -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-1/first/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-1/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-1/second/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-1/second/build.gradle -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-1/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-1/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-versioning-0/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multimodule-versioning-0/build.gradle -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-versioning-0/first/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multimodule-versioning-0/second/build.gradle: -------------------------------------------------------------------------------- 1 | dependencies { 2 | implementation project(":first") 3 | } 4 | -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multiplatform-0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multiplatform-0/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-multiplatform-0/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-multiplatform-0/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-wasm-js-wasi-basic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-wasm-js-wasi-basic/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/it-wasm-js-wasi-basic/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/it-wasm-js-wasi-basic/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/serialization/serialization.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/serialization/serialization.diff -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/template.settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/template.settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/README.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/build-logic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/build-logic/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/gradle.properties -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/jvm/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/jvm/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/jvm/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/jvm/description.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/kmp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/kmp/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/kmp/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/kmp/description.md -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/previousDocVersions/0.9/version.json: -------------------------------------------------------------------------------- 1 | {"version":"0.9"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/previousDocVersions/1.0/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.0"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/previousDocVersions/1.5/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.5"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/previousDocVersions/1.8/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.8"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/previousDocVersions/1.9/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.9"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/projects/ui-showcase/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/projects/ui-showcase/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/test/kotlin/AndroidComposeIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/src/test/kotlin/AndroidComposeIT.kt -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/test/kotlin/AndroidProjectIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/src/test/kotlin/AndroidProjectIT.kt -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/test/kotlin/KotlinMultiplatformIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/gradle/src/test/kotlin/KotlinMultiplatformIT.kt -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies='{":/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/composite-build-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies = '{":/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-dokka-plugin-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies='{":demo-library/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies='{":/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/javadoc-example/javadoc/tag-search-index.js: -------------------------------------------------------------------------------- 1 | var tagSearchIndex = [] -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies='{":/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- 1 | sourceset_dependencies='{":/main":[]}' -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/javadoc/tag-search-index.js: -------------------------------------------------------------------------------- 1 | var tagSearchIndex = [] -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/versioning-multimodule-example/html/older/0.9/version.json: -------------------------------------------------------------------------------- 1 | {"version":"0.9"} -------------------------------------------------------------------------------- /dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/versioning-multimodule-example/html/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.0"} -------------------------------------------------------------------------------- /dokka-integration-tests/maven/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/maven/build.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/maven/projects/biojava/biojava.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/maven/projects/biojava/biojava.diff -------------------------------------------------------------------------------- /dokka-integration-tests/maven/projects/it-maven/customResources/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/maven/projects/it-maven/customResources/logo-styles.css -------------------------------------------------------------------------------- /dokka-integration-tests/maven/projects/it-maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/maven/projects/it-maven/pom.xml -------------------------------------------------------------------------------- /dokka-integration-tests/maven/src/main/kotlin/settingsXml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/maven/src/main/kotlin/settingsXml.kt -------------------------------------------------------------------------------- /dokka-integration-tests/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-integration-tests/utilities/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-integration-tests/utilities/build.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/api/dokka-gradle-plugin.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/api/dokka-gradle-plugin.api -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/build.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/gradle.properties -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaArtifacts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaArtifacts.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaClassicPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaClassicPlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaProperty.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaSourceSetMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/DokkaSourceSetMapper.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/gradleConfigurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/gradleConfigurations.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/tasks/DokkaTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/tasks/DokkaTask.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicMain/kotlin/utils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicTest/kotlin/tasks/DokkaTaskTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicTest/kotlin/tasks/DokkaTaskTest.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/classicTest/kotlin/utils/AgpUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/classicTest/kotlin/utils/AgpUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaBasePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaBasePlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaExtension.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/DokkaPlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/AndroidAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/AndroidAdapter.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/JavaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/JavaAdapter.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/KotlinAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/adapters/KotlinAdapter.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/dependencies/DokkaAttribute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/dependencies/DokkaAttribute.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaFormatPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaFormatPlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaFormatTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaFormatTasks.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaHtmlPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaHtmlPlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaJavadocPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaJavadocPlugin.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaPublication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/formats/DokkaPublication.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/HasFormatName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/HasFormatName.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/LoggerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/LoggerAdapter.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/PluginIds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/PluginIds.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/collectionsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/collectionsUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/gradleTypealiases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/gradleTypealiases.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/gradleUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/gradleUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/logUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/logUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/pathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/pathUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/stringUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/stringUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/uriUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/uriUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/v2MigrationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/internal/v2MigrationUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/DokkaBaseTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/DokkaBaseTask.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/DokkaGenerateTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/DokkaGenerateTask.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/TaskNames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/main/kotlin/tasks/TaskNames.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/test/kotlin/DokkaPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/test/kotlin/DokkaPluginTest.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/test/kotlin/ModulePathTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/test/kotlin/ModulePathTests.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/LoggerAdapterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/LoggerAdapterTest.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/PathUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/PathUtilsTest.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/UriUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/test/kotlin/internal/UriUtilsTest.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/GradleProjectUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/GradleProjectUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/GradleTestKitUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/GradleTestKitUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/KotestProjectConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/KotestProjectConfig.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/fileTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/fileTree.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/files.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/files.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/gradleRunnerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/gradleRunnerUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/kotestConditions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/kotestConditions.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/kotestFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/kotestFiles.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/stringUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/stringUtils.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/text.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFixtures/kotlin/text.kt -------------------------------------------------------------------------------- /dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/TryK2MessagesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/TryK2MessagesTest.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/api/runner-cli.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/api/runner-cli.api -------------------------------------------------------------------------------- /dokka-runners/runner-cli/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/build.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/runner-cli/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/gradle.properties -------------------------------------------------------------------------------- /dokka-runners/runner-cli/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/CliArgumentTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/CliArgumentTypes.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/GlobalArguments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/GlobalArguments.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/LinkMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/LinkMapper.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/main/kotlin/org/jetbrains/dokka/main.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/test/kotlin/org/jetbrains/dokka/CliTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/test/kotlin/org/jetbrains/dokka/CliTest.kt -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/test/resources/my-file-no-sourceset-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/test/resources/my-file-no-sourceset-options.json -------------------------------------------------------------------------------- /dokka-runners/runner-cli/src/test/resources/my-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-cli/src/test/resources/my-file.json -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/api/runner-maven-plugin.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/api/runner-maven-plugin.api -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/build.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/gradle.properties -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/pom.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/pom.template.xml -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/settings.gradle.kts -------------------------------------------------------------------------------- /dokka-runners/runner-maven-plugin/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-runners/runner-maven-plugin/settings.xml -------------------------------------------------------------------------------- /dokka-subprojects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-java-psi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-java-psi/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-java-psi/api/analysis-java-psi.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-java-psi/api/analysis-java-psi.api -------------------------------------------------------------------------------- /dokka-subprojects/analysis-java-psi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-java-psi/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-api/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-api/api/analysis-kotlin-api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-api/api/analysis-kotlin-api.api -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-api/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-api/src/test/resources/jars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-api/src/test/resources/jars/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors-compiler/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors-compiler/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors-compiler/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors-ide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors-ide/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors-ide/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors-ide/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors/api/analysis-kotlin-descriptors.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-descriptors/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-descriptors/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-symbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-symbols/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-symbols/api/analysis-kotlin-symbols.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-symbols/api/analysis-kotlin-symbols.api -------------------------------------------------------------------------------- /dokka-subprojects/analysis-kotlin-symbols/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-kotlin-symbols/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/analysis-markdown-jb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-markdown-jb/README.md -------------------------------------------------------------------------------- /dokka-subprojects/analysis-markdown-jb/api/analysis-markdown-jb.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-markdown-jb/api/analysis-markdown-jb.api -------------------------------------------------------------------------------- /dokka-subprojects/analysis-markdown-jb/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/analysis-markdown-jb/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/core-content-matcher-test-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core-content-matcher-test-utils/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/core-test-api/api/dokka-test-api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core-test-api/api/dokka-test-api.api -------------------------------------------------------------------------------- /dokka-subprojects/core-test-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core-test-api/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/core/api/dokka-core.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/api/dokka-core.api -------------------------------------------------------------------------------- /dokka-subprojects/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/CoreExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/CoreExtensions.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DelicateDokkaApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DelicateDokkaApi.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrapImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrapImpl.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaException.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaGenerator.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/DokkaVersion.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/InternalDokkaApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/InternalDokkaApi.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/configuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/configuration.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/links/DRI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/links/DRI.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/Documentable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/Documentable.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/JvmField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/JvmField.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/WithChildren.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/WithChildren.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/ancestryNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/ancestryNode.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/classKinds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/classKinds.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/doc/DocTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/doc/DocTag.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/jvmName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/model/jvmName.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/ContentNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/ContentNodes.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/PageNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/PageNodes.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/Pages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/Pages.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/pages/utils.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/renderers/Renderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/renderers/Renderer.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/Html.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/Html.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/Uri.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/Uri.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/cast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/cast.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/json.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/main/kotlin/org/jetbrains/dokka/utilities/json.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | -------------------------------------------------------------------------------- /dokka-subprojects/core/src/test/kotlin/model/CompositeSourceSetIDTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/test/kotlin/model/CompositeSourceSetIDTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/test/kotlin/model/DisplaySourceSetTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/test/kotlin/model/DisplaySourceSetTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/test/kotlin/model/DocumentableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/test/kotlin/model/DocumentableTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/test/kotlin/utilities/DokkaConfigurationJsonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/test/kotlin/utilities/DokkaConfigurationJsonTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/core/src/test/kotlin/utilities/JsonKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/core/src/test/kotlin/utilities/JsonKtTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-all-modules-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-all-modules-page/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-all-modules-page/api/plugin-all-modules-page.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-all-modules-page/api/plugin-all-modules-page.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-all-modules-page/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-all-modules-page/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-android-documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-android-documentation/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-android-documentation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-android-documentation/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/.eslintrc.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | 20.16.0 2 | -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/.prettierrc.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/create-component.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/create-component.mjs -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/lint-staged.config.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/package-lock.json -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/package.json -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/postcss.config.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/app/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/app/index.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/app/index.tsx -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/assets/searchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/assets/searchIcon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/root.tsx -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/search/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/search/search.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/search/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/search/search.tsx -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/search/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/search/types.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/utils/arrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/utils/arrayUtils.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/utils/hotkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/utils/hotkey.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/utils/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/utils/os.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/components/utils/requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/components/utils/requests.tsx -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/scss/index.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/types/@jetbrains/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/types/@jetbrains/index.d.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/types/global.d.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/arrow-down.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/burger.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/check.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/checkbox-off.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/checkbox-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/checkbox-on.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/copy-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/cross.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/filter.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/homepage.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/placeholder.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/success-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/success-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/theme-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_assets/theme-toggle.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/breakpoints.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/colors.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/index.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/sizes.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/transitions.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/_tokens/typography.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/breadcrumbs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/breadcrumbs/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/breadcrumbs/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/breadcrumbs/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/button.stories.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/button.stories.ftl -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/button/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/checkbox/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/checkbox/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/checkbox/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/code-block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/code-block/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/code-block/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/code-block/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/copy-tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/copy-tooltip/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/copy-tooltip/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/copy-tooltip/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/focus-trap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/focus-trap.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/dropdown/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/filter-section/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/filter-section/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/footer/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/footer/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/footer/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/global.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/helpers.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/icon/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/icon/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/icon/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/inline-code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/inline-code/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/inline-code/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/inline-code/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/layout/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/layout/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/layout/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-version/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-version/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/link/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/link/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/link/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/platform-tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/platform-tag/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/platform-tag/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/platform-tag/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/table/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/table/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/table/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/tabs/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/tabs/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/tabs/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/toc-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/toc-tree/index.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/toc-tree/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/toc-tree/styles.scss -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/src/main/ui-kit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/src/main/ui-kit/utils.ts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/stylelint.config.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/tsconfig.json -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/webpack.config-ui-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/webpack.config-ui-kit.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-frontend/webpack.config.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-test-utils/api/plugin-base-test-utils.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-test-utils/api/plugin-base-test-utils.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base-test-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base-test-utils/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/api/plugin-base.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/api/plugin-base.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/format/gfm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/format/gfm.properties -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/format/html.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/format/html.properties -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/format/jekyll.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/format/jekyll.properties -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/abstract-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/abstract-class.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/annotation.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/arrow-down.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/burger.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/check.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/checkbox-off.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/checkbox-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/checkbox-on.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/class-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/class-kotlin.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/class.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/copy-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/cross.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/enum-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/enum-kotlin.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/enum.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/field-value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/field-value.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/field-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/field-variable.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/filter.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/function.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/go-to-top-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/go-to-top-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/homepage.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/interface.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/logo-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/object.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/placeholder.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/success-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/success-icon.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/images/theme-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/images/theme-toggle.svg -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/scripts/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/scripts/prism.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/styles/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/styles/logo-styles.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/styles/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/styles/prism.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/styles/style.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/templates/base.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/templates/base.ftl -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.min.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/main/resources/dokka/ui-kit/ui-kit.min.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/EnumTemplatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/EnumTemplatesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/basic/DRITest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/basic/DRITest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/basic/DokkaBasicTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/basic/DokkaBasicTests.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/basic/FailOnWarningTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/basic/FailOnWarningTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/basic/LoggerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/basic/LoggerTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/content/AllTypesPageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/content/AllTypesPageTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/content/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/content/ExtensionsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/content/HighlightingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/content/HighlightingTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/content/ModulePageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/content/ModulePageTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/enums/JavaEnumsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/enums/JavaEnumsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/enums/KotlinEnumsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/enums/KotlinEnumsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/expect/AbstractExpectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/expect/AbstractExpectTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectGenerator.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/expect/ExpectUtils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/expectActuals/ExpectActualsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/expectActuals/ExpectActualsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/filter/DeprecationFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/filter/DeprecationFilterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/filter/EmptyPackagesFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/filter/EmptyPackagesFilterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/filter/JavaFileFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/filter/JavaFileFilterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/filter/JavaVisibilityFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/filter/JavaVisibilityFilterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/filter/VisibilityFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/filter/VisibilityFilterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/issues/IssuesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/issues/IssuesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/linking/EnumValuesLinkingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/linking/EnumValuesLinkingTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/markdown/KDocTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/markdown/KDocTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/markdown/LinkTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/markdown/LinkTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/markdown/ParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/markdown/ParserTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/ClassesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/ClassesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/CommentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/CommentTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/ConstructorsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/ConstructorsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/ExtensionsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/FunctionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/FunctionsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/InheritorsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/InheritorsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/JavaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/JavaTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/NestedTypealiasesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/NestedTypealiasesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/ObjectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/ObjectTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/PackagesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/PackagesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/PropertyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/PropertyTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/model/TypesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/model/TypesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/packageList/PackageListTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/packageList/PackageListTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/pageMerger/PageNodeMergerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/pageMerger/PageNodeMergerTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/parsers/JavadocParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/parsers/JavadocParserTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/BasicTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/BasicTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/BreadcrumbsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/BreadcrumbsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CodeBlocksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CodeBlocksTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CoverPageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CoverPageTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CustomFooterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/CustomFooterTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/DivergentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/DivergentTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/HeaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/HeaderTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/ListStylesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/ListStylesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/NavigationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/NavigationTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/TextStylesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/renderers/html/TextStylesTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/resourceLinks/ResourceLinksTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/resourceLinks/ResourceLinksTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/signatures/RawHtmlRenderingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/signatures/RawHtmlRenderingTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/signatures/SignatureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/signatures/SignatureTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/superFields/PsiSuperFieldsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/superFields/PsiSuperFieldsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/transformers/DivisionSwitchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/transformers/DivisionSwitchTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/transformers/isExceptionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/transformers/isExceptionTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/translators/Bug1341.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/translators/Bug1341.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/translators/JavadocParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/translators/JavadocParserTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/translators/KMPTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/translators/KMPTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/translators/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/translators/utils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/HtmlUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/HtmlUtils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/ModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/ModelUtils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/TagsAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/TagsAnnotations.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/TestUtils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/contentUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/contentUtils.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/kotlin/utils/systemProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/kotlin/utils/systemProperties.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/content/samples/samples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/content/samples/samples.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/jars/jvmAndroidLib-jvm-copy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/jars/jvmAndroidLib-jvm-copy.jar -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/jars/jvmAndroidLib-jvm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/jars/jvmAndroidLib-jvm.jar -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include1.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include11.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-base/src/test/resources/linkable/includes/include2.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/api/plugin-gfm.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/api/plugin-gfm.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/CodeWrappingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/CodeWrappingTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/DivergentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/DivergentTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/GroupWrappingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/GroupWrappingTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/SimpleElementsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-gfm/src/test/kotlin/renderers/gfm/SimpleElementsTest.kt -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/api/plugin-javadoc.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/api/plugin-javadoc.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/static_res/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/static_res/resources/x.png -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/static_res/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/static_res/search.js -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/static_res/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/static_res/stylesheet.css -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/class.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/class.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/components/base.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/base.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/components/head.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/head.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/deprecated.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/deprecated.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/indexPage.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/indexPage.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/listPage.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/listPage.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/tabPage.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/tabPage.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-javadoc/src/main/resources/views/treePage.korte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-javadoc/src/main/resources/views/treePage.korte -------------------------------------------------------------------------------- /dokka-subprojects/plugin-jekyll-template-processing/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-jekyll-template-processing/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-jekyll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-jekyll/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-jekyll/api/plugin-jekyll.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-jekyll/api/plugin-jekyll.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-jekyll/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-jekyll/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-kotlin-as-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-kotlin-as-java/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-kotlin-as-java/api/plugin-kotlin-as-java.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-kotlin-as-java/api/plugin-kotlin-as-java.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-kotlin-as-java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-kotlin-as-java/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-mathjax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-mathjax/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-mathjax/api/plugin-mathjax.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-mathjax/api/plugin-mathjax.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-mathjax/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-mathjax/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-templating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-templating/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-templating/api/plugin-templating.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-templating/api/plugin-templating.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-templating/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-templating/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-versioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-versioning/README.md -------------------------------------------------------------------------------- /dokka-subprojects/plugin-versioning/api/plugin-versioning.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-versioning/api/plugin-versioning.api -------------------------------------------------------------------------------- /dokka-subprojects/plugin-versioning/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-versioning/build.gradle.kts -------------------------------------------------------------------------------- /dokka-subprojects/plugin-versioning/versioning-plugin-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/dokka-subprojects/plugin-versioning/versioning-plugin-example.png -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/basic-gradle-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/basic-gradle-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/build-logic/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/build-logic/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/docs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/docs/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/docs/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/docs/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/module-kakapo/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/module-kakapo/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/module-kakapo/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/module-kakapo/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/module-kea/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/module-kea/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/module-kea/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/module-kea/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/module-kea/src/main/kotlin/Kea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/module-kea/src/main/kotlin/Kea.kt -------------------------------------------------------------------------------- /examples/gradle-v2/composite-build-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/composite-build-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-dokka-plugin-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-dokka-plugin-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/custom-dokka-plugin-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-dokka-plugin-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-dokka-plugin-example/demo-library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-dokka-plugin-example/demo-library/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-dokka-plugin-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-dokka-plugin-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/custom-dokka-plugin-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-dokka-plugin-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/ktor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/ktor-logo.png -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/logo-styles.css -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/custom-styling-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/custom-styling-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/buildSrc/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/buildSrc/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-application/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-application/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-application/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-application/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-features/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-features/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-features/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-features/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-features/src/mongodbSupport/java/demo/mongodb/MyMongoDbUtil.java: -------------------------------------------------------------------------------- 1 | package demo.mongodb; 2 | 3 | public class MyMongoDbUtil { 4 | } 5 | -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-library/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-library/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/my-java-library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/my-java-library/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/java-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/java-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/Module.md -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/javadoc-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/javadoc-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-as-java-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-as-java-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-multiplatform-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-multiplatform-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-multiplatform-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-multiplatform-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-multiplatform-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-multiplatform-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/kotlin-multiplatform-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/kotlin-multiplatform-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/library-publishing-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/library-publishing-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/library-publishing-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/library-publishing-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/library-publishing-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/library-publishing-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/library-publishing-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/library-publishing-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/library-publishing-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/library-publishing-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | base 3 | } 4 | -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/buildSrc/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/buildSrc/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/childProjectA/ModuleA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/childProjectA/ModuleA.md -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/childProjectA/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/childProjectA/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/childProjectB/ModuleB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/childProjectB/ModuleB.md -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/childProjectB/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/childProjectB/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/docs/DocsModule.md: -------------------------------------------------------------------------------- 1 | Welcome to the docs for my multimodule project! 2 | -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/docs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/docs/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/multimodule-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/multimodule-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/README.md -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | base 3 | } 4 | -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/buildSrc/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/buildSrc/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/childProjectA/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/childProjectA/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/childProjectB/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/childProjectB/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/demo.png -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/docs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/docs/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/docs/previousDocVersions/0.9/version.json: -------------------------------------------------------------------------------- 1 | {"version":"0.9"} -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle-v2/versioning-multimodule-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle-v2/versioning-multimodule-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/ktor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/ktor-logo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/logo-styles.css -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-customFormat-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-customFormat-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/Module.md -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-gradle-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-gradle-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-kotlinAsJava-example/src/main/kotlin/demo/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-kotlinAsJava-example/src/main/kotlin/demo/HelloWorld.kt -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-library-publishing-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-library-publishing-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/parentProject/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/parentProject/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/parentProject/childProjectA/ModuleA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/ModuleA.md -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/parentProject/childProjectB/ModuleB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/ModuleB.md -------------------------------------------------------------------------------- /examples/gradle/dokka-multimodule-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multimodule-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/gradlew -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/gradlew.bat -------------------------------------------------------------------------------- /examples/gradle/dokka-multiplatform-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-multiplatform-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-versioning-multimodule-example/README.md -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-versioning-multimodule-example/demo.png -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-versioning-multimodule-example/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/previousDocVersions/0.9/version.json: -------------------------------------------------------------------------------- 1 | {"version":"0.9"} -------------------------------------------------------------------------------- /examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts -------------------------------------------------------------------------------- /examples/maven/Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/maven/Module.md -------------------------------------------------------------------------------- /examples/maven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/maven/README.md -------------------------------------------------------------------------------- /examples/maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/maven/pom.xml -------------------------------------------------------------------------------- /examples/maven/src/main/kotlin/HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/maven/src/main/kotlin/HelloWorld.kt -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/LICENSE -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/README.md -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/build.gradle.kts -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/gradle.properties -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/gradlew -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/gradlew.bat -------------------------------------------------------------------------------- /examples/plugin/hide-internal-api/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/examples/plugin/hide-internal-api/settings.gradle.kts -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/gradlew.bat -------------------------------------------------------------------------------- /qodana.sarif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/qodana.sarif.json -------------------------------------------------------------------------------- /scripts/testDokka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/scripts/testDokka.sh -------------------------------------------------------------------------------- /scripts/testDokka.sh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/scripts/testDokka.sh.md -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/dokka/HEAD/settings.gradle.kts --------------------------------------------------------------------------------