Greg Wilson commited on
Commit
806c8fe
·
1 Parent(s): 1a93371

fix: use GitHub URLs for images

Browse files
sql/01_basic_select.py CHANGED
@@ -345,7 +345,7 @@ def _():
345
  mo.md(r"""
346
  ## Check Understanding
347
 
348
- ![concept map](public/01_concepts.svg)
349
  """)
350
  return
351
 
 
345
  mo.md(r"""
346
  ## Check Understanding
347
 
348
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/01_concepts.svg)
349
  """)
350
  return
351
 
sql/02_filter.py CHANGED
@@ -281,7 +281,7 @@ def _():
281
  mo.md(r"""
282
  ## Check Understanding
283
 
284
- ![concept map](./public/02_concepts.svg)
285
  """)
286
  return
287
 
 
281
  mo.md(r"""
282
  ## Check Understanding
283
 
284
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/02_concepts.svg)
285
  """)
286
  return
287
 
sql/03_aggregate_group.py CHANGED
@@ -375,7 +375,7 @@ def _():
375
  mo.md(r"""
376
  ## Check Understanding
377
 
378
- ![concept map](./public/03_concepts.svg)
379
  """)
380
  return
381
 
 
375
  mo.md(r"""
376
  ## Check Understanding
377
 
378
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/03_concepts.svg)
379
  """)
380
  return
381
 
sql/04_null.py CHANGED
@@ -353,7 +353,7 @@ def _():
353
  mo.md(r"""
354
  ## Checking Understanding
355
 
356
- ![concept map](/public/04_concepts.svg)
357
  """)
358
  return
359
 
 
353
  mo.md(r"""
354
  ## Checking Understanding
355
 
356
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/04_concepts.svg)
357
  """)
358
  return
359
 
sql/05_join.py CHANGED
@@ -276,7 +276,7 @@ def _():
276
  mo.md(r"""
277
  ## Check Understanding
278
 
279
- ![concept map](./public/05_concepts.svg)
280
  """)
281
  return
282
 
 
276
  mo.md(r"""
277
  ## Check Understanding
278
 
279
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/05_concepts.svg)
280
  """)
281
  return
282
 
sql/06_keys.py CHANGED
@@ -41,7 +41,7 @@ def _():
41
 
42
  The previous tutorial explained how to combine information from two tables using `inner join` and `left join`. This tutorial will explain how we can tell when it makes sense to do this, and introduce our first complex database. To start, let's look at a diagram showing the four tables in the `survey` database.
43
 
44
- ![survey tables](./public/survey_tables.svg)
45
  """)
46
  return
47
 
@@ -284,7 +284,7 @@ def _():
284
 
285
  @app.cell
286
  def _():
287
- mo.image(src="./public/survey_tables.svg", alt="table diagram of survey database")
288
  return
289
 
290
 
@@ -440,7 +440,7 @@ def _():
440
  mo.md(r"""
441
  ## Check Understanding
442
 
443
- ![concept map](./public/06_concepts.svg)
444
  """)
445
  return
446
 
 
41
 
42
  The previous tutorial explained how to combine information from two tables using `inner join` and `left join`. This tutorial will explain how we can tell when it makes sense to do this, and introduce our first complex database. To start, let's look at a diagram showing the four tables in the `survey` database.
43
 
44
+ ![survey tables](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/survey_tables.svg)
45
  """)
46
  return
47
 
 
284
 
285
  @app.cell
286
  def _():
287
+ mo.image(src="https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/survey_tables.svg", alt="table diagram of survey database")
288
  return
289
 
290
 
 
440
  mo.md(r"""
441
  ## Check Understanding
442
 
443
+ ![concept map](https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/06_concepts.svg)
444
  """)
445
  return
446