Skip to content

Commit d719c29

Browse files
hatamiarash7gitbook-bot
authored andcommitted
GITBOOK-4: Arash's Feb 10 changes
1 parent 470b5ed commit d719c29

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/functions/extract-subdomain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ layout:
1414

1515
# Extract Subdomain
1616

17-
This function extracts the sub-domain from a URL. This function will use the public suffix list to extract the TLD. Check the [Extracting The Main Domain](https://github.com/hatamiarash7/duckdb-netquack#extracting-the-main-domain) section for more information about the public suffix list.
17+
This function extracts the sub-domain from a URL. This function will use the public suffix list to extract the TLD. Check the [Extracting The Main Domain](extract-domain.md) section for more information about the public suffix list.
1818

1919
```sql
2020
D SELECT extract_subdomain('http://a.b.example.com/path') as dns_record;

docs/functions/extract-tld.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ layout:
1414

1515
# Extract TLD
1616

17-
This function extracts the top-level domain from a URL. This function will use the public suffix list to extract the TLD. Check the [Extracting The Main Domain](https://github.com/hatamiarash7/duckdb-netquack#extracting-the-main-domain) section for more information about the public suffix list.
17+
This function extracts the top-level domain from a URL. This function will use the public suffix list to extract the TLD. Check the [Extracting The Main Domain](extract-domain.md) section for more information about the public suffix list.
1818

1919
```sql
2020
D SELECT extract_tld('https://example.com.ac/path/path') as tld;

docs/getting-started/publish-your-docs.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
icon: globe-pointer
2+
icon: trowel
33
layout:
44
title:
55
visible: true
@@ -21,7 +21,9 @@ layout:
2121
git clone --recurse-submodules [email protected]:hatamiarash7/duckdb-netquack.git
2222
```
2323

24-
> `--recurse-submodules` is need because Netquack has two submodules.
24+
{% hint style="info" %}
25+
`--recurse-submodules` is needed because Netquack has two submodules for DuckDB and its extension CI tools.
26+
{% endhint %}
2527

2628
#### Managing dependencies <a href="#managing-dependencies" id="managing-dependencies"></a>
2729

docs/getting-started/quickstart.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ layout:
1717

1818
### Install DuckDB
1919

20-
First, you need to install DuckDB, it is pretty easy, you can check this: [duckdb](https://duckdb.org/docs/installation/?version=stable\&environment=cli\&platform=macos\&download_method=package_manager).
20+
First, you need to install DuckDB, it is pretty easy, you can check [this page](https://duckdb.org/docs/installation/?version=stable\&environment=cli\&platform=linux\&download_method=direct\&architecture=x86_64). DuckDB is an in-process database system that offers [client APIs](https://duckdb.org/docs/api/overview) for several languages.
2121

22-
DuckDB is an in-process database system and offers client APIs for several languages: [clients api overview](https://duckdb.org/docs/api/overview)
23-
24-
The compatibility between Netquack and DuckDB varies across versions. Refer to the list below to identify the correct BlockDB version compatible with your chosen Netquack.
22+
The compatibility between Netquack and DuckDB varies across versions.
2523

2624
| Version of Netquack | Version of DuckDB |
2725
| ------------------- | ----------------- |
@@ -31,14 +29,14 @@ The compatibility between Netquack and DuckDB varies across versions. Refer to t
3129

3230
BlockDuck is one of the available DuckDB community [extensions](https://duckdb.org/community_extensions/list_of_extensions), so we can use `INSTALL`and `LOAD` to install it easily.
3331

34-
```
32+
```sql
3533
INSTALL netquack FROM community;
3634
LOAD netquack;
3735
```
3836

3937
If you previously installed the extension, upgrade using the FORCE command
4038

41-
```
39+
```sql
4240
FORCE INSTALL netquack FROM community;
4341
LOAD netquack;
4442
```

0 commit comments

Comments
 (0)