aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 16 insertions, 1 deletions
diff --git a/README b/README
index 2aaf22f..845a62f 100644
--- a/README
+++ b/README
@@ -31,7 +31,7 @@ npx marp --config .marprc.json --pdf demo-standard.md
## Example Slide
-![](egslide.png)
+<img src="egslide.png" width="350" markdown="1">
## Available Layouts
@@ -163,6 +163,20 @@ style: |
The logo appears on all slides except the title slide.
+## Using in Another Project
+
+Copy these files:
+- `acarp.css` & `acarp-beamer.css` (themes)
+- `.marprc.json` (config)
+
+Then:
+```bash
+npm install -g @marp-team/marp-cli
+marp --config .marprc.json your-file.md
+```
+
+Or clone this repo and `just new my-talk`
+
## All Commands
```bash
@@ -171,6 +185,7 @@ just watch <file> # Watch and auto-rebuild
just pdf <file> # Export to PDF
just new <name> # Create new presentation
just clean # Remove output files
+just cleanup # Clean everything including node_modules
just demo # Build demo presentations
just help # Show all commands
```