Skip to content

Commit 8ab365d

Browse files
committed
use of pandoc action
1 parent f0d80ef commit 8ab365d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/make.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
uses: actions/checkout@v4
1111
with:
1212
token: ${{ secrets.ACTION_TOKEN }}
13-
- name: Install pandoc
13+
- name: Setup Pandoc and LaTeX
14+
uses: pandoc/actions/setup@v1
15+
with:
16+
version: latest
17+
- name: Install LaTeX fonts
1418
run: |
1519
sudo apt-get update
16-
sudo apt-get install -y pandoc texlive texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended
20+
sudo apt-get install -y texlive-fonts-extra
1721
- name: Make docs
1822
run: make all
1923
- name: Commit and push changes

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ is pressed (just try to find out :) ), ( *x* , *y* ) are the coordinates
372372
of the mouse click in the window, and *button* tells you which mouse
373373
button was pressed.
374374

375-
## GOING FURTHER WITH EVENTS
375+
## Going further with events
376376

377377
The MiniLibX provides a much generic access to other available events.
378378
The *mlx.h* include define **mlx_hook()** in the same manner

0 commit comments

Comments
 (0)