fix: add missing legacy sequence diagram app extension

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-04-17 14:55:42 +02:00
parent 393d408dfe
commit 3face3a3b8
2 changed files with 16 additions and 1 deletions

View file

@ -0,0 +1,13 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`node to react transformer replacement will prioritize a high priority replacer over a normal priority replacer 1`] = `
<span>
Replacer X
</span>
`;
exports[`node to react transformer replacement will prioritize a normal priority replacer over a low priority replacer 1`] = `
<span>
Replacer Y
</span>
`;

View file

@ -3,6 +3,7 @@
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { LegacySequenceDiagramAppExtension } from '../external-lib-app-extensions/sequence-diagram/legacy-sequence-diagram-app-extension'
import { AlertAppExtension } from './alert/alert-app-extension'
import { BasicMarkdownSyntaxAppExtension } from './basic-markdown-syntax/basic-markdown-syntax-app-extension'
import { BlockquoteAppExtension } from './blockquote/blockquote-app-extension'
@ -39,5 +40,6 @@ export const essentialAppExtensions = [
new SpoilerAppExtension(),
new TableOfContentsAppExtension(),
new TaskListCheckboxAppExtension(),
new HeadlineAnchorsAppExtension()
new HeadlineAnchorsAppExtension(),
new LegacySequenceDiagramAppExtension()
]