diff --git a/docs/mediawiki-config.php b/docs/mediawiki-config.php
index aa77c76..985bec5 100644
--- a/docs/mediawiki-config.php
+++ b/docs/mediawiki-config.php
@@ -19,8 +19,8 @@ $wgKartographerMapServer = 'https://TILE_SERVER_URL';
# Verfuegbare Kartenstile
# Die Namen entsprechen den Style-Dateien in data/styles/
$wgKartographerStyles = [
- 'osm-bright', # OpenStreetMap Vektorkarte (MapLibre GL)
- 'satellite-hybrid', # Satellitenkarte
+'osm-bright', # OpenStreetMap Vektorkarte (MapLibre GL)
+'satellite-hybrid', # Satellitenkarte
];
# Standard-Stil
@@ -30,16 +30,17 @@ $wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
# Tile-Endpunkte (Martin-Format):
# Vektor-Tiles: https://TILE_SERVER_URL/osm/{z}/{x}/{y}
-# Satellit: https://TILE_SERVER_URL/satellite/{z}/{x}/{y}
-# Style-JSON: https://TILE_SERVER_URL/styles/osm-bright
-# Sources: https://TILE_SERVER_URL/catalog
-# Web-UI: https://TILE_SERVER_URL/
+# Satellit: https://TILE_SERVER_URL/satellite/{z}/{x}/{y}
+# Style-JSON: https://TILE_SERVER_URL/styles/osm-bright
+# Sources: https://TILE_SERVER_URL/catalog
+# Web-UI: https://TILE_SERVER_URL/
# Beispiel-Verwendung in einem Wiki-Artikel:
#
-# {"type":"Feature","geometry":{"type":"Point","coordinates":[11.576,48.137]},
-# "properties":{"title":"Muenchen","description":"Landeshauptstadt"}}
-#
+ # {"type":"Feature","geometry":{"type":"Point","coordinates":[11.576,48.137]},
+ # "properties":{"title":"Muenchen","description":"Landeshauptstadt"}}
+ #
# Alternativ mit eingebetteter Karte:
-#
+#
+
\ No newline at end of file
diff --git a/history/prompts/2026-06-10_tile-mediawiki-integration_session.md b/history/prompts/2026-06-10_tile-mediawiki-integration_session.md
index 0ece53f..8df2a26 100644
--- a/history/prompts/2026-06-10_tile-mediawiki-integration_session.md
+++ b/history/prompts/2026-06-10_tile-mediawiki-integration_session.md
@@ -82,3 +82,19 @@ Branch: main
### Antwort 4
Bestaetigt: alle drei geaenderten Dateien werden in den Commit aufgenommen. Danach Wechsel in das MediaWiki-Repo und dortige Anpassungen mit eigenem Commit.
+
+Ausgefuehrte Kommandos:
+```bash
+git add config/martin.yaml docker-compose.yml docs/mediawiki-config.php history/prompts/2026-06-10_tile-mediawiki-integration_session.md history/summary/PROJECT_CONTEXT.md
+git commit -m "feat: enable martin webui and prep mediawiki integration"
+git status --short
+git show --name-only --oneline -1
+git diff -- docs/mediawiki-config.php | sed -n '1,200p'
+```
+
+Relevante Outputs:
+```text
+[main 0a5f6cd] feat: enable martin webui and prep mediawiki integration
+5 files changed, 114 insertions(+), 44 deletions(-)
+M docs/mediawiki-config.php
+```
diff --git a/history/summary/PROJECT_CONTEXT.md b/history/summary/PROJECT_CONTEXT.md
index a10d709..89091ca 100644
--- a/history/summary/PROJECT_CONTEXT.md
+++ b/history/summary/PROJECT_CONTEXT.md
@@ -37,7 +37,8 @@ Nextcloud, Home Assistant und andere Dienste Vektorkarten bereitstellt.
### Git-Stand
- Branch: `main`
-- Uncommitted (vor diesem Update): `config/martin.yaml`, `docker-compose.yml`, `docs/mediawiki-config.php`
+- Letzter Commit: `0a5f6cd` - WebUI aktiviert und MediaWiki-Integration vorbereitet
+- Noch offen (lokal): `docs/mediawiki-config.php`
---