Spaces:
Running
Running
sql highlight
Browse files- docs/index.md +2 -7
- docs/source.md +1 -1
docs/index.md
CHANGED
@@ -44,16 +44,11 @@ In this project, I’m exploring two aspects of the dataset:
|
|
44 |
|
45 |
This page summarizes the time distribution of the data:
|
46 |
|
47 |
-
```sql id=dates
|
|
|
48 |
SELECT year FROM presse WHERE year >= '1000'
|
49 |
```
|
50 |
|
51 |
-
````
|
52 |
-
```sql id=dates
|
53 |
-
SELECT year FROM presse WHERE year >= '1000'
|
54 |
-
```
|
55 |
-
````
|
56 |
-
|
57 |
_Note: due to the date pattern matching I’m using, unknown years are marked as 0000. Hence the filter above._
|
58 |
|
59 |
The chart below indicates that the bulk of the contents collected in this database was published between 1850 and 1950. It’s obviously not that the _presse_ stopped after 1950, but because most of the printed world after that threshold year is still out of reach of researchers, as it is “protected” by copyright or _droit d’auteur._
|
|
|
44 |
|
45 |
This page summarizes the time distribution of the data:
|
46 |
|
47 |
+
```sql id=dates echo
|
48 |
+
-- dates --
|
49 |
SELECT year FROM presse WHERE year >= '1000'
|
50 |
```
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
_Note: due to the date pattern matching I’m using, unknown years are marked as 0000. Hence the filter above._
|
53 |
|
54 |
The chart below indicates that the bulk of the contents collected in this database was published between 1850 and 1950. It’s obviously not that the _presse_ stopped after 1950, but because most of the printed world after that threshold year is still out of reach of researchers, as it is “protected” by copyright or _droit d’auteur._
|
docs/source.md
CHANGED
@@ -49,7 +49,7 @@ sql:
|
|
49 |
|
50 |
and process with [sql](https://observablehq.com/framework/sql) code blocks:
|
51 |
|
52 |
-
````
|
53 |
```sql
|
54 |
SELECT COUNT() FROM presse
|
55 |
```
|
|
|
49 |
|
50 |
and process with [sql](https://observablehq.com/framework/sql) code blocks:
|
51 |
|
52 |
+
````sql run=false
|
53 |
```sql
|
54 |
SELECT COUNT() FROM presse
|
55 |
```
|