mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix: add missing legacy sequence diagram app extension
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
393d408dfe
commit
3face3a3b8
2 changed files with 16 additions and 1 deletions
|
@ -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>
|
||||
`;
|
|
@ -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()
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue