Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-markdown-display",
"version": "6.1.6",
"version": "7.0.0-alpha",
"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",
"main": "src/index.js",
"types": "src/index.d.ts",
Expand Down
28 changes: 14 additions & 14 deletions src/lib/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export const styles = {

// Blockquotes
blockquote: {
backgroundColor: "#F5F5F5",
borderColor: "#CCC",
backgroundColor: '#F5F5F5',
borderColor: '#CCC',
borderLeftWidth: 4,
marginLeft: 5,
paddingHorizontal: 5,
Expand Down Expand Up @@ -93,11 +93,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand All @@ -108,11 +108,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand All @@ -123,11 +123,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand Down