diff --git a/app/src/lang/en-US/index.json b/app/src/lang/en-US/index.json index fa909b61c0..f1b467031d 100644 --- a/app/src/lang/en-US/index.json +++ b/app/src/lang/en-US/index.json @@ -923,6 +923,7 @@ "page_help_collections_detail": "**Item Detail** — A form for viewing and managing this item. This sidebar also contains a full history of revisions, and embedded comments.", "page_help_activity_browse": "**Browse Activity** — A comprehensive listing of all your user's system and content activity.", "page_help_activity_detail": "**Activity Detail** — Shows accountability info, revision data, and the update message for this activity record.", + "page_help_docs_global": "**Documentation Overview** — Docs tailored specifically to this project's version and schema.", "page_help_files_browse": "**File Library** — Lists all file assets uploaded to this project. Customize layout, filters, and sorting to tailor your view, and even save bookmarks of these different configurations for quick access.", "page_help_files_detail": "**File Detail** — A form for managing file metadata, editing the original asset, and updating access settings.", "page_help_settings_project": "**Project Settings** — Your project's global configuration options.", diff --git a/app/src/modules/docs/routes/static.vue b/app/src/modules/docs/routes/static.vue index fcd610b756..e02644a73f 100644 --- a/app/src/modules/docs/routes/static.vue +++ b/app/src/modules/docs/routes/static.vue @@ -15,6 +15,12 @@
{{ markdownWithoutTitle }}
+ + @@ -22,6 +28,7 @@ import { defineComponent, ref, computed, inject, onUpdated } from '@vue/composition-api'; import DocsNavigation from '../components/navigation.vue'; import Markdown from '../components/markdown.vue'; +import marked from 'marked'; async function getMarkdownForPath(path: string) { const pathParts = path.split('/'); @@ -76,7 +83,7 @@ export default defineComponent({ view.value?.$data.contentEl?.scrollTo({ top: 0 }); }); - return { markdown, title, markdownWithoutTitle, view }; + return { markdown, title, markdownWithoutTitle, view, marked }; }, });