-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:amerinor01/merienda-software-libre-1
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Merienda Software Libre | ||
|
||
This repository contains everything needed to create the presentation using Marp (Markdown Presentation Ecosystem). | ||
|
||
## 📁 Repository Structure | ||
``` | ||
├── imgs/ # Images and other media files | ||
├── rose-pine.css # Custom CSS theme | ||
├── slices.md # Slices | ||
├── flake.nix # Nix flake configuration | ||
└── flake.lock # Nix flake lock file | ||
``` | ||
## 🚀 Quick Start | ||
|
||
### Using VS Code + Marp Extension | ||
|
||
1. Install [Visual Studio Code](https://code.visualstudio.com/) | ||
2. Install the [Marp for VS Code](https://marketplace.visualstudio.com/items?itemName=marp-team.marp-vscode) extension | ||
3. Open any `.md` file | ||
4. Click the "Open Preview to the Side" button or use `Ctrl+K V` | ||
|
||
### Using Nix Flakes (Alternative) | ||
|
||
If you have Nix with flakes enabled: | ||
|
||
```bash | ||
# Enter development shell | ||
nix develop | ||
|
||
# Build the presentation while working on | ||
marp --theme rose-pine.css slides.md --watch | ||
``` |