chore: make valid mdx when transpiling

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-02-21 15:26:17 +01:00
parent c1123875ce
commit 8f980890b5
2 changed files with 3 additions and 3 deletions
@@ -100,7 +100,7 @@ export class TestApiRegistry implements ApiHolder {
* [identityApiRef, mockIdentityApi as unknown as IdentityApi]
* ])}
* >
* {...}
* // ...
* </ApiProvider>
* )
* ```
@@ -110,7 +110,7 @@ export class TestApiRegistry implements ApiHolder {
* ```tsx
* renderInTestApp(
* <TestApiProvider apis={[[identityApiRef, mockIdentityApi]]}>
* {...}
* // ...
* </TestApiProvider>
* )
* ```
@@ -19,7 +19,7 @@ import { getSemverTagParts } from './getSemverTagParts';
import { Project } from '../../contexts/ProjectContext';
/**
* Tag parts are the individual parts of a version, e.g. <major>.<minor>.<patch>
* Tag parts are the individual parts of a version, e.g. [major].[minor].[patch]
* are the parts of a semantic version
*
* @public