Notes&2do

Author

Marcelo Rosales

Notes:

To do:

Code Notation

Different ways for code notation in code block. describe how to correctly use it in qmd and vscode

---
format: 
  html: 
    code-fold: true
    code-copy: true
    code-overflow: wrap

---
---
title: Simple Lightbox Example
filters:
   - lightbox
lightbox: auto
---

![A Lovely Image](mv-1.jpg)
![A Lovely Image](mv-1.jpg){group="my-gallery"}

![Another Lovely Image](mv-2.jpg){group="my-gallery"}

![The Last Lovely Image](mv-3.jpg){group="my-gallery"}
``` markdown
```{.r}
#| fig-cap: 
#|   - Caption for first plot
#|   - Caption for second plot
#| lightbox: 
#|   group: cars
#|   description: 
#|     - This is the decription for first graph
#|     - This is the decription for second graph
plot(mtcars)
plot(cars)

`

Temp: