Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 16 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | var Remarkable = require('remarkable'); |
||
2 | var md = new Remarkable({ |
||
3 | linkify: true, |
||
4 | html: true |
||
5 | }); |
||
6 | |||
7 | export default { |
||
8 | data: function () { |
||
9 | return { |
||
10 | /** |
||
11 | * Parse markdown. |
||
12 | */ |
||
13 | md: md |
||
14 | } |
||
15 | }, |
||
16 | } |
||
17 |