From 5c78215e83fb990450ddcd409ddd70bc6653dd06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Merino=20Risue=C3=B1o?= Date: Fri, 8 Nov 2024 11:54:07 +0100 Subject: [PATCH 1/2] Create README.md --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7024b99 --- /dev/null +++ b/README.md @@ -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 from the `presentations/` directory +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 +``` From 077a91fb9a469c5baf5eb4c462c11d34a36db73f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Merino=20Risue=C3=B1o?= Date: Fri, 8 Nov 2024 11:54:42 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7024b99..69d8da7 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ This repository contains everything needed to create the presentation using Marp 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 from the `presentations/` directory +3. Open any `.md` file 4. Click the "Open Preview to the Side" button or use `Ctrl+K V` ### Using Nix Flakes (Alternative)