Skip to content

Commit 60ed29e

Browse files
committed
Fix code highlighting
1 parent 39745a9 commit 60ed29e

File tree

6 files changed

+26
-121
lines changed

6 files changed

+26
-121
lines changed

_config.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,19 @@ news_limit: 5
7777
# Jekyll settings
7878
# -----------------------------------------------------------------------------
7979

80-
# Build settings
80+
# Markdown and syntax highlight
8181
markdown: kramdown
8282
highlighter: rouge
83+
highlight_theme: github # https://github.com/jwarby/jekyll-pygments-themes
84+
kramdown:
85+
input: GFM
86+
syntax_highlighter_opts:
87+
css_class: 'highlight'
88+
span:
89+
line_numbers: false
90+
block:
91+
line_numbers: true
92+
start_line: 1
8393

8494
# Includes & excludes
8595
include: ['_pages']
@@ -124,7 +134,6 @@ scholar:
124134
# -----------------------------------------------------------------------------
125135

126136
enable_google_analytics: false
127-
enable_highlight: false
128137
enable_katex: true
129138
enable_mansory: false
130139
enable_progressbar: false

_includes/hemline.html

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
<script src="{{ '/assets/js/common.js' | prepend: site.baseurl | prepend: site.url }}"></script>
99

1010
<!-- Code Syntax Highlighting -->
11-
{% if site.enable_highlight %}
12-
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
13-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/{{ site.highlight_version }}/highlight.min.js" integrity="sha256-1zu+3BnLYV9LdiY85uXMzii3bdrkelyp37e0ZyTAQh0=" crossorigin="anonymous"></script>
14-
<script>hljs.initHighlightingOnLoad();</script>
15-
{% endif %}
11+
<link rel="stylesheet" href="https://gitcdn.link/repo/jwarby/jekyll-pygments-themes/master/{{ site.highlight_theme }}.css" />
1612

1713
{% if site.enable_katex %}
1814
<!-- Load KaTeX -->

_posts/2015-07-15-code.markdown

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@ title: a post with code
44
date: 2015-07-15 15:09:00
55
description: an example of a blog post with some code
66
---
7-
This theme implements a built-in Jekyll feature, the use of Pygments, for sytanx highlighting. It supports more than 100 languages. This example is in C++. All you have to do is wrap your code in a liquid tag:
7+
This theme implements a built-in Jekyll feature, the use of Rouge, for syntax highlighting.
8+
It supports more than 100 languages.
9+
This example is in C++.
10+
All you have to do is wrap your code in a liquid tag:
811

912
{% raw %}
10-
{% highlight c++ %} <br/> code code code <br/> {% endhighlight %}
13+
{% highlight c++ linenos %} <br/> code code code <br/> {% endhighlight %}
1114
{% endraw %}
1215

16+
The keyword `linenos` triggers display of line numbers.
1317
Produces something like this:
1418

15-
{% highlight c++ %}
19+
{% highlight c++ linenos %}
1620

1721
int main(int argc, char const \*argv[])
1822
{

_sass/_base.scss

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ a, table.table a {
1616
}
1717
}
1818

19+
// Math
20+
.equation {
21+
margin-bottom: 1rem;
22+
text-align: center;
23+
}
24+
1925

2026
// Profile
2127

_sass/_syntax-highlighting.scss

-106
This file was deleted.

assets/css/main.scss

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,9 @@
44
@charset "utf-8";
55

66

7-
// Import partials from `sass_dir` (defaults to `_sass`)
8-
// @import "mdb/core/bootstrap/bootstrap";
9-
// @import "mdb/mdb";
107

118
@import
129
"variables",
1310
"layout",
14-
"base",
15-
"syntax-highlighting"
11+
"base"
1612
;

0 commit comments

Comments
 (0)