diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-19 21:55:45 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-19 21:55:45 +0900 |
| commit | 42cc93dd0f189995f29fc87d2734fc809105a7cf (patch) | |
| tree | 7a74658a76d71d4c07bf89a7028fa1786af0e13e /src/mfm | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | misskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.tar.gz misskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.tar.bz2 misskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.zip | |
fix: mochaが動かないため拡張子なしに戻した
Diffstat (limited to 'src/mfm')
| -rw-r--r-- | src/mfm/to-html.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mfm/to-html.ts b/src/mfm/to-html.ts index 6ce7d35efa..6dbcc17d29 100644 --- a/src/mfm/to-html.ts +++ b/src/mfm/to-html.ts @@ -1,9 +1,9 @@ import { JSDOM } from 'jsdom'; import * as mfm from 'mfm-js'; -import config from '@/config/index.js'; -import { intersperse } from '../prelude/array.js'; -import { IMentionedRemoteUsers } from '@/models/entities/note.js'; -import { wellKnownServices } from '../well-known-services.js'; +import config from '@/config/index'; +import { intersperse } from '../prelude/array'; +import { IMentionedRemoteUsers } from '@/models/entities/note'; +import { wellKnownServices } from '../well-known-services'; export function toHtml(nodes: mfm.MfmNode[] | null, mentionedRemoteUsers: IMentionedRemoteUsers = []) { if (nodes == null) { |