Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2017-11-02 00:25:19 +0300
committerThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2017-11-02 00:25:19 +0300
commitae210f6b361e32c70758b432e176f0cdd92053ce (patch)
tree85f9a34a0d88f3d916ed96cfdbdf9c60fedb60b2 /src
parent8c137dc5d3d0669c7ae6df144463d52c4949db1e (diff)
Add prism.js support
With new syntax highlighter prism.js, you have to configure which syntax highlighter you want to use between _highlight.js_ and _prism.js_. **However if you don't configure it, no syntax highligh will be apply** (where previously _highlight.js_ was forced by default). Please upgrade you're `config.toml` (you can checkout `exampleSite/config.toml` to see sample) to re-add _highlight.js_ as syntax highlighter (except if you don't need it): ```toml [params] syntaxHighlighter = "highligth.js" ``` fixes #24
Diffstat (limited to 'src')
-rw-r--r--src/scss/base/_custom.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/scss/base/_custom.scss b/src/scss/base/_custom.scss
index 486f5e6..8d30383 100644
--- a/src/scss/base/_custom.scss
+++ b/src/scss/base/_custom.scss
@@ -5,4 +5,10 @@
margin: 0 0.2em 0.25em -1.6em;
vertical-align: middle;
}
+}
+
+pre.code-highlight > code {
+ padding: 0;
+ margin: 0;
+ line-height: inherit;
} \ No newline at end of file