Skip to content

Commit 79c49b9

Browse files
committed
Fix html tags not being rendered
1 parent e4065a1 commit 79c49b9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ jobs:
2525
-e MARP_USER=root:root \
2626
-v "$PWD:/workspace" \
2727
-w /workspace \
28-
marpteam/marp-cli:v3.0.2 "decks/$dir/slides.md" -o "build/$dir/index.html" --theme theme/codestar.css
28+
marpteam/marp-cli:v3.0.2 \
29+
"decks/$dir/slides.md" \
30+
-o "build/$dir/index.html" \
31+
--theme theme/codestar.css \
32+
--html
2933
rsync -av --exclude='slides.md' "decks/$dir/" "build/$dir/"
3034
fi
3135
done

example.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
marp: true
3+
title: New Codestar Marp theme
34
theme: codestar
45
# class: invert
56
paginate: true

0 commit comments

Comments
 (0)