This repository was archived by the owner on Apr 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2018/09/16
4
+
5
+ * Fix underscores not showing on last line (Issue #23 )
6
+
3
7
## 2018/03/01
4
8
5
9
* Change option ` override ` with a list of tags (code, file) to override (Issue #16 )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ release.src = plugin
2
2
release.base = syntaxhighlighter4
3
3
release.author = CrazyMax
4
4
release.email = webmaster@crazyws.fr
5
- release.date = 2018-03-01
5
+ release.date = 2018-09-16
6
6
release.name = SyntaxHighlighter4 Plugin
7
7
release.desc = Alternative to GeSHi server-side code highlighting with client-side SyntaxHighlighter 4 by Alex Gorbatchev
8
8
release.url = http://www.dokuwiki.org/plugin:syntaxhighlighter4
Original file line number Diff line number Diff line change 12
12
box-shadow : none;
13
13
}
14
14
15
- /** Remove vertical scrollbar (IE & Chrome) */
15
+ /* Remove vertical scrollbar (IE & Chrome) */
16
16
.syntaxhighlighter {
17
17
overflow-y : hidden !important ;
18
18
}
19
+
20
+ /* Fix underscores not showing ; https://github.com/syntaxhighlighter/syntaxhighlighter/issues/406*/
21
+ .syntaxhighlighter table td .code .container {
22
+ padding-bottom : 2px !important ;
23
+ }
You can’t perform that action at this time.
0 commit comments