Skip to content

Commit e738f1e

Browse files
committed
refactor: formatting
1 parent 8105030 commit e738f1e

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

docs/docs/fundamentals/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ renders the input's output. Both speak HTML - the input
2323
produces it, the display consumes it.
2424

2525
Not only does this library allow you to apply basic rich text styles you know well,
26-
like *bold* or _italic_, but also provides more powerful tools like `mentions`, something
26+
like _bold_ or _italic_, but also provides more powerful tools like _mentions_, something
2727
you will learn more about in the next chapters.
2828

2929
## Prerequisites

docs/docs/fundamentals/your-first-editor.mdx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ export default function App() {
3434
}
3535

3636
const styles = StyleSheet.create({
37-
container: { gap: 12 },
37+
container: {
38+
gap: 12
39+
},
3840
input: {
3941
fontSize: 18,
4042
color: '#232736',
@@ -79,7 +81,9 @@ export default function App() {
7981
}
8082

8183
const styles = StyleSheet.create({
82-
container: { gap: 12 },
84+
container: {
85+
gap: 12
86+
},
8387
input: {
8488
fontSize: 18,
8589
color: '#232736',
@@ -147,7 +151,9 @@ export default function App() {
147151
}
148152

149153
const styles = StyleSheet.create({
150-
container: { gap: 12 },
154+
container: {
155+
gap: 12
156+
},
151157
input: {
152158
fontSize: 18,
153159
color: '#232736',

0 commit comments

Comments
 (0)