aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-05-31 11:01:42 +0200
committerChocobozzz <me@florianbigard.com>2021-05-31 11:01:42 +0200
commit15f35256af15b97d2298cc44e76ffcafe73a1c88 (patch)
treec90887f52c56d4107d956396ab19aafe04e700e6 /client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts
parent462271edd693cffb9242ca1e33d64cb0423e4b29 (diff)
downloadPeerTube-15f35256af15b97d2298cc44e76ffcafe73a1c88.tar.gz
PeerTube-15f35256af15b97d2298cc44e76ffcafe73a1c88.tar.zst
PeerTube-15f35256af15b97d2298cc44e76ffcafe73a1c88.zip
Add help to custom markdown textarea
Diffstat (limited to 'client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts')
-rw-r--r--client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts b/client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts
index d03aa856f..66f6b98f6 100644
--- a/client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts
+++ b/client/src/app/shared/shared-custom-markup/shared-custom-markup.module.ts
@@ -1,4 +1,3 @@
1
2import { CommonModule } from '@angular/common' 1import { CommonModule } from '@angular/common'
3import { NgModule } from '@angular/core' 2import { NgModule } from '@angular/core'
4import { SharedActorImageModule } from '../shared-actor-image/shared-actor-image.module' 3import { SharedActorImageModule } from '../shared-actor-image/shared-actor-image.module'
@@ -8,6 +7,7 @@ import { SharedVideoMiniatureModule } from '../shared-video-miniature'
8import { SharedVideoPlaylistModule } from '../shared-video-playlist' 7import { SharedVideoPlaylistModule } from '../shared-video-playlist'
9import { ButtonMarkupComponent } from './button-markup.component' 8import { ButtonMarkupComponent } from './button-markup.component'
10import { ChannelMiniatureMarkupComponent } from './channel-miniature-markup.component' 9import { ChannelMiniatureMarkupComponent } from './channel-miniature-markup.component'
10import { CustomMarkupHelpComponent } from './custom-markup-help.component'
11import { CustomMarkupService } from './custom-markup.service' 11import { CustomMarkupService } from './custom-markup.service'
12import { DynamicElementService } from './dynamic-element.service' 12import { DynamicElementService } from './dynamic-element.service'
13import { EmbedMarkupComponent } from './embed-markup.component' 13import { EmbedMarkupComponent } from './embed-markup.component'
@@ -32,7 +32,8 @@ import { VideosListMarkupComponent } from './videos-list-markup.component'
32 ChannelMiniatureMarkupComponent, 32 ChannelMiniatureMarkupComponent,
33 EmbedMarkupComponent, 33 EmbedMarkupComponent,
34 VideosListMarkupComponent, 34 VideosListMarkupComponent,
35 ButtonMarkupComponent 35 ButtonMarkupComponent,
36 CustomMarkupHelpComponent
36 ], 37 ],
37 38
38 exports: [ 39 exports: [
@@ -41,7 +42,8 @@ import { VideosListMarkupComponent } from './videos-list-markup.component'
41 ChannelMiniatureMarkupComponent, 42 ChannelMiniatureMarkupComponent,
42 VideosListMarkupComponent, 43 VideosListMarkupComponent,
43 EmbedMarkupComponent, 44 EmbedMarkupComponent,
44 ButtonMarkupComponent 45 ButtonMarkupComponent,
46 CustomMarkupHelpComponent
45 ], 47 ],
46 48
47 providers: [ 49 providers: [