File tree 4 files changed +30
-20
lines changed
4 files changed +30
-20
lines changed Original file line number Diff line number Diff line change 1
- import { Pipe , PipeTransform } from '@angular/core' ;
2
- import marked = require( 'marked' ) ;
1
+ export * from './src/markdown-to-html.pipe' ;
3
2
4
- @Pipe ( {
5
- name : 'MarkdownToHtml'
6
- } )
7
-
8
- export class MarkdownToHtmlPipe implements PipeTransform {
9
- public transform ( markdown : string , options ?: MarkedOptions ) : string {
10
- if ( markdown == null ) return '' ;
11
- return marked ( markdown , options ) ;
12
- }
3
+ import { NgModule } from '@angular/core' ;
4
+ import { MarkdownToHtmlPipe } from './src/markdown-to-html.pipe' ;
13
5
14
- public static setOptions ( options : MarkedOptions ) : void {
15
- marked . setOptions ( options ) ;
16
- }
17
- }
6
+ @NgModule ( {
7
+ declarations : [ MarkdownToHtmlPipe ] ,
8
+ exports : [ MarkdownToHtmlPipe ]
9
+ } )
10
+ export class MarkdownToHtmlModule { }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " markdown-to-html-pipe" ,
3
- "version" : " 1.0 .2" ,
3
+ "version" : " 1.1 .2" ,
4
4
"description" : " Angular 2 Pipe that transforms a markdown string to HTML" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
25
25
},
26
26
"homepage" : " https://github.com/conclurer/markdown-to-html-pipe#readme" ,
27
27
"devDependencies" : {
28
- "@angular/core" : " ^2.0.0-rc.6 " ,
28
+ "@angular/core" : " ^2.0.0" ,
29
29
"@types/es6-shim" : " 0.0.29" ,
30
30
"@types/marked" : " 0.0.27" ,
31
31
"@types/tape" : " ^4.2.27" ,
32
32
"reflect-metadata" : " ^0.1.8" ,
33
- "rxjs" : " ^5.0.0-beta.11 " ,
33
+ "rxjs" : " ^5.0.0-beta.12 " ,
34
34
"tape" : " ^4.6.0" ,
35
35
"tslint" : " ^3.14.0" ,
36
36
"typescript" : " ^2.0.0" ,
37
37
"zone.js" : " ^0.6.14"
38
38
},
39
39
"peerDependencies" : {
40
- "@angular/core" : " ^2.0.0-rc.6 "
40
+ "@angular/core" : " ^2.0.0"
41
41
},
42
42
"dependencies" : {
43
43
"marked" : " ^0.3.6"
Original file line number Diff line number Diff line change
1
+ import { Pipe , PipeTransform } from '@angular/core' ;
2
+ import marked = require( 'marked' ) ;
3
+
4
+ @Pipe ( {
5
+ name : 'MarkdownToHtml'
6
+ } )
7
+
8
+ export class MarkdownToHtmlPipe implements PipeTransform {
9
+ public transform ( markdown : string , options ?: MarkedOptions ) : string {
10
+ if ( markdown == null ) return '' ;
11
+ return marked ( markdown , options ) ;
12
+ }
13
+
14
+ public static setOptions ( options : MarkedOptions ) : void {
15
+ marked . setOptions ( options ) ;
16
+ }
17
+ }
Original file line number Diff line number Diff line change 6
6
"sourceMap" : false ,
7
7
"experimentalDecorators" : true ,
8
8
"strictNullChecks" : false ,
9
- "declaration" : true
9
+ "declaration" : false
10
10
},
11
11
"exclude" : [
12
12
" node_modules"
You can’t perform that action at this time.
0 commit comments