octopress-code-highlighter 3.0.1 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +3 -3
- data/assets/stylesheets/_solarized.scss +22 -22
- data/lib/octopress-code-highlighter/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc1cc326cd4ba9c2523de4ae962038e4a35bee04
|
4
|
+
data.tar.gz: bd4a8304bceaa5d5cd1c09d8c1266f610176b04f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b45737a2b74a8d8b27026194f5200e0f598b0da386c74b98e5b628fd90b0667ffafa8112aec01b75d3e47dcd968ba0c8bc1f39b98070c5a1d18060ece7c1a813
|
7
|
+
data.tar.gz: 3de0570c10f5e1708023ee76840f3f4fbe29a5e833ead4639a196a6bba7e375cd8c4fa583159062d56036521a8842a63567767f808f38865ca21787969d0393f
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# Octopress
|
1
|
+
# Octopress Code Highlighter
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/octopress/
|
3
|
+
[![Build Status](https://travis-ci.org/octopress/code-highlighter.png)](https://travis-ci.org/octopress/code-highlighter)
|
4
4
|
|
5
|
-
|
5
|
+
Generates highlighted code using Pygments.rb or Rouge with enanced HTML output and fancy stylesheets. This gem is used by [octopress-codefence](https://github.com/octopress/codefence) and [octopress-gist](https://github.com/octopress/octopress-gist).
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -27,28 +27,28 @@ $solar-scroll-thumb: rgba(#fff, .2);
|
|
27
27
|
|
28
28
|
@if $solarized == light {
|
29
29
|
|
30
|
-
$_base03: $base03;
|
31
|
-
$_base02: $base02;
|
32
|
-
$_base01: $base01;
|
33
|
-
$_base00: $base00;
|
34
|
-
$_base0: $base0;
|
35
|
-
$_base1: $base1;
|
36
|
-
$_base2: $base2;
|
37
|
-
$_base3: $base3;
|
38
|
-
|
39
|
-
$base03: $_base3;
|
40
|
-
$base02: $_base2;
|
41
|
-
$base01: $_base1;
|
42
|
-
$base00: $_base0;
|
43
|
-
$base0: $_base00;
|
44
|
-
$base1: $_base01;
|
45
|
-
$base2: $_base02;
|
46
|
-
$base3: $_base03;
|
47
|
-
|
48
|
-
$solar-scroll-bg: rgba(#000, .15);
|
49
|
-
$solar-scroll-thumb: rgba(#000, .15);
|
50
|
-
|
51
|
-
$marker-bg: rgba($marker, .05);
|
30
|
+
$_base03: $base03 !global;
|
31
|
+
$_base02: $base02 !global;
|
32
|
+
$_base01: $base01 !global;
|
33
|
+
$_base00: $base00 !global;
|
34
|
+
$_base0: $base0 !global;
|
35
|
+
$_base1: $base1 !global;
|
36
|
+
$_base2: $base2 !global;
|
37
|
+
$_base3: $base3 !global;
|
38
|
+
|
39
|
+
$base03: $_base3 !global;
|
40
|
+
$base02: $_base2 !global;
|
41
|
+
$base01: $_base1 !global;
|
42
|
+
$base00: $_base0 !global;
|
43
|
+
$base0: $_base00 !global;
|
44
|
+
$base1: $_base01 !global;
|
45
|
+
$base2: $_base02 !global;
|
46
|
+
$base3: $_base03 !global;
|
47
|
+
|
48
|
+
$solar-scroll-bg: rgba(#000, .15) !global;
|
49
|
+
$solar-scroll-thumb: rgba(#000, .15) !global;
|
50
|
+
|
51
|
+
$marker-bg: rgba($marker, .05) !global;
|
52
52
|
}
|
53
53
|
|
54
54
|
$pre-bg: $base03 !default;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-code-highlighter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0
|
4
|
+
version: 3.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorator
|