diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-31 17:47:36 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-31 17:51:04 +0100 |
commit | 36f9424ff192b0584a433bc196bced6fcf265808 (patch) | |
tree | 35d9fa5c53b228f5e7fc27bcc82854d035e9dde8 /client/src/app/videos/shared | |
parent | 66b16cafb380012d3eca14e524d86f2450e04069 (diff) | |
download | PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.tar.gz PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.tar.zst PeerTube-36f9424ff192b0584a433bc196bced6fcf265808.zip |
Add about page
Diffstat (limited to 'client/src/app/videos/shared')
-rw-r--r-- | client/src/app/videos/shared/markdown.service.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/videos/shared/markdown.service.ts b/client/src/app/videos/shared/markdown.service.ts index fd0330f9b..3f51a82ce 100644 --- a/client/src/app/videos/shared/markdown.service.ts +++ b/client/src/app/videos/shared/markdown.service.ts | |||
@@ -7,12 +7,13 @@ export class MarkdownService { | |||
7 | private markdownIt: MarkdownIt.MarkdownIt | 7 | private markdownIt: MarkdownIt.MarkdownIt |
8 | 8 | ||
9 | constructor () { | 9 | constructor () { |
10 | this.markdownIt = new MarkdownIt('zero', { linkify: true }) | 10 | this.markdownIt = new MarkdownIt('zero', { linkify: true, breaks: true }) |
11 | .enable('linkify') | 11 | .enable('linkify') |
12 | .enable('autolink') | 12 | .enable('autolink') |
13 | .enable('emphasis') | 13 | .enable('emphasis') |
14 | .enable('link') | 14 | .enable('link') |
15 | .enable('newline') | 15 | .enable('newline') |
16 | .enable('list') | ||
16 | 17 | ||
17 | this.setTargetToLinks() | 18 | this.setTargetToLinks() |
18 | } | 19 | } |