jekyll-pseudo 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c91662a5c57e310ce4fa37c2811947eeb34074b
4
- data.tar.gz: ad97aa327fda6d6c9ceaf8354a05dc8cddb05053
3
+ metadata.gz: 6675c1135d5bedd8f3fc925ba10e589246d04d63
4
+ data.tar.gz: 81f4f5f0b5e2dd9c79cc373140cb08a3fffe52d8
5
5
  SHA512:
6
- metadata.gz: 73c5ae7485d91e307813cf8959141a7c0428128d93d851cb7ad7a9dbbeb24bab4e119df2504c125cadaf9ef2b8e8a931808228015f4ea599511c9e5a20b08d2c
7
- data.tar.gz: e121c529a6e6de557bea3e18523fac64c24d29d11a34dd14ac2e059e683affba97056c2d0a4ef1d5ee0d5a04c1794773895c05a7a86034ae955996fbae2d7f15
6
+ metadata.gz: 3042a6d5ec4c71a0ac59162aad2d80eb3430ca85c2183876e1763d939db509de8e563a2c65c377f2d1b1f2f737b92e947660aeb02442a82968aa1d83a65612d7
7
+ data.tar.gz: 3db7b240dbc2f0832f0770c51f345912a1d4c0be5e2aeac454162e063c199bc8a2b0754600734442836167c02076f7a6efe742f18569a99176bb6ab337edd28c
@@ -11,7 +11,7 @@ module Jekyll
11
11
  [/(\w+)(?=[({\[])/, :fn],
12
12
  [/(\".*?\")/, :string],
13
13
  [/(<-|->|\+\+|<=|>=|--)/, :op], # try these operations first
14
- [/([-()\[\]{}=<>+])/, :op], # and these second
14
+ [/([-()\[\]{}=<>+*])/, :op], # and these second
15
15
  [/^(\s+)/, :indent]
16
16
  ]
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Pseudo
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
@@ -25,6 +25,7 @@ describe HtmlBrush do
25
25
 
26
26
  it "operator converstions" do
27
27
  format("<").should eql "<span class='op'>&#12296;</span>"
28
+ format("*").should eql "<span class='op'>&times;</span>"
28
29
  end
29
30
  end
30
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-pseudo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wiktor Macura