Skip to content

Commit

Permalink
Merge branch 'master' into message_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatnema authored Nov 9, 2022
2 parents a7822bf + 17d0a7e commit 791996b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/features/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function Features() {
{feature.links.map((link) => {
return (
<Link href={link.href} key={link.label}>
<TextLink href={link.href} className="mt-6 inline-block">
<TextLink id={link.id} href={link.href} className="mt-6 inline-block">
{link.label}
</TextLink>
</Link>
Expand Down
5 changes: 3 additions & 2 deletions components/typography/TextLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ export default function TextLink({
href,
className,
target,
children
children,
id
}) {

const classNames = `text-secondary-500 underline hover:text-gray-800 font-medium transition ease-in-out duration-300 ${className || ''}`
Expand All @@ -12,7 +13,7 @@ export default function TextLink({
<>
{' '}
<Link href={href}>
<a target={target} rel="noreferrer noopener" className={classNames}>
<a id={id} target={target} rel="noreferrer noopener" className={classNames}>
{children}
</a>
</Link>
Expand Down
4 changes: 2 additions & 2 deletions pages/docs/tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The following is a list of tools that generate human-readable documentation from
| Link | Description | Language/Kind |
| :------------- | :------------- | :------------- |
| [AsyncAPI Generator](https://github.com/asyncapi/generator) | Use your AsyncAPI definition to generate literally anything. Markdown documentation, Node.js code, HTML documentation, anything! **[Click here](https://github.com/search?q=topic%3Aasyncapi+topic%3Agenerator+topic%3Atemplate) to get a list of the existing templates**. | CLI / JavaScript
| [Bump](https://bump.sh) | OpenAPI 2 & 3 / AsyncAPI 2 documentation generator, with automatic changelog and visual diff. | SaaS
| [Bump.sh](https://bump.sh) | OpenAPI 2 & 3 / AsyncAPI 2 documentation generator, with automatic changelog and visual diff. | SaaS
| [Widdershins](https://github.com/Mermade/widdershins) | OpenAPI 3.0 / Swagger 2.0 / AsyncAPI 1.0 definition to Slate / Shins compatible markdown. Thanks to [@PermittedSoc](https://twitter.com/@Permittedsoc). | CLI / JavaScript
| [Cupid](https://github.com/asyncapi/cupid) | A library that focuses on finding and analyzing the relationships between AsyncAPI documents. It outputs a map of the system architecture. | JavaScript

Expand Down Expand Up @@ -128,7 +128,7 @@ The following is a list of [GitHub Actions](https://github.com/features/actions)
| :------------- | :------------- |
| [AsyncAPI GitHub Action](https://github.com/marketplace/actions/asyncapi-github-action) | This action validates if the AsyncAPI schema file is valid or not.
| [Generator for AsyncAPI documents](https://github.com/marketplace/actions/generator-for-asyncapi-documents) | This action generates whatever you want using your AsyncAPI document. It uses [AsyncAPI Generator](https://github.com/asyncapi/generator).
| [API documentation on Bump](https://github.com/marketplace/actions/api-documentation-on-bump) | With this GitHub Action you can automatically generate your API reference (with the changelog and diff) on [Bump](https://bump.sh) from any AsyncAPI file.
| [API documentation generation on Bump.sh](https://github.com/marketplace/actions/api-documentation-on-bump) | With this GitHub Action you can automatically generate your API reference (with the changelog and diff) on [Bump.sh](https://bump.sh) from any AsyncAPI file.
| [Automated version bump for AsyncAPI documents](https://github.com/marketplace/actions/automated-version-bump-for-asyncapi) | With this GitHub Action, you can automatically bump the version based on commit messages, which is similar to what semantic-release is for NPM. |

## Mocking and Testing {#mocking}
Expand Down

0 comments on commit 791996b

Please sign in to comment.