You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standardize language file naming to underscore convention
- Rename 18 Spanish/French guides from .es.qmd/.fr.qmd to _es.qmd/_fr.qmd
- Rename how-to-read.qmd and indices.qmd to include _en suffix
- Update _quarto.yml sidebar links to match new filenames
- Add CLAUDE.md for Claude Code guidance
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
+
5
+
## Project Overview
6
+
7
+
This is the EGAP (Evidence in Governance and Politics) Methods website, a Quarto-based multilingual educational resource for impact evaluation methodology. The site provides methods guides, software tools catalog, and teaching materials for researchers and practitioners.
8
+
9
+
## Build and Development Commands
10
+
11
+
```bash
12
+
# Preview the site locally (starts dev server with live reload)
13
+
quarto preview
14
+
15
+
# Build the site (outputs to _site/)
16
+
quarto render
17
+
18
+
# Render a single guide
19
+
quarto render guides/research-questions/effect-types_en.qmd
20
+
21
+
# Restore R package dependencies (required before first build)
22
+
# R will auto-activate renv via .Rprofile
23
+
R -e "renv::restore()"
24
+
```
25
+
26
+
## Architecture
27
+
28
+
### Content Structure
29
+
30
+
-**guides/** — Methods guides organized by topic subdirectories:
0 commit comments