Skip to content

Commit b10e1fd

Browse files
committed
fix: add code languages
1 parent 2d95067 commit b10e1fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

sqlite-cloud/sqlite-ai/sqlite-sync/quick-starts/macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ which python3
7777
After installing Python with Homebrew, the `python` command now uses the Homebrew version.
7878
You can now load SQLite extensions in Python as shown here.
7979

80-
```
80+
```python
8181
import sqlite3
8282
import os
8383

sqlite-cloud/sqlite-ai/sqlite-sync/quick-starts/wasm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ slug: sqlite-sync-quick-start-wasm
88

99
1. Install the WebAssembly (WASM) version of SQLite with the SQLite Sync extension enabled from npm:
1010

11-
```
11+
```bash
1212
npm install @sqliteai/sqlite-wasm
1313
```
1414

1515
2. Create an HTML file that imports the SQLite WASM module using an import map and references the JavaScript loader:
1616

17-
```
17+
```html
1818
<!DOCTYPE html>
1919
<html lang="en">
2020
<head>
@@ -41,7 +41,7 @@ slug: sqlite-sync-quick-start-wasm
4141

4242
3. Create the JavaScript file (load_extension.js) that initializes the SQLite WASM worker and verifies the extension is loaded:
4343

44-
```
44+
```javascript
4545
/**
4646
* This example uses the package `@sqliteai/sqlite-wasm`.
4747
* This version of SQLite WASM is bundled with SQLite Sync and SQLite Vector extensions.

sqlite-cloud/sqlite-ai/sqlite-sync/quick-starts/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This guide explains how to install SQLite on Windows with support for loading ex
3232

3333
5. **Load Extension**
3434

35-
```
35+
```python
3636
import sqlite3
3737
import os
3838

0 commit comments

Comments
 (0)