mato 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6e4685b308739fc1de3c616e18bd6e0b212da845
4
- data.tar.gz: daea3d57330a9533caf058cf71e174132cef07fb
3
+ metadata.gz: a26d6ad2db8deaef98667c703a1688fe1a92bd34
4
+ data.tar.gz: 8264dd9d748373060721ed204d3c021828d7c4b1
5
5
  SHA512:
6
- metadata.gz: 04443f969138bd2a9943df1dad30e7d001fc4630efd75f68be484beb9fef8990c2fca6081e751d538841985df3f8275c8bc9a3c625b03f2bd45cfbf43d26b58b
7
- data.tar.gz: c48fc06e567b09614cc184e672d1a2850b9159bbb75f1b7eab6db3bd65bdf274c4257b84c0beece0d90405d2a7ac242de6f01e2aa16004b19c8c5da04236c207
6
+ metadata.gz: 0aced1f0387262f51a3ce921b60aa82585c1f997c7cf518169ef79d75d5ff91be3fb118d4f7ec22790f26d7d03a16b992b82933e6f32ddec403849dd02fd049c
7
+ data.tar.gz: c4519b78c2a502f625fe98b2a3c631f29e949086edd4dd6b4adddf6ef000325c126747171220096a1562311ac6ef1ed3e09901a1f3a65244fe0c2222b5b5a42f
@@ -3,6 +3,7 @@ language: ruby
3
3
  rvm:
4
4
  - 2.3
5
5
  - 2.4
6
+ cache: bundler
6
7
  before_install: gem install bundler
7
8
  notifications:
8
9
  slack:
@@ -1,5 +1,11 @@
1
1
  # The revision history of Mato
2
2
 
3
+ ## v1.0.3 - 2017/08/23
4
+
5
+ https://github.com/bitjourney/mato/compare/v1.0.2...v1.0.3
6
+
7
+ * fix issues that tags are remvoed from ToC (degraded in #4, fixed in [#5](https://github.com/bitjourney/mato/pull/5))
8
+
3
9
  ## v1.0.2 - 2017/08/23
4
10
 
5
11
  https://github.com/bitjourney/mato/compare/v1.0.1...v1.0.2
@@ -42,7 +42,7 @@ module Mato
42
42
  node.css('a').each do |a|
43
43
  a.replace(a.children)
44
44
  end
45
- s << node
45
+ s << node.children.to_html(save_with: 0)
46
46
 
47
47
  if anchor
48
48
  s << %{</a>}
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mato
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mato
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - FUJI Goro