diff --git a/.github/ISSUE_TEMPLATE/docs_audit_results.md b/.github/ISSUE_TEMPLATE/docs_audit_results.md index 1276da129..c33caace2 100644 --- a/.github/ISSUE_TEMPLATE/docs_audit_results.md +++ b/.github/ISSUE_TEMPLATE/docs_audit_results.md @@ -2,7 +2,7 @@ name: Docs audit results about: Template for a formal technical documentation audits run by OP Labs title: "[2024 Q4 Audit] [page-path]" -labels: 'docs-audit-2024-Q4,op-labs' +labels: ['docs-audit-2024-Q4', 'op-labs'] --- diff --git a/notes/content-reuse.md b/notes/content-reuse.md index 7bc43516a..1aded0946 100644 --- a/notes/content-reuse.md +++ b/notes/content-reuse.md @@ -18,7 +18,7 @@ Create a `.md` file in the `/content` directory. import DescriptionShort from '@/content/DescriptionShort.md' ``` -1. Use it within the file +2. Use it within the file ``` Text before @@ -38,7 +38,7 @@ export { default as ComponentA } from './ComponentA.md' export { default as ComponentB } from './ComponentB.md' ``` -1. Import it at the top of `.mdx` file: +2. Import it at the top of `.mdx` file: ``` import {ComponentA, ComponentB} from '@/content/index.js'