Skip to content

Commit

Permalink
chore: Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jan 19, 2024
1 parent d2a3343 commit d6fd802
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 18 deletions.
1 change: 1 addition & 0 deletions docs/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"index": "Introduction",
"quick-start": "",
"options": "",
"examples": "",
"-- RelatedPlugin": {
"type": "separator",
"title": "Related Plugins"
Expand Down
16 changes: 16 additions & 0 deletions docs/pages/examples.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Cards, Card } from 'nextra/components';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import { faBolt } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

# Examples

<Cards num={2}>
<Card
title="View on Github"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/tgreyuk/typedoc-plugin-markdown-examples/tree/main/examples/01-typedoc-plugin-markdown"
target="_blank"
/>
</Cards>
16 changes: 0 additions & 16 deletions docs/pages/index.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import pjson from '../../packages/typedoc-plugin-markdown/package.json';
import { Cards, Card } from 'nextra/components';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import { faBolt } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

# typedoc-plugin-markdown

Expand All @@ -22,15 +18,3 @@ Markdown output is useful when documentation is to be included in project README
- Works alongside other TypeDoc plugins.
- Configurable output file structure.
- Configurable UI options

## Examples

<Cards num={1}>
<Card
title="View on Github"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/tgreyuk/typedoc-plugin-markdown-examples/tree/main/examples/core"
target="_blank"
/>
</Cards>
3 changes: 2 additions & 1 deletion docs/pages/utilities/frontmatter/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"quick-start": "",
"options": "",
"guide": "Guide"
"guide": "Guide",
"examples": ""
}
16 changes: 16 additions & 0 deletions docs/pages/utilities/frontmatter/examples.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Cards, Card } from 'nextra/components';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import { faBolt } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

# Examples

<Cards num={2}>
<Card
title="View on Github"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/tgreyuk/typedoc-plugin-markdown-examples/tree/main/examples/02-typedoc-plugin-frontmatter"
target="_blank"
/>
</Cards>
3 changes: 2 additions & 1 deletion docs/pages/utilities/remark/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"quick-start": "",
"options": "",
"suggested-plugins": ""
"suggested-plugins": "",
"examples": ""
}
16 changes: 16 additions & 0 deletions docs/pages/utilities/remark/examples.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Cards, Card } from 'nextra/components';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import { faBolt } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

# Examples

<Cards num={2}>
<Card
title="View on Github"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/tgreyuk/typedoc-plugin-markdown-examples/tree/main/examples/03-typedoc-plugin-remark"
target="_blank"
/>
</Cards>
1 change: 1 addition & 0 deletions docs/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export default {
titleTemplate: `${title || 'Introduction'} • typedoc-plugin-markdown`,
};
},
feedback: { content: null },
navigation: {
prev: true,
next: true,
Expand Down

0 comments on commit d6fd802

Please sign in to comment.