Skip to content

Commit e048a3a

Browse files
committed
Fixed image layout
1 parent 8948048 commit e048a3a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ and atomic transactions. It eliminates ambiguity by forbidding NULLs.
9494
complicate future queries (more on this later)
9595

9696
4. Solution: Normalize the data by breaking it into multiple tables
97-
![](images/animals_half.png =50%x) ![](images/sightings_half.png =50%x)
97+
98+
| Animals | Sightings |
99+
|------------------------------|--------------------------------|
100+
| ![](images/animals_half.png) | ![](images/sightings_half.png) |
98101

99102
- Every row of every table contains unique information
100103
- Normalization is a continuum. We could normalize this data

README.org

+6-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ There are two aspects of "correctness": Enforcing consistency and eliminating am
3636
- Storing multidimensional data in a single table increases the chance that your records will have NULL fields, which will complicate future queries (more on this later)
3737

3838
4. Solution: Normalize the data by breaking it into multiple tables
39-
[[file:images/animals_half.png =50%x]] [[file:images/sightings_half.png =50%x]]
39+
40+
| Animals | Sightings |
41+
|----------------------------------+------------------------------------+
42+
| [[file:images/animals_half.png]] | [[file:images/sightings_half.png]] |
4043

4144
- Every row of every table contains unique information
4245
- Normalization is a continuum. We could normalize this data further, but there is a trade-off in terms of sane table management. Finding the correct trade-off is a matter of taste, judgment, and domain-specific knowledge.
@@ -573,3 +576,5 @@ pandoc -f markdown --toc --toc-depth=2 -s tmp.md -o README.md
573576
M-x qrr " {.python}" "python"
574577
M-x qrr " {.bash}" "bash"
575578
#+END_EXAMPLE
579+
580+
** Fix any tables

0 commit comments

Comments
 (0)