@khanacademy/pure-markdown 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @khanacademy/pure-markdown
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6a7f36be]
8
+ - @khanacademy/perseus-error@0.1.4
9
+
3
10
  ## 0.1.3
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "SimpleMarkdown instance with non-react Perseus rules",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "0.1.3",
6
+ "version": "0.1.4",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -21,7 +21,7 @@
21
21
  "test": "bash -c 'yarn --silent --cwd \"../..\" test ${@:0} $($([[ ${@: -1} = -* ]] || [[ ${@: -1} = bash ]]) && echo $PWD)'"
22
22
  },
23
23
  "dependencies": {
24
- "@khanacademy/perseus-error": "^0.1.3",
24
+ "@khanacademy/perseus-error": "^0.1.4",
25
25
  "@khanacademy/simple-markdown": "^0.8.6"
26
26
  },
27
27
  "devDependencies": {},
@@ -1,94 +1,94 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`pure markdown parser should parse titled table with unescaped dollars 1`] = `
4
- Array [
5
- Object {
6
- "table": Object {
7
- "align": Array [
4
+ [
5
+ {
6
+ "table": {
7
+ "align": [
8
8
  null,
9
9
  null,
10
10
  null,
11
11
  ],
12
- "cells": Array [
13
- Array [
14
- Array [
15
- Object {
12
+ "cells": [
13
+ [
14
+ [
15
+ {
16
16
  "content": "data 1",
17
17
  "type": "text",
18
18
  },
19
19
  ],
20
- Array [
21
- Object {
20
+ [
21
+ {
22
22
  "content": "data 2",
23
23
  "type": "text",
24
24
  },
25
25
  ],
26
- Array [
27
- Object {
26
+ [
27
+ {
28
28
  "content": "data 3",
29
29
  "type": "text",
30
30
  },
31
31
  ],
32
32
  ],
33
- Array [
34
- Array [
35
- Object {
33
+ [
34
+ [
35
+ {
36
36
  "content": "data 4",
37
37
  "type": "text",
38
38
  },
39
39
  ],
40
- Array [
41
- Object {
40
+ [
41
+ {
42
42
  "type": "unescapedDollar",
43
43
  },
44
- Object {
44
+ {
45
45
  "content": "data 5",
46
46
  "type": "text",
47
47
  },
48
48
  ],
49
- Array [
50
- Object {
49
+ [
50
+ {
51
51
  "content": "data 6",
52
52
  "type": "text",
53
53
  },
54
54
  ],
55
55
  ],
56
- Array [
57
- Array [
58
- Object {
56
+ [
57
+ [
58
+ {
59
59
  "content": "data 7",
60
60
  "type": "text",
61
61
  },
62
62
  ],
63
- Array [
64
- Object {
63
+ [
64
+ {
65
65
  "content": "data 8",
66
66
  "type": "text",
67
67
  },
68
68
  ],
69
- Array [
70
- Object {
69
+ [
70
+ {
71
71
  "content": "data 9",
72
72
  "type": "text",
73
73
  },
74
74
  ],
75
75
  ],
76
76
  ],
77
- "header": Array [
78
- Array [
79
- Object {
77
+ "header": [
78
+ [
79
+ {
80
80
  "content": "header 1",
81
81
  "type": "text",
82
82
  },
83
83
  ],
84
- Array [
85
- Object {
84
+ [
85
+ {
86
86
  "content": "header 2",
87
87
  "type": "text",
88
88
  },
89
89
  ],
90
- Array [
91
- Object {
90
+ [
91
+ {
92
92
  "content": "header 3",
93
93
  "type": "text",
94
94
  },
@@ -96,10 +96,10 @@ Array [
96
96
  ],
97
97
  "type": "table",
98
98
  },
99
- "title": Array [
100
- Object {
101
- "content": Array [
102
- Object {
99
+ "title": [
100
+ {
101
+ "content": [
102
+ {
103
103
  "content": "Table title",
104
104
  "type": "text",
105
105
  },