Skip to content

Commit

Permalink
chore(docs): updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jun 23, 2024
1 parent 2264f02 commit 668a0b0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This project is a collection of packages designed for generate TypeScript API documentation as Markdown.

## Documentation

Please see [typedoc-plugin-markdown.org](https://typedoc-plugin-markdown.org).

## Packages

| Package | Version | Downloads | Changelog
Expand All @@ -14,10 +18,6 @@ This project is a collection of packages designed for generate TypeScript API do
[typedoc-vitepress-theme](./packages/typedoc-vitepress-theme#readme) | [![npm](https://img.shields.io/npm/v/typedoc-vitepress-theme.svg?logo=npm)](https://www.npmjs.com/package/typedoc-vitepress-theme) | ![Downloads](https://img.shields.io/npm/dw/typedoc-vitepress-theme?label=↓) | [Changelog](./packages/typedoc-vitepress-theme/CHANGELOG.md) |
[docusaurus-plugin-typedoc](./packages/docusaurus-plugin-typedoc#readme) | [![npm](https://img.shields.io/npm/v/docusaurus-plugin-typedoc.svg?logo=npm)](https://www.npmjs.com/package/docusaurus-plugin-typedoc) | ![Downloads](https://img.shields.io/npm/dw/docusaurus-plugin-typedoc?label=↓) | [Changelog](./packages/docusaurus-plugin-typedoc/CHANGELOG.md) |

## Documentation

Please see [typedoc-plugin-markdown.org](https://typedoc-plugin-markdown.org).

## Contributing

If you would like to contribute towards this project please read the [contributing guide](./CONTRIBUTING.md).
Expand Down
12 changes: 6 additions & 6 deletions devtools/scripts/generate-readmes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ function writeRepositoryReadme(packages: any) {
'This project is a collection of packages designed for generate TypeScript API documentation as Markdown.',
);

readme.push('## Documentation');

readme.push(
'Please see [typedoc-plugin-markdown.org](https://typedoc-plugin-markdown.org).',
);

readme.push('## Packages');
const headers: string[] = [];
headers.push('| Package | Version | Downloads | Changelog ');
Expand All @@ -60,12 +66,6 @@ function writeRepositoryReadme(packages: any) {

readme.push(table.join('\n'));

readme.push('## Documentation');

readme.push(
'Please see [typedoc-plugin-markdown.org](https://typedoc-plugin-markdown.org).',
);

readme.push('## Contributing');

readme.push(
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/plugins/docusaurus.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The following is a simple example of a Docusaurus project running TypeDoc.
title="View Code on GitHub"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/examples/integrations/docusaurus"
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/integrations/docusaurus"
target="_blank"
/>
</Cards>
2 changes: 1 addition & 1 deletion docs/pages/plugins/github-wiki.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The following is a simple example of a GithubWiki project running TypeDoc.
title="View Source on Github"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/examples/integrations/github-wiki"
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/integrations/github-wiki"
target="_blank"
/>
</Cards>
2 changes: 1 addition & 1 deletion docs/pages/plugins/vitepress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The following is a simple example of a VitePress project running TypeDoc.
title="View Code on GitHub"
icon={<FontAwesomeIcon icon={faGithub} />}
arrow={true}
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/examples/integrations/vitepress"
href="https://github.com/typedoc2md/typedoc-plugin-markdown-examples/tree/main/integrations/vitepress"
target="_blank"
/>
</Cards>

0 comments on commit 668a0b0

Please sign in to comment.