The New Article screen is accessible atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/lo/knowledge/articles/new and provides an article creation form with a rich text editor, type selector, category selector, tag field, and publish/draft controls.
Overview
TheKnowledgeArticleEditorPage is used for both creating and editing articles. When the URL is /lo/knowledge/articles/new, isNew is true and no existing article is loaded. The form collects: title, slug, summary, content (via RichContentEditor), article type (process, best_practice, training, faq, policy, general), category (from useKnowledgeCategories), tags (comma-separated string), and two toggles (likely for featured/published status — confirm with SME). On submit, createArticle from useKnowledgeArticleMutation is called. The breadcrumb shows “New Article”.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating articles uses lo.knowledge.create.
Before you start
lo.dashboard.viewandlo.knowledge.createpermissions required.- Categories must be configured to assign the article to a category.
Steps
Navigate to New Article
Go to
/lo/knowledge/articles/new or select “New Article” from the Knowledge Portal.Key concepts
- ArticleType values:
process,best_practice,training,faq,policy,general. - RichContentEditor: the rich text editor component for article body content.
- slug: URL-friendly identifier for the article.
Related
Leadership
Leadership core overview.
Governance & parity
Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/lo.tsx
- src/cores/lo/pages/KnowledgeArticleEditorPage.tsx
- src/cores/lo/hooks/useKnowledgeArticles.ts
- src/cores/lo/hooks/useKnowledgeCategories.ts