Skip to content

Commit b860777

Browse files
authored
Merge pull request #119 from iamacup/v-up
version up
2 parents f91ecb8 + aee12eb commit b860777

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-markdown-display",
3-
"version": "6.1.6",
3+
"version": "7.0.0-alpha",
44
"description": "Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer), originally created by Mient-jan Stelling as react-native-markdown-renderer",
55
"main": "src/index.js",
66
"types": "src/index.d.ts",

src/lib/styles.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export const styles = {
5050

5151
// Blockquotes
5252
blockquote: {
53-
backgroundColor: "#F5F5F5",
54-
borderColor: "#CCC",
53+
backgroundColor: '#F5F5F5',
54+
borderColor: '#CCC',
5555
borderLeftWidth: 4,
5656
marginLeft: 5,
5757
paddingHorizontal: 5,
@@ -93,11 +93,11 @@ export const styles = {
9393
padding: 10,
9494
borderRadius: 4,
9595
...Platform.select({
96-
["ios"]: {
97-
fontFamily: "Courier",
96+
['ios']: {
97+
fontFamily: 'Courier',
9898
},
99-
["android"]: {
100-
fontFamily: "monospace",
99+
['android']: {
100+
fontFamily: 'monospace',
101101
},
102102
}),
103103
},
@@ -108,11 +108,11 @@ export const styles = {
108108
padding: 10,
109109
borderRadius: 4,
110110
...Platform.select({
111-
["ios"]: {
112-
fontFamily: "Courier",
111+
['ios']: {
112+
fontFamily: 'Courier',
113113
},
114-
["android"]: {
115-
fontFamily: "monospace",
114+
['android']: {
115+
fontFamily: 'monospace',
116116
},
117117
}),
118118
},
@@ -123,11 +123,11 @@ export const styles = {
123123
padding: 10,
124124
borderRadius: 4,
125125
...Platform.select({
126-
["ios"]: {
127-
fontFamily: "Courier",
126+
['ios']: {
127+
fontFamily: 'Courier',
128128
},
129-
["android"]: {
130-
fontFamily: "monospace",
129+
['android']: {
130+
fontFamily: 'monospace',
131131
},
132132
}),
133133
},

0 commit comments

Comments
 (0)