305e3a62f8
- Glossar-Renderer: Markdown-Tabellen (|…|) + .gl-table CSS - co2-fussabdruck-lebensmittel: telegrafische Liste → ganze Sätze + saubere Portions-Tabelle, Avocado-Vergleich, Malpunkt statt × - Programmweit „—" (Geviertstrich) → „–" (Gedankenstrich): Glossar-DB, glossar_examples, module_info, alle 13 Buch-Kapitel - Weltküche-Onboarding: Blatt 2 umformuliert (zweites Land nacheinander), Blatt 3 Lehrplan-Satz entfernt, Blatt 4 fehlendes markt.webp generiert Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
815 B
SQL
18 lines
815 B
SQL
-- Geviertstrich „—" (U+2014) → Gedankenstrich „–" (U+2013), programmweit in der DB.
|
||
UPDATE glossar SET
|
||
short = REPLACE(short, '—', '–'),
|
||
text = REPLACE(text, '—', '–'),
|
||
short_easy = REPLACE(short_easy, '—', '–'),
|
||
text_easy = REPLACE(text_easy, '—', '–');
|
||
UPDATE glossar_examples SET
|
||
text = REPLACE(text, '—', '–'),
|
||
text_easy = REPLACE(text_easy, '—', '–');
|
||
UPDATE module_info SET
|
||
subtitle = REPLACE(subtitle, '—', '–'),
|
||
short_desc = REPLACE(short_desc, '—', '–'),
|
||
long_desc = REPLACE(long_desc, '—', '–'),
|
||
learning_goals = REPLACE(learning_goals, '—', '–'),
|
||
short_desc_easy = REPLACE(short_desc_easy, '—', '–'),
|
||
long_desc_easy = REPLACE(long_desc_easy, '—', '–'),
|
||
learning_goals_easy = REPLACE(learning_goals_easy, '—', '–');
|