├── .dockerignore ├── .drone.yml ├── .git-blame-ignore-revs ├── .gitignore ├── .prettierrc ├── .scss-lint.yml ├── .vscode ├── extensions.json └── settings.json ├── Dockerfile ├── README.md ├── Taxonomy.md ├── bin ├── add-menu.js ├── build-index.js ├── build.sh ├── compress.js ├── download-images.js ├── drone ├── generate-release-changes.js └── generate-unified-docs.js ├── content ├── _content.gotmpl ├── _index.md ├── customising │ ├── advanced │ │ ├── _index.md │ │ ├── editor-configuration │ │ │ ├── _index.md │ │ │ ├── base-filter-legacy.md │ │ │ ├── base-filter.md │ │ │ ├── default-dashboard-filter.md │ │ │ ├── display-filter.md │ │ │ ├── editing-features.md │ │ │ ├── image-cropping.md │ │ │ ├── image-source-policy.md │ │ │ ├── images │ │ │ │ ├── iframely-settings-screen.png │ │ │ │ ├── inline_links.png │ │ │ │ ├── insert-panel-advanced-component-groups.png │ │ │ │ ├── properties-panel-transform-component.png │ │ │ │ ├── search-filters.png │ │ │ │ └── text-popover.png │ │ │ ├── login.md │ │ │ ├── menu-and-dashboards.md │ │ │ └── text-editing.md │ │ ├── editor │ │ │ ├── _index.md │ │ │ ├── browser-api.md │ │ │ ├── document-drag-drop.md │ │ │ ├── editor-api.md │ │ │ └── vue-component-registry.md │ │ ├── import-api.md │ │ ├── logging.md │ │ ├── search-customisation.md │ │ └── server-events.md │ ├── angular-migration │ │ ├── _index.md │ │ ├── dashboard-card-and-cells.md │ │ ├── dashboard-display-filters.md │ │ ├── filter-for-dashboards.md │ │ ├── includes.md │ │ └── metadata-plugins.md │ ├── assistants │ │ ├── _index.md │ │ ├── assistant-custom-error-message.png │ │ ├── assistant-focused-component-button.png │ │ ├── assistant-metadata-button.png │ │ ├── assistant-proposal.png │ │ └── k-menu-assistants.png │ ├── server-configuration │ │ ├── _index.md │ │ ├── images │ │ │ └── custom_preview.png │ │ ├── single-sign-on.md │ │ └── storage │ │ │ ├── _index.md │ │ │ ├── azure-blob-storage │ │ │ ├── 0-goto-storageaccount.png │ │ │ ├── 1-new-storageaccount.png │ │ │ ├── 2-fill-storageaccount-config.png │ │ │ ├── 3-fill-storageaccount-config.png │ │ │ ├── 4-new-container.png │ │ │ ├── 5-SAS-storage-account.png │ │ │ ├── 6-copy-SAS-Token.png │ │ │ └── index.md │ │ │ └── google-cloud-storage.md │ └── server │ │ ├── _index.md │ │ ├── document-lifecycle │ │ ├── _index.md │ │ ├── assets │ │ │ ├── document-creation-lifecycle.drawio │ │ │ ├── document-creation-lifecycle.png │ │ │ ├── document-publication-lifecycle.drawio │ │ │ └── document-publication-lifecycle.png │ │ ├── document-creation.md │ │ └── document-publication.md │ │ ├── document-version.md │ │ ├── images │ │ ├── print-layout.png │ │ ├── print-metadata-department.png │ │ ├── print-preview-inexisting-component.png │ │ ├── print-preview.png │ │ ├── print-template.png │ │ └── roles-configurations.png │ │ ├── metadata-plugins.md │ │ ├── roles.md │ │ ├── server-api │ │ ├── _index.md │ │ ├── dashboard-source-api.md │ │ ├── data-source-api.md │ │ ├── images │ │ │ └── datasource-dropdown.png │ │ ├── project-seeding-api.md │ │ └── public-api.md │ │ ├── server-cli.md │ │ ├── server-hooks.md │ │ └── server-initalization.md ├── guides │ ├── authentication │ │ ├── _index.md │ │ ├── access-hooks.md │ │ ├── access-rights │ │ │ ├── access-rights.png │ │ │ └── index.md │ │ ├── attribute-based-access-control.md │ │ ├── azure-ad-login │ │ │ ├── 0-goto-AAD.png │ │ │ ├── 1-create-registration.png │ │ │ ├── 2-app-callback-url.png │ │ │ ├── 3-enable-access-tokens.png │ │ │ ├── 4-add-client-secret.png │ │ │ ├── 5-copy-client-secret.png │ │ │ ├── 6-app-roles-app-registration.png │ │ │ ├── 7-open-config-organization.png │ │ │ ├── 8-users-and-groups.png │ │ │ └── index.md │ │ └── user-management.md │ ├── deprecation-phase.md │ ├── documents │ │ ├── _index.md │ │ ├── document-design │ │ │ ├── _index.md │ │ │ ├── add-design-component.md │ │ │ ├── bullet-list-example.md │ │ │ ├── data-migrations │ │ │ │ ├── data-migration-run-complete.png │ │ │ │ ├── data-migration-run-help.png │ │ │ │ └── index.md │ │ │ ├── document-design-intro │ │ │ │ ├── add-component-patch.patch │ │ │ │ ├── add-default-content.patch │ │ │ │ ├── index.md │ │ │ │ ├── publish-config.png │ │ │ │ └── rearrange-component.png │ │ │ ├── embedded-design │ │ │ │ ├── bump-to-embedded-design.png │ │ │ │ └── index.md │ │ │ ├── publish-design.md │ │ │ └── responsive-bg-images.md │ │ ├── document-lifecycle │ │ │ ├── _index.md │ │ │ └── restore-a-document │ │ │ │ └── index.md │ │ ├── includes │ │ │ ├── _index.md │ │ │ ├── document-teasers.md │ │ │ ├── editable-document-teasers.md │ │ │ ├── instagram.png │ │ │ ├── list-teasers.md │ │ │ ├── my-teaser.png │ │ │ ├── oembed │ │ │ │ ├── advanced-provider.png │ │ │ │ ├── index.md │ │ │ │ └── simple-provider.png │ │ │ ├── teaser-include.png │ │ │ ├── toolbar-teaser.png │ │ │ ├── twitter-embed │ │ │ │ ├── index.md │ │ │ │ └── twitter-include.png │ │ │ └── youtube-embed │ │ │ │ ├── index.md │ │ │ │ ├── youtube-include-sidebar.png │ │ │ │ └── youtube_include.png │ │ └── metadata │ │ │ ├── _index.md │ │ │ └── metadata-examples │ │ │ ├── index.md │ │ │ └── slug-metadata-form.png │ ├── editor │ │ ├── _index.md │ │ ├── assistants │ │ │ ├── index.md │ │ │ └── k-menu-assistants.png │ │ ├── author-management │ │ │ ├── author-content-type.png │ │ │ ├── index.md │ │ │ ├── link-author-in-article.png │ │ │ └── map-author.png │ │ ├── custom-dashboard-filters │ │ │ ├── filter-dropdown.png │ │ │ ├── index.md │ │ │ └── multi-filter-dropdown.png │ │ ├── custom-table-dashboard-cell.png │ │ ├── custom-table-dashboard-cells.md │ │ ├── declarative-document-copy │ │ │ ├── copy-article.png │ │ │ ├── copy-basics.png │ │ │ ├── copy-design-to-design.png │ │ │ ├── copy-layout-l1-to-layout-l2-modified-components.png │ │ │ ├── copy-layout-l1-to-layout-l2-unknown-copy-false.png │ │ │ └── index.md │ │ ├── document-copy-flows.md │ │ ├── document-creation-flow.md │ │ ├── document-previews │ │ │ └── index.md │ │ ├── document-print-flows.md │ │ ├── document-soft-lock │ │ │ ├── document-soft-lock.png │ │ │ └── index.md │ │ ├── document-transform-flows.md │ │ ├── filter-migration.md │ │ ├── icons.md │ │ ├── image-gallery.md │ │ ├── images │ │ │ ├── custom-proofreading-task.png │ │ │ ├── custom-review-task.png │ │ │ ├── image-gallery-content-type.png │ │ │ ├── image-gallery-teaser-placeholder.png │ │ │ ├── image-gallery-teaser.png │ │ │ └── tasks.png │ │ ├── liTableDashboardCellStatistics.png │ │ ├── menus │ │ │ ├── index.md │ │ │ ├── menu-creation.png │ │ │ └── menu-metadata.png │ │ ├── metadata-translations │ │ │ ├── index.md │ │ │ └── metadata-translations-form.png │ │ ├── multi-language-content │ │ │ ├── dashboard.png │ │ │ ├── index.md │ │ │ └── metadata.png │ │ ├── multi-language-ui │ │ │ ├── index.md │ │ │ ├── label-german.png │ │ │ └── language-switcher.png │ │ ├── notifications │ │ │ ├── comments-mentioning.png │ │ │ ├── index.md │ │ │ └── notification-config.png │ │ ├── project-document-copy │ │ │ ├── document-drag-and-drop.gif │ │ │ └── index.md │ │ ├── proofreading-dashboard.md │ │ ├── proofreading-task.md │ │ ├── publish-control │ │ │ ├── _index.md │ │ │ ├── delivery │ │ │ │ ├── delivery.png │ │ │ │ └── index.md │ │ │ ├── embargo │ │ │ │ ├── embargo-disabled.png │ │ │ │ ├── embargo-indefinite.png │ │ │ │ ├── embargo-publish-later.png │ │ │ │ ├── embargo-until.png │ │ │ │ └── index.md │ │ │ ├── export-mode.md │ │ │ ├── export-mode.png │ │ │ ├── publish-control-basics.md │ │ │ ├── publish-control-migration.md │ │ │ ├── scheduled-publishing │ │ │ │ ├── index.md │ │ │ │ ├── publish-later-now.png │ │ │ │ ├── publish-later.png │ │ │ │ └── un-publish-later.png │ │ │ ├── significant-update │ │ │ │ ├── index.md │ │ │ │ └── significant-update.png │ │ │ └── visible-publication-date │ │ │ │ ├── index.md │ │ │ │ ├── publication-date-edit.png │ │ │ │ └── publication-date-view.png │ │ ├── push-notifications │ │ │ ├── article.png │ │ │ ├── dashboard.png │ │ │ └── index.md │ │ ├── review-task.md │ │ ├── table-dashboard-cells.md │ │ └── teaser-preview │ │ │ ├── index.md │ │ │ └── teaser-preview.gif │ ├── integrations │ │ ├── _index.md │ │ ├── cross-project-content-sharing │ │ │ ├── index.md │ │ │ ├── li-document-references-card.png │ │ │ └── useDashboard-table-dashboard.png │ │ ├── desknet-global-integration-migration.md │ │ ├── desknet-legacy │ │ │ ├── desknet-config.png │ │ │ └── index.md │ │ ├── desknet-schedule │ │ │ ├── desknet-schedule-metadata-field.png │ │ │ ├── desknet-schedule-side-panel.png │ │ │ └── index.md │ │ ├── desknet-to-kordiam-migration.md │ │ ├── desknet.md │ │ ├── dpa-import.md │ │ ├── google-vision.md │ │ ├── handsontable │ │ │ ├── Handsontable-config.png │ │ │ ├── Rendered-Handsontable.png │ │ │ └── index.md │ │ ├── hugo-dnd │ │ │ └── index.md │ │ ├── kordiam-global-integration-migration.md │ │ ├── kordiam-legacy │ │ │ ├── index.md │ │ │ └── kordiam-config.png │ │ ├── kordiam-schedule │ │ │ ├── index.md │ │ │ ├── kordiam-schedule-metadata-field.png │ │ │ └── kordiam-schedule-side-panel.png │ │ ├── kordiam.md │ │ ├── li2xliff │ │ │ └── index.md │ │ ├── news-agencies-flow.png │ │ ├── news-agencies-notifications-settings.png │ │ ├── news-agencies-notifications.png │ │ ├── news-agencies-screen.png │ │ ├── news-agencies.md │ │ ├── print │ │ │ ├── index.md │ │ │ ├── print-layout.png │ │ │ ├── print-metadata-department.png │ │ │ ├── print-preview-inexisting-component.png │ │ │ ├── print-preview.png │ │ │ └── print-template.png │ │ ├── retresco.md │ │ └── woodwing-assets.md │ ├── media-library │ │ ├── 2025-behavior │ │ │ ├── image-editor-button.png │ │ │ ├── image-editor.png │ │ │ └── index.md │ │ ├── _index.md │ │ ├── image-services.md │ │ ├── media-library-setup │ │ │ ├── editing-toolbar.png │ │ │ ├── fp_crop_default.png │ │ │ ├── fp_select_center.png │ │ │ ├── fp_select_chapel.png │ │ │ ├── fp_select_mountain.png │ │ │ ├── index.md │ │ │ ├── poster-image-frame-selection.png │ │ │ ├── poster-image.png │ │ │ ├── transcoding-state-done.png │ │ │ └── transcoding-state-zero.png │ │ ├── media-sources │ │ │ ├── images │ │ │ │ └── media-sources.png │ │ │ └── index.md │ │ ├── revoke-media.md │ │ └── video-includes │ │ │ ├── index.md │ │ │ ├── video-include-placeholder.png │ │ │ └── video-include-player.png │ ├── organisation │ │ ├── _index.md │ │ ├── categories-and-routing.md │ │ ├── routing-system.md │ │ └── sitemaps-and-feeds.md │ ├── search │ │ ├── _index.md │ │ ├── custom-index.md │ │ ├── multi-cluster-indexing.md │ │ ├── publication-index-legacy.md │ │ └── publication-index.md │ └── setup │ │ ├── _index.md │ │ ├── change-http-port.md │ │ ├── editor-customization.md │ │ ├── import-legacy-system-documents.md │ │ ├── link-local-dependencies.md │ │ ├── project-secrets.md │ │ ├── server-customization.md │ │ └── setup-windows.md ├── illu-guides.png ├── illu-learn.svg ├── illu-operations.png ├── illu-referrence.png ├── learn │ ├── _index.md │ └── video-tour.md ├── operations │ ├── architecture.md │ ├── docker.md │ ├── external-services.md │ ├── hardware-requirements.md │ ├── high-availability-setup.md │ ├── images │ │ ├── architecture-delivery.png │ │ ├── architecture-editing.png │ │ ├── architecture-external-services.png │ │ ├── architecture-proxy.png │ │ ├── architecture-stacks-apps.png │ │ ├── grafana-dashboard-panel-loki.png │ │ ├── grafana-dashboard-panel-prometheus.png │ │ └── grafana-logs-and-traces.png │ ├── maintenance │ │ ├── how-to-do-a-load-test.md │ │ └── how-to-varnish.md │ ├── npm-packages.md │ ├── npm │ │ ├── access-private-npm-modules.md │ │ ├── generating-npm-tokens.md │ │ ├── hotfix-legacy-release.md │ │ └── publish-packages.md │ ├── proxy.md │ ├── releases │ │ ├── _index.md │ │ ├── _release-template.md │ │ ├── release-2021-03.md │ │ ├── release-2021-06.md │ │ ├── release-2021-09.md │ │ ├── release-2021-11.md │ │ ├── release-2022-03.md │ │ ├── release-2022-05.md │ │ ├── release-2022-07.md │ │ ├── release-2022-09.md │ │ ├── release-2022-11.md │ │ ├── release-2023-01.md │ │ ├── release-2023-03.md │ │ ├── release-2023-05.md │ │ ├── release-2023-07.md │ │ ├── release-2023-09.md │ │ ├── release-2023-11.md │ │ ├── release-2024-01.md │ │ ├── release-2024-03.md │ │ ├── release-2024-05.md │ │ ├── release-2024-07.md │ │ ├── release-2024-09-document-info-panel.png │ │ ├── release-2024-09-wide-side-panels.png │ │ ├── release-2024-09.md │ │ ├── release-2024-11-inbox-permission.png │ │ ├── release-2024-11.md │ │ ├── release-2025-01-brands-condition.png │ │ ├── release-2025-01-timeline-mode.png │ │ ├── release-2025-01-user-needs.png │ │ ├── release-2025-01-visibility-mode.png │ │ ├── release-2025-01.md │ │ ├── release-2025-03-smart-quotes.png │ │ ├── release-2025-03.md │ │ ├── release-2025-05-image-editor-button.png │ │ ├── release-2025-05-image-editor.png │ │ ├── release-2025-05-remove-metadata-translations.png │ │ ├── release-2025-05.md │ │ ├── release-2025-07-news-agencies-flow.png │ │ ├── release-2025-07-news-agencies.png │ │ ├── release-2025-07.md │ │ ├── release-2025-09-media-center-access-control.png │ │ ├── release-2025-09-media-handle-card.png │ │ ├── release-2025-09-media-handle-metadata.png │ │ ├── release-2025-09-media-library-card-with-metadata.png │ │ ├── release-2025-09-media-library-card-without-metadata.png │ │ ├── release-2025-09-news-agencies-notification-settings.png │ │ ├── release-2025-09-news-agencies-notifications-collapsed.png │ │ ├── release-2025-09-news-agencies-notifications-uncollapsed.png │ │ ├── release-2025-09.md │ │ ├── release-2025-11-li-target-length-characters.png │ │ ├── release-2025-11-li-target-length-lines.png │ │ ├── release-2025-11-li-target-length-steps.png │ │ ├── release-2025-11-media-library-dashboard-batch-actions.png │ │ ├── release-2025-11-media-library-details-panel.png │ │ ├── release-2025-11-news-agency-metadata.png │ │ ├── release-2025-11-news-agency-select-all.png │ │ ├── release-2025-11.md │ │ ├── release-2026-01-export-mode.png │ │ └── release-2026-01.md │ ├── self-hosting.md │ └── telemetry.md └── reference │ ├── _index.md │ ├── cli │ ├── _index.md │ ├── cli-dotfile.md │ └── managing-project-configs.md │ ├── document │ ├── _index.md │ ├── content │ │ ├── _index.md │ │ ├── component-model.md │ │ ├── component-tree.md │ │ ├── directives-models.md │ │ └── livingdocs-model.md │ ├── document-design │ │ ├── _index.md │ │ ├── component-property.png │ │ ├── directives │ │ │ ├── _index.md │ │ │ ├── anchor-link-dialog.png │ │ │ ├── char-limit.png │ │ │ ├── container.md │ │ │ ├── editable.md │ │ │ ├── html.md │ │ │ ├── image-crop.png │ │ │ ├── image.md │ │ │ ├── include.md │ │ │ ├── link.md │ │ │ ├── style.md │ │ │ ├── toggle.md │ │ │ └── video.md │ │ └── legacy-design │ │ │ ├── design-config-v1-to-v2.md │ │ │ └── design-config-v1.md │ ├── includes │ │ ├── _index.md │ │ ├── editor-customization.md │ │ ├── images │ │ │ ├── multiselect.png │ │ │ └── time-diagram-doc-include.jpg │ │ ├── introduction.md │ │ ├── server-customization.md │ │ └── service-multiselect.md │ ├── metadata │ │ ├── _index.md │ │ ├── images │ │ │ ├── li-buy-in-closed.png │ │ │ ├── li-buy-in-dashboard.png │ │ │ ├── li-buy-in-initial.png │ │ │ ├── li-datetime-validity-ui.png │ │ │ ├── li-estimated-time-of-completion-buttons.png │ │ │ ├── li-estimated-time-of-completion-date-range.png │ │ │ ├── li-estimated-time-of-completion-single-date.png │ │ │ ├── li-exposure-boost-algorithm-switch.png │ │ │ ├── li-exposure-boost-metadata-form.png │ │ │ ├── li-exposure-boost-table-dashboard.png │ │ │ ├── li-issue-management-overview.png │ │ │ ├── li-issue-management-page-view.png │ │ │ ├── li-issue-management-remove.png │ │ │ ├── li-issue-management-view-articles.png │ │ │ ├── li-media-handle-card.png │ │ │ ├── li-media-handle-metadata.png │ │ │ ├── li-push-messages-dashboard.png │ │ │ ├── li-push-messages-dialog.png │ │ │ ├── li-target-length-characters.png │ │ │ ├── li-target-length-indicator.png │ │ │ ├── li-target-length-lines.png │ │ │ ├── li-target-length-steps.png │ │ │ ├── li-team-dashboard.png │ │ │ ├── li-team-meta.png │ │ │ ├── li-teaser-container-child-settings.png │ │ │ ├── li-teaser-container-settings.png │ │ │ ├── li-teaser-default-ui.png │ │ │ ├── li-teaser-overview.jpg │ │ │ ├── li-teaser-side-table.png │ │ │ ├── li-tree-multilang.png │ │ │ ├── li-user-needs-creationd-flow.png │ │ │ ├── li-user-needs-dashboard.png │ │ │ ├── li-user-needs-display-filter.png │ │ │ ├── li-user-needs-meta.png │ │ │ └── max-length.png │ │ ├── li-document-search-example.png │ │ ├── li-list-reference-example.png │ │ ├── li-numeric-list-example.png │ │ ├── li-reference-list-example.png │ │ └── plugins │ │ │ ├── _index.md │ │ │ ├── images │ │ │ ├── li-color-ui.png │ │ │ ├── li-document-reference-ui.png │ │ │ ├── li-enum-ui.png │ │ │ ├── li-metadata-translations-ui.png │ │ │ ├── li-reference-ui.png │ │ │ └── li-video-reference-ui.png │ │ │ ├── li-boolean.md │ │ │ ├── li-bundled-documents.md │ │ │ ├── li-buy-in.md │ │ │ ├── li-category.md │ │ │ ├── li-color.md │ │ │ ├── li-date.md │ │ │ ├── li-datetime-validity.md │ │ │ ├── li-datetime.md │ │ │ ├── li-dependencies.md │ │ │ ├── li-desknet-global.md │ │ │ ├── li-desknet-integration.md │ │ │ ├── li-desknet-schedule.md │ │ │ ├── li-distribution-dates.md │ │ │ ├── li-distribution-planning.md │ │ │ ├── li-distribution-schedule.md │ │ │ ├── li-document-reference.md │ │ │ ├── li-document-references.md │ │ │ ├── li-document-search.md │ │ │ ├── li-document-soft-lock.md │ │ │ ├── li-enum.md │ │ │ ├── li-estimated-time-of-completion.md │ │ │ ├── li-exposure-boost.md │ │ │ ├── li-external-id.md │ │ │ ├── li-google-vision.md │ │ │ ├── li-image.md │ │ │ ├── li-imatrics-nlp-tags.md │ │ │ ├── li-integer.md │ │ │ ├── li-invalid.md │ │ │ ├── li-issue-management.md │ │ │ ├── li-kordiam-global.md │ │ │ ├── li-kordiam-integration.md │ │ │ ├── li-kordiam-schedule.md │ │ │ ├── li-language.md │ │ │ ├── li-list-reference.md │ │ │ ├── li-manual-document-status.md │ │ │ ├── li-media-handle.md │ │ │ ├── li-media-language.md │ │ │ ├── li-metadata-translations.md │ │ │ ├── li-moderated-collab.md │ │ │ ├── li-named-crops.md │ │ │ ├── li-numeric-list.md │ │ │ ├── li-poster-image.md │ │ │ ├── li-print.md │ │ │ ├── li-publish-date.md │ │ │ ├── li-push-messages.md │ │ │ ├── li-push-notifications.md │ │ │ ├── li-reference-list.md │ │ │ ├── li-reference.md │ │ │ ├── li-retresco.md │ │ │ ├── li-routing.md │ │ │ ├── li-string-list.md │ │ │ ├── li-system-boolean.md │ │ │ ├── li-system-date.md │ │ │ ├── li-system-datetime.md │ │ │ ├── li-system-enum.md │ │ │ ├── li-system-integer.md │ │ │ ├── li-system-priority.md │ │ │ ├── li-system-target-length.md │ │ │ ├── li-system-text.md │ │ │ ├── li-target-length.md │ │ │ ├── li-task-v2.md │ │ │ ├── li-team.md │ │ │ ├── li-teaser.md │ │ │ ├── li-text.md │ │ │ ├── li-ticker-host-reference.md │ │ │ ├── li-transcoding-state.md │ │ │ ├── li-tree.md │ │ │ ├── li-unique-id.md │ │ │ ├── li-user-needs.md │ │ │ └── li-video-reference.md │ ├── migration │ │ ├── _index.md │ │ ├── data-migration.md │ │ └── on-read-migration.md │ └── references │ │ └── _index.md │ ├── project-config │ ├── _index.md │ ├── brands.md │ ├── categories.md │ ├── components.md │ ├── content-types.md │ ├── deliveries.md │ ├── design-settings.md │ ├── editor-settings.md │ ├── external-systems.md │ ├── finite-products.md │ ├── images │ │ ├── asset-inbox-button.png │ │ ├── custom_user_menu.png │ │ ├── inbox-assignment.png │ │ ├── inbox-documents.png │ │ ├── inline_links.png │ │ ├── send-to-inbox-context-menu-button.png │ │ ├── table-dashboard-cell-print.png │ │ ├── table-dashboard-cell-statistics.png │ │ ├── table-dashboard-task-list.png │ │ ├── table_dashboard_language_cell.png │ │ ├── table_dashboard_main_cell.png │ │ ├── table_dashboard_publish_state_cell.png │ │ ├── text-count.png │ │ ├── text_formatting.png │ │ └── text_formatting_placeholder.png │ ├── import-export.md │ ├── media-types.md │ ├── news-agencies.md │ ├── notifications.md │ └── settings.md │ ├── public-api │ ├── _content.gotmpl │ ├── _index.md │ ├── api-versioning-schedule.svg │ ├── changelog │ │ ├── 2024-07 │ │ │ └── document-command-api-new-commands.md │ │ ├── 2024-11 │ │ │ ├── deprecate-menu-tool.md │ │ │ └── document-command-api-new-commands.md │ │ ├── 2025-01 │ │ │ └── brand-conditions.md │ │ ├── 2025-03 │ │ │ ├── api-versioning.md │ │ │ └── media-library-serve-image.md │ │ ├── 2025-05 │ │ │ ├── kordiam-rebranding-remove-desknet-endpoints.md │ │ │ └── menu-tool-removal.md │ │ ├── 2025-07 │ │ │ ├── channel-endpoints-deprecation.md │ │ │ └── document-command-api-new-commands.md │ │ ├── 2025-09 │ │ │ └── renditions-deprecation.md │ │ └── _index.md │ ├── open-api.md │ ├── publications │ │ ├── references.png │ │ └── search-filters.md │ └── versioning.md │ └── webhooks │ ├── _index.md │ ├── webhook-detail.png │ └── webhooks.png ├── data ├── endpoints │ ├── add-delivery-status.yaml │ ├── auth-errors.yaml │ ├── auth-example.yaml │ ├── composition-beta.yaml │ ├── composition.yaml │ ├── document-commands.yaml │ ├── first-response.yaml │ ├── get-categories.yaml │ ├── get-category.yaml │ ├── get-channel-configuration.yaml │ ├── get-design-configuration.yaml │ ├── get-latest-design-configuration.yaml │ ├── get-latest-publication-2025-07.yaml │ ├── get-latest-publication-beta.yaml │ ├── get-latest-publication-v1.yaml │ ├── get-latest-publication.yaml │ ├── get-list-by-id.yaml │ ├── get-lists.yaml │ ├── get-media-library-entries.yaml │ ├── get-media-library-entry.yaml │ ├── get-media-library-incoming-document-references.yaml │ ├── get-media-library-incoming-media-references.yaml │ ├── get-menus.yaml │ ├── get-project-config.yaml │ ├── get-project-configuration.yaml │ ├── get-sitemap-entries.yaml │ ├── get-sitemap-index.yaml │ ├── health-check.yaml │ ├── import-documents-status.yaml │ ├── import-documents.yaml │ ├── import-files-status.yaml │ ├── import-files.yaml │ ├── import-images-status.yaml │ ├── import-images.yaml │ ├── import-media-library-entries.yaml │ ├── import-videos-status.yaml │ ├── import-videos.yaml │ ├── incoming-document-references.yaml │ ├── incoming-media-references.yaml │ ├── incoming-references.yaml │ ├── latest-draft-2025-07.yaml │ ├── latest-draft-beta.yaml │ ├── latest-draft.yaml │ ├── latest-publications-beta.yaml │ ├── latest-publications-v1.yaml │ ├── latest-publications.yaml │ ├── media-library-serve-image.yaml │ ├── patch-media-library-entry.yaml │ ├── publication-events.yaml │ ├── publication-renditions.yaml │ ├── resolve-path.yaml │ ├── retresco-re-enrich.yaml │ └── search-publications.yaml ├── openapi.yaml ├── releases.json └── sections.yaml ├── hugo.yaml ├── nginx.conf ├── package.json ├── redirects.map ├── renovate.json └── themes └── hugo-docs ├── .gitignore ├── assets ├── base │ ├── animations.scss │ ├── breakpoints.scss │ ├── colors-chroma.scss │ ├── colors.scss │ ├── materialdesignicons.css │ ├── mixins.scss │ ├── reset.scss │ ├── spaces.scss │ ├── spacing-elements.scss │ └── typography.scss ├── elements │ ├── anchor.scss │ ├── api-example.scss │ ├── arrow.scss │ ├── article.scss │ ├── badge.scss │ ├── breadcrumbs.scss │ ├── buttons.scss │ ├── check.scss │ ├── checkbox.scss │ ├── code-teaser.scss │ ├── cols.scss │ ├── cross.scss │ ├── feature-info.scss │ ├── flag.scss │ ├── footer.scss │ ├── general.scss │ ├── github.scss │ ├── header.scss │ ├── highlight.scss │ ├── history-button.scss │ ├── history.scss │ ├── illu-teaser.scss │ ├── info.scss │ ├── input-field.scss │ ├── list.scss │ ├── logo.scss │ ├── menu-search.scss │ ├── newsletter-form.scss │ ├── page.scss │ ├── pagination.scss │ ├── pill.scss │ ├── release-header.scss │ ├── scopes-pill.scss │ ├── search-box.scss │ ├── search-results-document.scss │ ├── search-results-line.scss │ ├── search-results.scss │ ├── section-label.scss │ ├── section-teaser.scss │ ├── section-teasers.scss │ ├── section.scss │ ├── shortcut.scss │ ├── shortcuts.scss │ ├── table-of-contents.scss │ ├── table.scss │ ├── tag.scss │ ├── teaser-and-code.scss │ ├── text-button.scss │ ├── tip.scss │ ├── topic.scss │ ├── topics.scss │ ├── video.scss │ └── warning.scss ├── script.js ├── search.js ├── style.scss └── svg │ ├── info.svg │ ├── li-docs.svg │ ├── li.svg │ ├── not-found.svg │ ├── repo.svg │ └── warning.svg ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-blockquote.html │ ├── baseof.html │ ├── section.html │ ├── section.searchindex.json │ └── single.html ├── api-reference-section │ └── single.html ├── changelog │ └── section.html ├── guides │ ├── section.html │ └── single.html ├── home.html ├── index.searchindex.json ├── metadata-plugins │ ├── section.html │ └── single.html ├── partials │ ├── _api-endpoints.html │ ├── _api-versions.html │ ├── added-in.html │ ├── api-example-resource.html │ ├── api-version-array-matches.html │ ├── api-version-matches.html │ ├── api-version-range.html │ ├── api-version-selector.html │ ├── api-version-sequence.html │ ├── api-version-string.html │ ├── check-cross.html │ ├── deprecated-in.html │ ├── edit-page.html │ ├── footer.html │ ├── html-header-global-meta.html │ ├── menu-children.html │ ├── menu.html │ ├── navigation.html │ ├── openapi-template.gotmpl │ ├── removed-in.html │ ├── required-for.html │ ├── sidebar.html │ └── topbar.html ├── redirect │ └── single.html ├── release-notes │ ├── section.html │ └── single.html ├── robots.txt └── shortcodes │ ├── a.html │ ├── added-in.html │ ├── anchor.html │ ├── api-version.html │ ├── check.html │ ├── cols.html │ ├── cross.html │ ├── deprecated-in.html │ ├── feature-info.html │ ├── github.html │ ├── illu-teaser.html │ ├── img.html │ ├── info.html │ ├── newsletter-form.html │ ├── openapi-list.html │ ├── openapi.html │ ├── release-notes-overview.html │ ├── release.html │ ├── removed-in.html │ ├── required-for.html │ ├── system-versions.html │ ├── tip.html │ └── warning.html ├── static └── favicon.ico └── theme.toml /.dockerignore: -------------------------------------------------------------------------------- 1 | public 2 | node_modules 3 | -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.drone.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.prettierrc -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode" 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/README.md -------------------------------------------------------------------------------- /Taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/Taxonomy.md -------------------------------------------------------------------------------- /bin/add-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/add-menu.js -------------------------------------------------------------------------------- /bin/build-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/build-index.js -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/compress.js -------------------------------------------------------------------------------- /bin/download-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/download-images.js -------------------------------------------------------------------------------- /bin/drone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/drone -------------------------------------------------------------------------------- /bin/generate-release-changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/generate-release-changes.js -------------------------------------------------------------------------------- /bin/generate-unified-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/bin/generate-unified-docs.js -------------------------------------------------------------------------------- /content/_content.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/_content.gotmpl -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/customising/advanced/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/_index.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/_index.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/base-filter-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/base-filter-legacy.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/base-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/base-filter.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/default-dashboard-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/default-dashboard-filter.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/display-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/display-filter.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/editing-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/editing-features.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/image-cropping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/image-cropping.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/image-source-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/image-source-policy.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/images/inline_links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/images/inline_links.png -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/images/search-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/images/search-filters.png -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/images/text-popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/images/text-popover.png -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/login.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/menu-and-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/menu-and-dashboards.md -------------------------------------------------------------------------------- /content/customising/advanced/editor-configuration/text-editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor-configuration/text-editing.md -------------------------------------------------------------------------------- /content/customising/advanced/editor/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor/_index.md -------------------------------------------------------------------------------- /content/customising/advanced/editor/browser-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor/browser-api.md -------------------------------------------------------------------------------- /content/customising/advanced/editor/document-drag-drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor/document-drag-drop.md -------------------------------------------------------------------------------- /content/customising/advanced/editor/editor-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor/editor-api.md -------------------------------------------------------------------------------- /content/customising/advanced/editor/vue-component-registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/editor/vue-component-registry.md -------------------------------------------------------------------------------- /content/customising/advanced/import-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/import-api.md -------------------------------------------------------------------------------- /content/customising/advanced/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/logging.md -------------------------------------------------------------------------------- /content/customising/advanced/search-customisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/search-customisation.md -------------------------------------------------------------------------------- /content/customising/advanced/server-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/advanced/server-events.md -------------------------------------------------------------------------------- /content/customising/angular-migration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/_index.md -------------------------------------------------------------------------------- /content/customising/angular-migration/dashboard-card-and-cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/dashboard-card-and-cells.md -------------------------------------------------------------------------------- /content/customising/angular-migration/dashboard-display-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/dashboard-display-filters.md -------------------------------------------------------------------------------- /content/customising/angular-migration/filter-for-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/filter-for-dashboards.md -------------------------------------------------------------------------------- /content/customising/angular-migration/includes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/includes.md -------------------------------------------------------------------------------- /content/customising/angular-migration/metadata-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/angular-migration/metadata-plugins.md -------------------------------------------------------------------------------- /content/customising/assistants/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/_index.md -------------------------------------------------------------------------------- /content/customising/assistants/assistant-custom-error-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/assistant-custom-error-message.png -------------------------------------------------------------------------------- /content/customising/assistants/assistant-focused-component-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/assistant-focused-component-button.png -------------------------------------------------------------------------------- /content/customising/assistants/assistant-metadata-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/assistant-metadata-button.png -------------------------------------------------------------------------------- /content/customising/assistants/assistant-proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/assistant-proposal.png -------------------------------------------------------------------------------- /content/customising/assistants/k-menu-assistants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/assistants/k-menu-assistants.png -------------------------------------------------------------------------------- /content/customising/server-configuration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server-configuration/_index.md -------------------------------------------------------------------------------- /content/customising/server-configuration/images/custom_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server-configuration/images/custom_preview.png -------------------------------------------------------------------------------- /content/customising/server-configuration/single-sign-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server-configuration/single-sign-on.md -------------------------------------------------------------------------------- /content/customising/server-configuration/storage/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server-configuration/storage/_index.md -------------------------------------------------------------------------------- /content/customising/server-configuration/storage/google-cloud-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server-configuration/storage/google-cloud-storage.md -------------------------------------------------------------------------------- /content/customising/server/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/_index.md -------------------------------------------------------------------------------- /content/customising/server/document-lifecycle/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/document-lifecycle/_index.md -------------------------------------------------------------------------------- /content/customising/server/document-lifecycle/document-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/document-lifecycle/document-creation.md -------------------------------------------------------------------------------- /content/customising/server/document-lifecycle/document-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/document-lifecycle/document-publication.md -------------------------------------------------------------------------------- /content/customising/server/document-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/document-version.md -------------------------------------------------------------------------------- /content/customising/server/images/print-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/print-layout.png -------------------------------------------------------------------------------- /content/customising/server/images/print-metadata-department.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/print-metadata-department.png -------------------------------------------------------------------------------- /content/customising/server/images/print-preview-inexisting-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/print-preview-inexisting-component.png -------------------------------------------------------------------------------- /content/customising/server/images/print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/print-preview.png -------------------------------------------------------------------------------- /content/customising/server/images/print-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/print-template.png -------------------------------------------------------------------------------- /content/customising/server/images/roles-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/images/roles-configurations.png -------------------------------------------------------------------------------- /content/customising/server/metadata-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/metadata-plugins.md -------------------------------------------------------------------------------- /content/customising/server/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/roles.md -------------------------------------------------------------------------------- /content/customising/server/server-api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/_index.md -------------------------------------------------------------------------------- /content/customising/server/server-api/dashboard-source-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/dashboard-source-api.md -------------------------------------------------------------------------------- /content/customising/server/server-api/data-source-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/data-source-api.md -------------------------------------------------------------------------------- /content/customising/server/server-api/images/datasource-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/images/datasource-dropdown.png -------------------------------------------------------------------------------- /content/customising/server/server-api/project-seeding-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/project-seeding-api.md -------------------------------------------------------------------------------- /content/customising/server/server-api/public-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-api/public-api.md -------------------------------------------------------------------------------- /content/customising/server/server-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-cli.md -------------------------------------------------------------------------------- /content/customising/server/server-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-hooks.md -------------------------------------------------------------------------------- /content/customising/server/server-initalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/customising/server/server-initalization.md -------------------------------------------------------------------------------- /content/guides/authentication/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/_index.md -------------------------------------------------------------------------------- /content/guides/authentication/access-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/access-hooks.md -------------------------------------------------------------------------------- /content/guides/authentication/access-rights/access-rights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/access-rights/access-rights.png -------------------------------------------------------------------------------- /content/guides/authentication/access-rights/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/access-rights/index.md -------------------------------------------------------------------------------- /content/guides/authentication/attribute-based-access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/attribute-based-access-control.md -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/0-goto-AAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/0-goto-AAD.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/1-create-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/1-create-registration.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/2-app-callback-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/2-app-callback-url.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/3-enable-access-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/3-enable-access-tokens.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/4-add-client-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/4-add-client-secret.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/5-copy-client-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/5-copy-client-secret.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/7-open-config-organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/7-open-config-organization.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/8-users-and-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/8-users-and-groups.png -------------------------------------------------------------------------------- /content/guides/authentication/azure-ad-login/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/azure-ad-login/index.md -------------------------------------------------------------------------------- /content/guides/authentication/user-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/authentication/user-management.md -------------------------------------------------------------------------------- /content/guides/deprecation-phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/deprecation-phase.md -------------------------------------------------------------------------------- /content/guides/documents/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/_index.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/_index.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/add-design-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/add-design-component.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/bullet-list-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/bullet-list-example.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/data-migrations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/data-migrations/index.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/document-design-intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/document-design-intro/index.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/embedded-design/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/embedded-design/index.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/publish-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/publish-design.md -------------------------------------------------------------------------------- /content/guides/documents/document-design/responsive-bg-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-design/responsive-bg-images.md -------------------------------------------------------------------------------- /content/guides/documents/document-lifecycle/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-lifecycle/_index.md -------------------------------------------------------------------------------- /content/guides/documents/document-lifecycle/restore-a-document/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/document-lifecycle/restore-a-document/index.md -------------------------------------------------------------------------------- /content/guides/documents/includes/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Document Includes 3 | weight: 303 4 | --- 5 | -------------------------------------------------------------------------------- /content/guides/documents/includes/document-teasers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/document-teasers.md -------------------------------------------------------------------------------- /content/guides/documents/includes/editable-document-teasers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/editable-document-teasers.md -------------------------------------------------------------------------------- /content/guides/documents/includes/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/instagram.png -------------------------------------------------------------------------------- /content/guides/documents/includes/list-teasers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/list-teasers.md -------------------------------------------------------------------------------- /content/guides/documents/includes/my-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/my-teaser.png -------------------------------------------------------------------------------- /content/guides/documents/includes/oembed/advanced-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/oembed/advanced-provider.png -------------------------------------------------------------------------------- /content/guides/documents/includes/oembed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/oembed/index.md -------------------------------------------------------------------------------- /content/guides/documents/includes/oembed/simple-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/oembed/simple-provider.png -------------------------------------------------------------------------------- /content/guides/documents/includes/teaser-include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/teaser-include.png -------------------------------------------------------------------------------- /content/guides/documents/includes/toolbar-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/toolbar-teaser.png -------------------------------------------------------------------------------- /content/guides/documents/includes/twitter-embed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/twitter-embed/index.md -------------------------------------------------------------------------------- /content/guides/documents/includes/twitter-embed/twitter-include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/twitter-embed/twitter-include.png -------------------------------------------------------------------------------- /content/guides/documents/includes/youtube-embed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/youtube-embed/index.md -------------------------------------------------------------------------------- /content/guides/documents/includes/youtube-embed/youtube-include-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/youtube-embed/youtube-include-sidebar.png -------------------------------------------------------------------------------- /content/guides/documents/includes/youtube-embed/youtube_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/includes/youtube-embed/youtube_include.png -------------------------------------------------------------------------------- /content/guides/documents/metadata/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Document Metadata 3 | weight: 302 4 | --- 5 | -------------------------------------------------------------------------------- /content/guides/documents/metadata/metadata-examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/metadata/metadata-examples/index.md -------------------------------------------------------------------------------- /content/guides/documents/metadata/metadata-examples/slug-metadata-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/documents/metadata/metadata-examples/slug-metadata-form.png -------------------------------------------------------------------------------- /content/guides/editor/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/_index.md -------------------------------------------------------------------------------- /content/guides/editor/assistants/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/assistants/index.md -------------------------------------------------------------------------------- /content/guides/editor/assistants/k-menu-assistants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/assistants/k-menu-assistants.png -------------------------------------------------------------------------------- /content/guides/editor/author-management/author-content-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/author-management/author-content-type.png -------------------------------------------------------------------------------- /content/guides/editor/author-management/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/author-management/index.md -------------------------------------------------------------------------------- /content/guides/editor/author-management/link-author-in-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/author-management/link-author-in-article.png -------------------------------------------------------------------------------- /content/guides/editor/author-management/map-author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/author-management/map-author.png -------------------------------------------------------------------------------- /content/guides/editor/custom-dashboard-filters/filter-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/custom-dashboard-filters/filter-dropdown.png -------------------------------------------------------------------------------- /content/guides/editor/custom-dashboard-filters/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/custom-dashboard-filters/index.md -------------------------------------------------------------------------------- /content/guides/editor/custom-dashboard-filters/multi-filter-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/custom-dashboard-filters/multi-filter-dropdown.png -------------------------------------------------------------------------------- /content/guides/editor/custom-table-dashboard-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/custom-table-dashboard-cell.png -------------------------------------------------------------------------------- /content/guides/editor/custom-table-dashboard-cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/custom-table-dashboard-cells.md -------------------------------------------------------------------------------- /content/guides/editor/declarative-document-copy/copy-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/declarative-document-copy/copy-article.png -------------------------------------------------------------------------------- /content/guides/editor/declarative-document-copy/copy-basics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/declarative-document-copy/copy-basics.png -------------------------------------------------------------------------------- /content/guides/editor/declarative-document-copy/copy-design-to-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/declarative-document-copy/copy-design-to-design.png -------------------------------------------------------------------------------- /content/guides/editor/declarative-document-copy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/declarative-document-copy/index.md -------------------------------------------------------------------------------- /content/guides/editor/document-copy-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-copy-flows.md -------------------------------------------------------------------------------- /content/guides/editor/document-creation-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-creation-flow.md -------------------------------------------------------------------------------- /content/guides/editor/document-previews/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-previews/index.md -------------------------------------------------------------------------------- /content/guides/editor/document-print-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-print-flows.md -------------------------------------------------------------------------------- /content/guides/editor/document-soft-lock/document-soft-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-soft-lock/document-soft-lock.png -------------------------------------------------------------------------------- /content/guides/editor/document-soft-lock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-soft-lock/index.md -------------------------------------------------------------------------------- /content/guides/editor/document-transform-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/document-transform-flows.md -------------------------------------------------------------------------------- /content/guides/editor/filter-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/filter-migration.md -------------------------------------------------------------------------------- /content/guides/editor/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/icons.md -------------------------------------------------------------------------------- /content/guides/editor/image-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/image-gallery.md -------------------------------------------------------------------------------- /content/guides/editor/images/custom-proofreading-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/custom-proofreading-task.png -------------------------------------------------------------------------------- /content/guides/editor/images/custom-review-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/custom-review-task.png -------------------------------------------------------------------------------- /content/guides/editor/images/image-gallery-content-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/image-gallery-content-type.png -------------------------------------------------------------------------------- /content/guides/editor/images/image-gallery-teaser-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/image-gallery-teaser-placeholder.png -------------------------------------------------------------------------------- /content/guides/editor/images/image-gallery-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/image-gallery-teaser.png -------------------------------------------------------------------------------- /content/guides/editor/images/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/images/tasks.png -------------------------------------------------------------------------------- /content/guides/editor/liTableDashboardCellStatistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/liTableDashboardCellStatistics.png -------------------------------------------------------------------------------- /content/guides/editor/menus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/menus/index.md -------------------------------------------------------------------------------- /content/guides/editor/menus/menu-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/menus/menu-creation.png -------------------------------------------------------------------------------- /content/guides/editor/menus/menu-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/menus/menu-metadata.png -------------------------------------------------------------------------------- /content/guides/editor/metadata-translations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/metadata-translations/index.md -------------------------------------------------------------------------------- /content/guides/editor/metadata-translations/metadata-translations-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/metadata-translations/metadata-translations-form.png -------------------------------------------------------------------------------- /content/guides/editor/multi-language-content/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-content/dashboard.png -------------------------------------------------------------------------------- /content/guides/editor/multi-language-content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-content/index.md -------------------------------------------------------------------------------- /content/guides/editor/multi-language-content/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-content/metadata.png -------------------------------------------------------------------------------- /content/guides/editor/multi-language-ui/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-ui/index.md -------------------------------------------------------------------------------- /content/guides/editor/multi-language-ui/label-german.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-ui/label-german.png -------------------------------------------------------------------------------- /content/guides/editor/multi-language-ui/language-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/multi-language-ui/language-switcher.png -------------------------------------------------------------------------------- /content/guides/editor/notifications/comments-mentioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/notifications/comments-mentioning.png -------------------------------------------------------------------------------- /content/guides/editor/notifications/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/notifications/index.md -------------------------------------------------------------------------------- /content/guides/editor/notifications/notification-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/notifications/notification-config.png -------------------------------------------------------------------------------- /content/guides/editor/project-document-copy/document-drag-and-drop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/project-document-copy/document-drag-and-drop.gif -------------------------------------------------------------------------------- /content/guides/editor/project-document-copy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/project-document-copy/index.md -------------------------------------------------------------------------------- /content/guides/editor/proofreading-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/proofreading-dashboard.md -------------------------------------------------------------------------------- /content/guides/editor/proofreading-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/proofreading-task.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Publish Control 3 | weight: 1 4 | --- 5 | -------------------------------------------------------------------------------- /content/guides/editor/publish-control/delivery/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/delivery/delivery.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/delivery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/delivery/index.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/embargo/embargo-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/embargo/embargo-disabled.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/embargo/embargo-indefinite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/embargo/embargo-indefinite.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/embargo/embargo-publish-later.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/embargo/embargo-publish-later.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/embargo/embargo-until.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/embargo/embargo-until.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/embargo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/embargo/index.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/export-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/export-mode.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/export-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/export-mode.png -------------------------------------------------------------------------------- /content/guides/editor/publish-control/publish-control-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/publish-control-basics.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/publish-control-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/publish-control-migration.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/scheduled-publishing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/scheduled-publishing/index.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/significant-update/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/significant-update/index.md -------------------------------------------------------------------------------- /content/guides/editor/publish-control/visible-publication-date/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/publish-control/visible-publication-date/index.md -------------------------------------------------------------------------------- /content/guides/editor/push-notifications/article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/push-notifications/article.png -------------------------------------------------------------------------------- /content/guides/editor/push-notifications/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/push-notifications/dashboard.png -------------------------------------------------------------------------------- /content/guides/editor/push-notifications/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/push-notifications/index.md -------------------------------------------------------------------------------- /content/guides/editor/review-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/review-task.md -------------------------------------------------------------------------------- /content/guides/editor/table-dashboard-cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/table-dashboard-cells.md -------------------------------------------------------------------------------- /content/guides/editor/teaser-preview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/teaser-preview/index.md -------------------------------------------------------------------------------- /content/guides/editor/teaser-preview/teaser-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/editor/teaser-preview/teaser-preview.gif -------------------------------------------------------------------------------- /content/guides/integrations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/_index.md -------------------------------------------------------------------------------- /content/guides/integrations/cross-project-content-sharing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/cross-project-content-sharing/index.md -------------------------------------------------------------------------------- /content/guides/integrations/desknet-global-integration-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet-global-integration-migration.md -------------------------------------------------------------------------------- /content/guides/integrations/desknet-legacy/desknet-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet-legacy/desknet-config.png -------------------------------------------------------------------------------- /content/guides/integrations/desknet-legacy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet-legacy/index.md -------------------------------------------------------------------------------- /content/guides/integrations/desknet-schedule/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet-schedule/index.md -------------------------------------------------------------------------------- /content/guides/integrations/desknet-to-kordiam-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet-to-kordiam-migration.md -------------------------------------------------------------------------------- /content/guides/integrations/desknet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/desknet.md -------------------------------------------------------------------------------- /content/guides/integrations/dpa-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/dpa-import.md -------------------------------------------------------------------------------- /content/guides/integrations/google-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/google-vision.md -------------------------------------------------------------------------------- /content/guides/integrations/handsontable/Handsontable-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/handsontable/Handsontable-config.png -------------------------------------------------------------------------------- /content/guides/integrations/handsontable/Rendered-Handsontable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/handsontable/Rendered-Handsontable.png -------------------------------------------------------------------------------- /content/guides/integrations/handsontable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/handsontable/index.md -------------------------------------------------------------------------------- /content/guides/integrations/hugo-dnd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/hugo-dnd/index.md -------------------------------------------------------------------------------- /content/guides/integrations/kordiam-global-integration-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/kordiam-global-integration-migration.md -------------------------------------------------------------------------------- /content/guides/integrations/kordiam-legacy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/kordiam-legacy/index.md -------------------------------------------------------------------------------- /content/guides/integrations/kordiam-legacy/kordiam-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/kordiam-legacy/kordiam-config.png -------------------------------------------------------------------------------- /content/guides/integrations/kordiam-schedule/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/kordiam-schedule/index.md -------------------------------------------------------------------------------- /content/guides/integrations/kordiam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/kordiam.md -------------------------------------------------------------------------------- /content/guides/integrations/li2xliff/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/li2xliff/index.md -------------------------------------------------------------------------------- /content/guides/integrations/news-agencies-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/news-agencies-flow.png -------------------------------------------------------------------------------- /content/guides/integrations/news-agencies-notifications-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/news-agencies-notifications-settings.png -------------------------------------------------------------------------------- /content/guides/integrations/news-agencies-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/news-agencies-notifications.png -------------------------------------------------------------------------------- /content/guides/integrations/news-agencies-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/news-agencies-screen.png -------------------------------------------------------------------------------- /content/guides/integrations/news-agencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/news-agencies.md -------------------------------------------------------------------------------- /content/guides/integrations/print/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/index.md -------------------------------------------------------------------------------- /content/guides/integrations/print/print-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/print-layout.png -------------------------------------------------------------------------------- /content/guides/integrations/print/print-metadata-department.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/print-metadata-department.png -------------------------------------------------------------------------------- /content/guides/integrations/print/print-preview-inexisting-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/print-preview-inexisting-component.png -------------------------------------------------------------------------------- /content/guides/integrations/print/print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/print-preview.png -------------------------------------------------------------------------------- /content/guides/integrations/print/print-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/print/print-template.png -------------------------------------------------------------------------------- /content/guides/integrations/retresco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/retresco.md -------------------------------------------------------------------------------- /content/guides/integrations/woodwing-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/integrations/woodwing-assets.md -------------------------------------------------------------------------------- /content/guides/media-library/2025-behavior/image-editor-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/2025-behavior/image-editor-button.png -------------------------------------------------------------------------------- /content/guides/media-library/2025-behavior/image-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/2025-behavior/image-editor.png -------------------------------------------------------------------------------- /content/guides/media-library/2025-behavior/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/2025-behavior/index.md -------------------------------------------------------------------------------- /content/guides/media-library/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/_index.md -------------------------------------------------------------------------------- /content/guides/media-library/image-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/image-services.md -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/editing-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/editing-toolbar.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/fp_crop_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/fp_crop_default.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/fp_select_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/fp_select_center.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/fp_select_chapel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/fp_select_chapel.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/fp_select_mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/fp_select_mountain.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/index.md -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/poster-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/poster-image.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/transcoding-state-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/transcoding-state-done.png -------------------------------------------------------------------------------- /content/guides/media-library/media-library-setup/transcoding-state-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-library-setup/transcoding-state-zero.png -------------------------------------------------------------------------------- /content/guides/media-library/media-sources/images/media-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-sources/images/media-sources.png -------------------------------------------------------------------------------- /content/guides/media-library/media-sources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/media-sources/index.md -------------------------------------------------------------------------------- /content/guides/media-library/revoke-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/revoke-media.md -------------------------------------------------------------------------------- /content/guides/media-library/video-includes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/video-includes/index.md -------------------------------------------------------------------------------- /content/guides/media-library/video-includes/video-include-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/video-includes/video-include-placeholder.png -------------------------------------------------------------------------------- /content/guides/media-library/video-includes/video-include-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/media-library/video-includes/video-include-player.png -------------------------------------------------------------------------------- /content/guides/organisation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/organisation/_index.md -------------------------------------------------------------------------------- /content/guides/organisation/categories-and-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/organisation/categories-and-routing.md -------------------------------------------------------------------------------- /content/guides/organisation/routing-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/organisation/routing-system.md -------------------------------------------------------------------------------- /content/guides/organisation/sitemaps-and-feeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/organisation/sitemaps-and-feeds.md -------------------------------------------------------------------------------- /content/guides/search/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/search/_index.md -------------------------------------------------------------------------------- /content/guides/search/custom-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/search/custom-index.md -------------------------------------------------------------------------------- /content/guides/search/multi-cluster-indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/search/multi-cluster-indexing.md -------------------------------------------------------------------------------- /content/guides/search/publication-index-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/search/publication-index-legacy.md -------------------------------------------------------------------------------- /content/guides/search/publication-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/search/publication-index.md -------------------------------------------------------------------------------- /content/guides/setup/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/_index.md -------------------------------------------------------------------------------- /content/guides/setup/change-http-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/change-http-port.md -------------------------------------------------------------------------------- /content/guides/setup/editor-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/editor-customization.md -------------------------------------------------------------------------------- /content/guides/setup/import-legacy-system-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/import-legacy-system-documents.md -------------------------------------------------------------------------------- /content/guides/setup/link-local-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/link-local-dependencies.md -------------------------------------------------------------------------------- /content/guides/setup/project-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/project-secrets.md -------------------------------------------------------------------------------- /content/guides/setup/server-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/server-customization.md -------------------------------------------------------------------------------- /content/guides/setup/setup-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/guides/setup/setup-windows.md -------------------------------------------------------------------------------- /content/illu-guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/illu-guides.png -------------------------------------------------------------------------------- /content/illu-learn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/illu-learn.svg -------------------------------------------------------------------------------- /content/illu-operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/illu-operations.png -------------------------------------------------------------------------------- /content/illu-referrence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/illu-referrence.png -------------------------------------------------------------------------------- /content/learn/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Learn 3 | --- 4 | -------------------------------------------------------------------------------- /content/learn/video-tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/learn/video-tour.md -------------------------------------------------------------------------------- /content/operations/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/architecture.md -------------------------------------------------------------------------------- /content/operations/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/docker.md -------------------------------------------------------------------------------- /content/operations/external-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/external-services.md -------------------------------------------------------------------------------- /content/operations/hardware-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/hardware-requirements.md -------------------------------------------------------------------------------- /content/operations/high-availability-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/high-availability-setup.md -------------------------------------------------------------------------------- /content/operations/images/architecture-delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/architecture-delivery.png -------------------------------------------------------------------------------- /content/operations/images/architecture-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/architecture-editing.png -------------------------------------------------------------------------------- /content/operations/images/architecture-external-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/architecture-external-services.png -------------------------------------------------------------------------------- /content/operations/images/architecture-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/architecture-proxy.png -------------------------------------------------------------------------------- /content/operations/images/architecture-stacks-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/architecture-stacks-apps.png -------------------------------------------------------------------------------- /content/operations/images/grafana-dashboard-panel-loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/grafana-dashboard-panel-loki.png -------------------------------------------------------------------------------- /content/operations/images/grafana-dashboard-panel-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/grafana-dashboard-panel-prometheus.png -------------------------------------------------------------------------------- /content/operations/images/grafana-logs-and-traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/images/grafana-logs-and-traces.png -------------------------------------------------------------------------------- /content/operations/maintenance/how-to-do-a-load-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/maintenance/how-to-do-a-load-test.md -------------------------------------------------------------------------------- /content/operations/maintenance/how-to-varnish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/maintenance/how-to-varnish.md -------------------------------------------------------------------------------- /content/operations/npm-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/npm-packages.md -------------------------------------------------------------------------------- /content/operations/npm/access-private-npm-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/npm/access-private-npm-modules.md -------------------------------------------------------------------------------- /content/operations/npm/generating-npm-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/npm/generating-npm-tokens.md -------------------------------------------------------------------------------- /content/operations/npm/hotfix-legacy-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/npm/hotfix-legacy-release.md -------------------------------------------------------------------------------- /content/operations/npm/publish-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/npm/publish-packages.md -------------------------------------------------------------------------------- /content/operations/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/proxy.md -------------------------------------------------------------------------------- /content/operations/releases/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/_index.md -------------------------------------------------------------------------------- /content/operations/releases/_release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/_release-template.md -------------------------------------------------------------------------------- /content/operations/releases/release-2021-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2021-03.md -------------------------------------------------------------------------------- /content/operations/releases/release-2021-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2021-06.md -------------------------------------------------------------------------------- /content/operations/releases/release-2021-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2021-09.md -------------------------------------------------------------------------------- /content/operations/releases/release-2021-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2021-11.md -------------------------------------------------------------------------------- /content/operations/releases/release-2022-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2022-03.md -------------------------------------------------------------------------------- /content/operations/releases/release-2022-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2022-05.md -------------------------------------------------------------------------------- /content/operations/releases/release-2022-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2022-07.md -------------------------------------------------------------------------------- /content/operations/releases/release-2022-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2022-09.md -------------------------------------------------------------------------------- /content/operations/releases/release-2022-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2022-11.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-01.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-03.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-05.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-07.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-09.md -------------------------------------------------------------------------------- /content/operations/releases/release-2023-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2023-11.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-01.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-03.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-05.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-07.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-09-document-info-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-09-document-info-panel.png -------------------------------------------------------------------------------- /content/operations/releases/release-2024-09-wide-side-panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-09-wide-side-panels.png -------------------------------------------------------------------------------- /content/operations/releases/release-2024-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-09.md -------------------------------------------------------------------------------- /content/operations/releases/release-2024-11-inbox-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-11-inbox-permission.png -------------------------------------------------------------------------------- /content/operations/releases/release-2024-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2024-11.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-01-brands-condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-01-brands-condition.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-01-timeline-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-01-timeline-mode.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-01-user-needs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-01-user-needs.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-01-visibility-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-01-visibility-mode.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-01.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-03-smart-quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-03-smart-quotes.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-03.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-05-image-editor-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-05-image-editor-button.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-05-image-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-05-image-editor.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-05.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-07-news-agencies-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-07-news-agencies-flow.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-07-news-agencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-07-news-agencies.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-07.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-09-media-center-access-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-09-media-center-access-control.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-09-media-handle-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-09-media-handle-card.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-09-media-handle-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-09-media-handle-metadata.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-09.md -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-li-target-length-characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-li-target-length-characters.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-li-target-length-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-li-target-length-lines.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-li-target-length-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-li-target-length-steps.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-media-library-details-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-media-library-details-panel.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-news-agency-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-news-agency-metadata.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11-news-agency-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11-news-agency-select-all.png -------------------------------------------------------------------------------- /content/operations/releases/release-2025-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2025-11.md -------------------------------------------------------------------------------- /content/operations/releases/release-2026-01-export-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2026-01-export-mode.png -------------------------------------------------------------------------------- /content/operations/releases/release-2026-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/releases/release-2026-01.md -------------------------------------------------------------------------------- /content/operations/self-hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/self-hosting.md -------------------------------------------------------------------------------- /content/operations/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/operations/telemetry.md -------------------------------------------------------------------------------- /content/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Documentation 3 | --- 4 | -------------------------------------------------------------------------------- /content/reference/cli/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/cli/_index.md -------------------------------------------------------------------------------- /content/reference/cli/cli-dotfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/cli/cli-dotfile.md -------------------------------------------------------------------------------- /content/reference/cli/managing-project-configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/cli/managing-project-configs.md -------------------------------------------------------------------------------- /content/reference/document/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/_index.md -------------------------------------------------------------------------------- /content/reference/document/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/content/_index.md -------------------------------------------------------------------------------- /content/reference/document/content/component-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/content/component-model.md -------------------------------------------------------------------------------- /content/reference/document/content/component-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/content/component-tree.md -------------------------------------------------------------------------------- /content/reference/document/content/directives-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/content/directives-models.md -------------------------------------------------------------------------------- /content/reference/document/content/livingdocs-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/content/livingdocs-model.md -------------------------------------------------------------------------------- /content/reference/document/document-design/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/_index.md -------------------------------------------------------------------------------- /content/reference/document/document-design/component-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/component-property.png -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/_index.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/char-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/char-limit.png -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/container.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/editable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/editable.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/html.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/image-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/image-crop.png -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/image.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/include.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/link.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/style.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/toggle.md -------------------------------------------------------------------------------- /content/reference/document/document-design/directives/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/document-design/directives/video.md -------------------------------------------------------------------------------- /content/reference/document/includes/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/_index.md -------------------------------------------------------------------------------- /content/reference/document/includes/editor-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/editor-customization.md -------------------------------------------------------------------------------- /content/reference/document/includes/images/multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/images/multiselect.png -------------------------------------------------------------------------------- /content/reference/document/includes/images/time-diagram-doc-include.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/images/time-diagram-doc-include.jpg -------------------------------------------------------------------------------- /content/reference/document/includes/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/introduction.md -------------------------------------------------------------------------------- /content/reference/document/includes/server-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/server-customization.md -------------------------------------------------------------------------------- /content/reference/document/includes/service-multiselect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/includes/service-multiselect.md -------------------------------------------------------------------------------- /content/reference/document/metadata/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/_index.md -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-buy-in-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-buy-in-closed.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-buy-in-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-buy-in-dashboard.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-buy-in-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-buy-in-initial.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-datetime-validity-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-datetime-validity-ui.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-issue-management-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-issue-management-overview.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-issue-management-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-issue-management-remove.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-media-handle-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-media-handle-card.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-media-handle-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-media-handle-metadata.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-push-messages-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-push-messages-dashboard.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-push-messages-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-push-messages-dialog.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-target-length-characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-target-length-characters.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-target-length-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-target-length-indicator.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-target-length-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-target-length-lines.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-target-length-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-target-length-steps.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-team-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-team-dashboard.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-team-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-team-meta.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-teaser-container-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-teaser-container-settings.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-teaser-default-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-teaser-default-ui.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-teaser-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-teaser-overview.jpg -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-teaser-side-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-teaser-side-table.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-tree-multilang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-tree-multilang.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-user-needs-creationd-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-user-needs-creationd-flow.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-user-needs-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-user-needs-dashboard.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-user-needs-display-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-user-needs-display-filter.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/li-user-needs-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/li-user-needs-meta.png -------------------------------------------------------------------------------- /content/reference/document/metadata/images/max-length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/images/max-length.png -------------------------------------------------------------------------------- /content/reference/document/metadata/li-document-search-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/li-document-search-example.png -------------------------------------------------------------------------------- /content/reference/document/metadata/li-list-reference-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/li-list-reference-example.png -------------------------------------------------------------------------------- /content/reference/document/metadata/li-numeric-list-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/li-numeric-list-example.png -------------------------------------------------------------------------------- /content/reference/document/metadata/li-reference-list-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/li-reference-list-example.png -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/_index.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/images/li-color-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/images/li-color-ui.png -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/images/li-enum-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/images/li-enum-ui.png -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/images/li-reference-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/images/li-reference-ui.png -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-boolean.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-bundled-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-bundled-documents.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-buy-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-buy-in.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-category.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-color.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-date.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-datetime-validity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-datetime-validity.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-datetime.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-dependencies.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-desknet-global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-desknet-global.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-desknet-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-desknet-integration.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-desknet-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-desknet-schedule.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-distribution-dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-distribution-dates.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-distribution-planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-distribution-planning.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-distribution-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-distribution-schedule.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-document-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-document-reference.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-document-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-document-references.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-document-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-document-search.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-document-soft-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-document-soft-lock.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-enum.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-exposure-boost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-exposure-boost.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-external-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-external-id.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-google-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-google-vision.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-image.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-imatrics-nlp-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-imatrics-nlp-tags.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-integer.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-invalid.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-issue-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-issue-management.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-kordiam-global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-kordiam-global.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-kordiam-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-kordiam-integration.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-kordiam-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-kordiam-schedule.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-language.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-list-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-list-reference.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-manual-document-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-manual-document-status.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-media-handle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-media-handle.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-media-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-media-language.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-metadata-translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-metadata-translations.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-moderated-collab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-moderated-collab.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-named-crops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-named-crops.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-numeric-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-numeric-list.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-poster-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-poster-image.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-print.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-publish-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-publish-date.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-push-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-push-messages.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-push-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-push-notifications.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-reference-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-reference-list.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-reference.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-retresco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-retresco.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-routing.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-string-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-string-list.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-boolean.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-date.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-datetime.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-enum.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-integer.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-priority.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-target-length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-target-length.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-system-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-system-text.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-target-length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-target-length.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-task-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-task-v2.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-team.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-teaser.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-text.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-ticker-host-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-ticker-host-reference.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-transcoding-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-transcoding-state.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-tree.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-unique-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-unique-id.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-user-needs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-user-needs.md -------------------------------------------------------------------------------- /content/reference/document/metadata/plugins/li-video-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/metadata/plugins/li-video-reference.md -------------------------------------------------------------------------------- /content/reference/document/migration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/migration/_index.md -------------------------------------------------------------------------------- /content/reference/document/migration/data-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/migration/data-migration.md -------------------------------------------------------------------------------- /content/reference/document/migration/on-read-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/migration/on-read-migration.md -------------------------------------------------------------------------------- /content/reference/document/references/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/document/references/_index.md -------------------------------------------------------------------------------- /content/reference/project-config/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/_index.md -------------------------------------------------------------------------------- /content/reference/project-config/brands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/brands.md -------------------------------------------------------------------------------- /content/reference/project-config/categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/categories.md -------------------------------------------------------------------------------- /content/reference/project-config/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/components.md -------------------------------------------------------------------------------- /content/reference/project-config/content-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/content-types.md -------------------------------------------------------------------------------- /content/reference/project-config/deliveries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/deliveries.md -------------------------------------------------------------------------------- /content/reference/project-config/design-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/design-settings.md -------------------------------------------------------------------------------- /content/reference/project-config/editor-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/editor-settings.md -------------------------------------------------------------------------------- /content/reference/project-config/external-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/external-systems.md -------------------------------------------------------------------------------- /content/reference/project-config/finite-products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/finite-products.md -------------------------------------------------------------------------------- /content/reference/project-config/images/asset-inbox-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/asset-inbox-button.png -------------------------------------------------------------------------------- /content/reference/project-config/images/custom_user_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/custom_user_menu.png -------------------------------------------------------------------------------- /content/reference/project-config/images/inbox-assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/inbox-assignment.png -------------------------------------------------------------------------------- /content/reference/project-config/images/inbox-documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/inbox-documents.png -------------------------------------------------------------------------------- /content/reference/project-config/images/inline_links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/inline_links.png -------------------------------------------------------------------------------- /content/reference/project-config/images/table-dashboard-cell-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/table-dashboard-cell-print.png -------------------------------------------------------------------------------- /content/reference/project-config/images/table-dashboard-cell-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/table-dashboard-cell-statistics.png -------------------------------------------------------------------------------- /content/reference/project-config/images/table-dashboard-task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/table-dashboard-task-list.png -------------------------------------------------------------------------------- /content/reference/project-config/images/table_dashboard_language_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/table_dashboard_language_cell.png -------------------------------------------------------------------------------- /content/reference/project-config/images/table_dashboard_main_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/table_dashboard_main_cell.png -------------------------------------------------------------------------------- /content/reference/project-config/images/text-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/text-count.png -------------------------------------------------------------------------------- /content/reference/project-config/images/text_formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/text_formatting.png -------------------------------------------------------------------------------- /content/reference/project-config/images/text_formatting_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/images/text_formatting_placeholder.png -------------------------------------------------------------------------------- /content/reference/project-config/import-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/import-export.md -------------------------------------------------------------------------------- /content/reference/project-config/media-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/media-types.md -------------------------------------------------------------------------------- /content/reference/project-config/news-agencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/news-agencies.md -------------------------------------------------------------------------------- /content/reference/project-config/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/notifications.md -------------------------------------------------------------------------------- /content/reference/project-config/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/project-config/settings.md -------------------------------------------------------------------------------- /content/reference/public-api/_content.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/_content.gotmpl -------------------------------------------------------------------------------- /content/reference/public-api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/_index.md -------------------------------------------------------------------------------- /content/reference/public-api/api-versioning-schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/api-versioning-schedule.svg -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2024-11/deprecate-menu-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2024-11/deprecate-menu-tool.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2025-01/brand-conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2025-01/brand-conditions.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2025-03/api-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2025-03/api-versioning.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2025-03/media-library-serve-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2025-03/media-library-serve-image.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2025-05/menu-tool-removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2025-05/menu-tool-removal.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/2025-09/renditions-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/2025-09/renditions-deprecation.md -------------------------------------------------------------------------------- /content/reference/public-api/changelog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/changelog/_index.md -------------------------------------------------------------------------------- /content/reference/public-api/open-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/open-api.md -------------------------------------------------------------------------------- /content/reference/public-api/publications/references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/publications/references.png -------------------------------------------------------------------------------- /content/reference/public-api/publications/search-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/publications/search-filters.md -------------------------------------------------------------------------------- /content/reference/public-api/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/public-api/versioning.md -------------------------------------------------------------------------------- /content/reference/webhooks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/webhooks/_index.md -------------------------------------------------------------------------------- /content/reference/webhooks/webhook-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/webhooks/webhook-detail.png -------------------------------------------------------------------------------- /content/reference/webhooks/webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/content/reference/webhooks/webhooks.png -------------------------------------------------------------------------------- /data/endpoints/add-delivery-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/add-delivery-status.yaml -------------------------------------------------------------------------------- /data/endpoints/auth-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/auth-errors.yaml -------------------------------------------------------------------------------- /data/endpoints/auth-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/auth-example.yaml -------------------------------------------------------------------------------- /data/endpoints/composition-beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/composition-beta.yaml -------------------------------------------------------------------------------- /data/endpoints/composition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/composition.yaml -------------------------------------------------------------------------------- /data/endpoints/document-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/document-commands.yaml -------------------------------------------------------------------------------- /data/endpoints/first-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/first-response.yaml -------------------------------------------------------------------------------- /data/endpoints/get-categories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-categories.yaml -------------------------------------------------------------------------------- /data/endpoints/get-category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-category.yaml -------------------------------------------------------------------------------- /data/endpoints/get-channel-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-channel-configuration.yaml -------------------------------------------------------------------------------- /data/endpoints/get-design-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-design-configuration.yaml -------------------------------------------------------------------------------- /data/endpoints/get-latest-design-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-latest-design-configuration.yaml -------------------------------------------------------------------------------- /data/endpoints/get-latest-publication-2025-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-latest-publication-2025-07.yaml -------------------------------------------------------------------------------- /data/endpoints/get-latest-publication-beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-latest-publication-beta.yaml -------------------------------------------------------------------------------- /data/endpoints/get-latest-publication-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-latest-publication-v1.yaml -------------------------------------------------------------------------------- /data/endpoints/get-latest-publication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-latest-publication.yaml -------------------------------------------------------------------------------- /data/endpoints/get-list-by-id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-list-by-id.yaml -------------------------------------------------------------------------------- /data/endpoints/get-lists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-lists.yaml -------------------------------------------------------------------------------- /data/endpoints/get-media-library-entries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-media-library-entries.yaml -------------------------------------------------------------------------------- /data/endpoints/get-media-library-entry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-media-library-entry.yaml -------------------------------------------------------------------------------- /data/endpoints/get-media-library-incoming-document-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-media-library-incoming-document-references.yaml -------------------------------------------------------------------------------- /data/endpoints/get-media-library-incoming-media-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-media-library-incoming-media-references.yaml -------------------------------------------------------------------------------- /data/endpoints/get-menus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-menus.yaml -------------------------------------------------------------------------------- /data/endpoints/get-project-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-project-config.yaml -------------------------------------------------------------------------------- /data/endpoints/get-project-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-project-configuration.yaml -------------------------------------------------------------------------------- /data/endpoints/get-sitemap-entries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-sitemap-entries.yaml -------------------------------------------------------------------------------- /data/endpoints/get-sitemap-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/get-sitemap-index.yaml -------------------------------------------------------------------------------- /data/endpoints/health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/health-check.yaml -------------------------------------------------------------------------------- /data/endpoints/import-documents-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-documents-status.yaml -------------------------------------------------------------------------------- /data/endpoints/import-documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-documents.yaml -------------------------------------------------------------------------------- /data/endpoints/import-files-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-files-status.yaml -------------------------------------------------------------------------------- /data/endpoints/import-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-files.yaml -------------------------------------------------------------------------------- /data/endpoints/import-images-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-images-status.yaml -------------------------------------------------------------------------------- /data/endpoints/import-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-images.yaml -------------------------------------------------------------------------------- /data/endpoints/import-media-library-entries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-media-library-entries.yaml -------------------------------------------------------------------------------- /data/endpoints/import-videos-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-videos-status.yaml -------------------------------------------------------------------------------- /data/endpoints/import-videos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/import-videos.yaml -------------------------------------------------------------------------------- /data/endpoints/incoming-document-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/incoming-document-references.yaml -------------------------------------------------------------------------------- /data/endpoints/incoming-media-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/incoming-media-references.yaml -------------------------------------------------------------------------------- /data/endpoints/incoming-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/incoming-references.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-draft-2025-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-draft-2025-07.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-draft-beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-draft-beta.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-draft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-draft.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-publications-beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-publications-beta.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-publications-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-publications-v1.yaml -------------------------------------------------------------------------------- /data/endpoints/latest-publications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/latest-publications.yaml -------------------------------------------------------------------------------- /data/endpoints/media-library-serve-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/media-library-serve-image.yaml -------------------------------------------------------------------------------- /data/endpoints/patch-media-library-entry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/patch-media-library-entry.yaml -------------------------------------------------------------------------------- /data/endpoints/publication-events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/publication-events.yaml -------------------------------------------------------------------------------- /data/endpoints/publication-renditions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/publication-renditions.yaml -------------------------------------------------------------------------------- /data/endpoints/resolve-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/resolve-path.yaml -------------------------------------------------------------------------------- /data/endpoints/retresco-re-enrich.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/retresco-re-enrich.yaml -------------------------------------------------------------------------------- /data/endpoints/search-publications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/endpoints/search-publications.yaml -------------------------------------------------------------------------------- /data/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/openapi.yaml -------------------------------------------------------------------------------- /data/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/releases.json -------------------------------------------------------------------------------- /data/sections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/data/sections.yaml -------------------------------------------------------------------------------- /hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/hugo.yaml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/package.json -------------------------------------------------------------------------------- /redirects.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/redirects.map -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/renovate.json -------------------------------------------------------------------------------- /themes/hugo-docs/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | public/ 3 | -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/animations.scss: -------------------------------------------------------------------------------- 1 | $transition-time: 250ms; 2 | -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/breakpoints.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/colors-chroma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/colors-chroma.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/colors.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/materialdesignicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/materialdesignicons.css -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/mixins.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/reset.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/spaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/spaces.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/spacing-elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/spacing-elements.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/base/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/base/typography.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/anchor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/anchor.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/api-example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/api-example.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/arrow.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/article.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/badge.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/breadcrumbs.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/buttons.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/check.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/checkbox.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/code-teaser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/code-teaser.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/cols.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/cols.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/cross.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/cross.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/feature-info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/feature-info.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/flag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/flag.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/footer.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/general.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/github.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/github.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/header.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/highlight.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/history-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/history-button.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/history.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/illu-teaser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/illu-teaser.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/info.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/input-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/input-field.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/list.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/logo.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/menu-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/menu-search.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/newsletter-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/newsletter-form.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/page.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/pagination.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/pill.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/release-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/release-header.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/scopes-pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/scopes-pill.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/search-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/search-box.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/search-results-document.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/search-results-document.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/search-results-line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/search-results-line.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/search-results.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/search-results.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/section-label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/section-label.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/section-teaser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/section-teaser.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/section-teasers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/section-teasers.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/section.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/shortcut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/shortcut.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/shortcuts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/shortcuts.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/table-of-contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/table-of-contents.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/table.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/tag.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/teaser-and-code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/teaser-and-code.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/text-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/text-button.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/tip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/tip.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/topic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/topic.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/topics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/topics.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/video.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/elements/warning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/elements/warning.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/script.js -------------------------------------------------------------------------------- /themes/hugo-docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/search.js -------------------------------------------------------------------------------- /themes/hugo-docs/assets/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/style.scss -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/info.svg -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/li-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/li-docs.svg -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/li.svg -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/not-found.svg -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/repo.svg -------------------------------------------------------------------------------- /themes/hugo-docs/assets/svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/assets/svg/warning.svg -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/404.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/_default/_markup/render-blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/_default/_markup/render-blockquote.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/_default/baseof.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/_default/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/_default/section.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/_default/section.searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/_default/section.searchindex.json -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/api-reference-section/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/api-reference-section/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/changelog/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/changelog/section.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/guides/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/guides/section.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/guides/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/guides/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/home.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/index.searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/index.searchindex.json -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/metadata-plugins/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/metadata-plugins/section.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/metadata-plugins/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/metadata-plugins/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/_api-endpoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/_api-endpoints.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/_api-versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/_api-versions.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/added-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/added-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-example-resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-example-resource.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-array-matches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-array-matches.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-matches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-matches.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-range.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-selector.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-sequence.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/api-version-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/api-version-string.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/check-cross.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/check-cross.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/deprecated-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/deprecated-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/edit-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/edit-page.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/footer.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/html-header-global-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/html-header-global-meta.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/menu-children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/menu-children.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/menu.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/navigation.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/openapi-template.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/openapi-template.gotmpl -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/removed-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/removed-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/required-for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/required-for.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/partials/topbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/partials/topbar.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/redirect/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/redirect/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/release-notes/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/release-notes/section.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/release-notes/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/release-notes/single.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/robots.txt -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/a.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/added-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/added-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/anchor.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/api-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/api-version.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/check.html: -------------------------------------------------------------------------------- 1 | {{ partial "check-cross" true }} 2 | -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/cols.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner }} 3 |
4 | -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/cross.html: -------------------------------------------------------------------------------- 1 | {{ partial "check-cross" false }} 2 | -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/deprecated-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/deprecated-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/feature-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/feature-info.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/github.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/illu-teaser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/illu-teaser.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/info.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/newsletter-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/newsletter-form.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/openapi-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/openapi-list.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/openapi.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/release-notes-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/release-notes-overview.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/release.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/removed-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/removed-in.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/required-for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/required-for.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/system-versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/system-versions.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/tip.html -------------------------------------------------------------------------------- /themes/hugo-docs/layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/layouts/shortcodes/warning.html -------------------------------------------------------------------------------- /themes/hugo-docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/static/favicon.ico -------------------------------------------------------------------------------- /themes/hugo-docs/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingdocsIO/documentation/HEAD/themes/hugo-docs/theme.toml --------------------------------------------------------------------------------