Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit b2f098b

Browse files
committed
Fix underscores not showing on last line (Issue #23)
1 parent 41344d1 commit b2f098b

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2018/09/16
4+
5+
* Fix underscores not showing on last line (Issue #23)
6+
37
## 2018/03/01
48

59
* Change option `override` with a list of tags (code, file) to override (Issue #16)

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ release.src = plugin
22
release.base = syntaxhighlighter4
33
release.author = CrazyMax
44
release.email = webmaster@crazyws.fr
5-
release.date = 2018-03-01
5+
release.date = 2018-09-16
66
release.name = SyntaxHighlighter4 Plugin
77
release.desc = Alternative to GeSHi server-side code highlighting with client-side SyntaxHighlighter 4 by Alex Gorbatchev
88
release.url = http://www.dokuwiki.org/plugin:syntaxhighlighter4

dist/syntaxhighlighter4.zip

25 Bytes
Binary file not shown.

plugin/dist/override.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
box-shadow: none;
1313
}
1414

15-
/** Remove vertical scrollbar (IE & Chrome) */
15+
/* Remove vertical scrollbar (IE & Chrome) */
1616
.syntaxhighlighter {
1717
overflow-y: hidden !important;
1818
}
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+
}

0 commit comments

Comments
 (0)