Skip to content

Commit

Permalink
build: enable m.code plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
RiscadoA committed Jan 25, 2024
1 parent d3bbd7e commit c421f99
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pelican
pip install pelican Pygments
- name: Build
run: pelican ${{github.workspace}}/content -s ${{github.workspace}}/publishconf.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pelican
pip install pelican Pygments
- name: Build
run: pelican ${{github.workspace}}/content -s ${{github.workspace}}/publishconf.py
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
doxygen
(python3.withPackages (ps: [
ps.pelican
ps.pygments
]))
];
};
Expand Down
2 changes: 1 addition & 1 deletion pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@
M_THEME_COLOR = '#22272e'

PLUGIN_PATHS = ['m.css/plugins']
PLUGINS = ['m.htmlsanity']
PLUGINS = ['m.htmlsanity', 'm.code']

0 comments on commit c421f99

Please sign in to comment.