Commit 85bb30c 1 parent 90030ec commit 85bb30c Copy full SHA for 85bb30c
File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ module.exports = {
23
23
table : require ( './table' ) ,
24
24
text : require ( './text' ) ,
25
25
thematicBreak : require ( './thematic-break' ) ,
26
+ toml : ignore ,
26
27
yaml : ignore ,
27
28
definition : ignore ,
28
29
footnoteDefinition : ignore
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ require('./strong.js');
27
27
require ( './table.js' ) ;
28
28
require ( './text.js' ) ;
29
29
require ( './thematic-break.js' ) ;
30
+ require ( './toml.js' ) ;
30
31
require ( './yaml.js' ) ;
31
32
32
33
require ( './handlers-option.js' ) ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var test = require ( 'tape' ) ;
4
+ var u = require ( 'unist-builder' ) ;
5
+ var to = require ( '..' ) ;
6
+
7
+ test ( 'TOML' , function ( t ) {
8
+ t . equal (
9
+ to ( u ( 'toml' , 'kilo: "lima"' ) ) ,
10
+ null ,
11
+ 'should ignore `toml`'
12
+ ) ;
13
+
14
+ t . end ( ) ;
15
+ } ) ;
You can’t perform that action at this time.
0 commit comments