Skip to content

Commit d23014b

Browse files
fix formatting
1 parent 29b5063 commit d23014b

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

how_to_write_good_articles.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,18 @@ Graphics and code snippets are more effective than text. Whenever possible, use
4747

4848
❌ Don't: Use only text to explain.
4949

50-
```
51-
DuckDB is a fast, in-process SQL OLAP database management system. It supports standard SQL queries on Parquet and CSV files, and provides seamless integration with Python DataFrames. DuckDB is useful for analytics workloads on local data without needing a server.
52-
```
50+
> DuckDB is a fast, in-process SQL OLAP database management system. It supports standard SQL queries on Parquet and CSV files, and provides seamless integration with Python DataFrames. DuckDB is useful for analytics workloads on local data without needing a server.
5351
5452
✅ Do: Use both text and code snippets to explain.
5553

56-
```
57-
You can query a Parquet file directly using DuckDB with a single line of SQL:
58-
59-
```python
60-
import duckdb
61-
62-
duckdb.query("SELECT COUNT(*) FROM 'data.parquet'").show()
63-
```
64-
65-
This runs a SQL query on a local Parquet file without needing to load it into memory first.
66-
```
54+
> You can query a Parquet file directly using DuckDB with a single line of SQL:
55+
>
56+
>```python
57+
>import duckdb
58+
>duckdb.query("SELECT COUNT(*) FROM 'data.parquet'").show()
59+
>```
60+
>
61+
> This runs a SQL query on a local Parquet file without needing to load it into memory first.
6762
6863
### Keep Paragraphs Short
6964

0 commit comments

Comments
 (0)