Add Pygments
This commit is contained in:
parent
14b20454ba
commit
a6eaed885c
3 changed files with 12 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -61,3 +61,5 @@ target/
|
|||
output/
|
||||
theme/static/build/
|
||||
pelican_plugins/
|
||||
|
||||
theme/static/src/scss/pygment.css
|
||||
|
|
|
@ -7,6 +7,9 @@ then
|
|||
echo ">>> WARNING: Building in Production Mode!"
|
||||
fi
|
||||
|
||||
echo ">> Generating Pygments styles..."
|
||||
pygmentize -S monokai -f html -a .highlight > theme/static/src/scss/pygment.css
|
||||
|
||||
echo ">> Building SCSS..."
|
||||
node-sass theme/static/src/scss/index.scss theme/static/build/css/index.css --source-map-embed
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ $fa-font-path: "../fonts";
|
|||
/* @group Other Imports */
|
||||
|
||||
@import "creative/creative";
|
||||
@import "pygment";
|
||||
|
||||
/* @end Other Imports */
|
||||
|
||||
|
@ -43,3 +44,9 @@ $fa-font-path: "../fonts";
|
|||
.btn-primary-dark {
|
||||
@include button-variant($white, $brand-orange-dark, $brand-orange-dark);
|
||||
}
|
||||
|
||||
|
||||
.highlight> pre {
|
||||
background-color: transparent;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
|
Reference in a new issue