You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DEVELOPERS.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,3 +93,20 @@ can be displayed. For example, the following command creates a
93
93
```bash
94
94
dot -Tpdf < /tmp/plan.dot > /tmp/plan.pdf
95
95
```
96
+
97
+
## How to format `.md` document
98
+
99
+
We are using `prettier` to format `.md` files.
100
+
101
+
You can either use `npm i -g prettier` to install it globally or use `npx` to run it as a standalone binary. Using `npx` required a working node environment. Upgrading to the latest prettier is recommended (by adding `--upgrade` to the `npm` command).
102
+
103
+
```bash
104
+
$ prettier --version
105
+
2.3.0
106
+
```
107
+
108
+
After you've confirmed your prettier version, you can format all the `.md` files:
Copy file name to clipboardExpand all lines: datafusion-examples/examples/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,4 +25,4 @@ The examples `csv_sql.rs` and `parquet_sql.rs` demonstrate building a query plan
25
25
26
26
## Distributed
27
27
28
-
The `flight-client.rs` and `flight-server.rs` examples demonstrate how to run DataFusion as a standalone process and execute SQL queries from a client using the Flight protocol.
28
+
The `flight-client.rs` and `flight-server.rs` examples demonstrate how to run DataFusion as a standalone process and execute SQL queries from a client using the Flight protocol.
0 commit comments