github-markup 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/HISTORY.md +6 -0
- data/lib/github-markup.rb +1 -1
- data/lib/github/markup/markdown.rb +1 -1
- data/test/markups/README.org.html +1 -1
- metadata +2 -3
- data/lib/github/commands/foo.rst +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f884921d84f6c8e654ce8e27b3aa486c3a1e8a3f
|
4
|
+
data.tar.gz: 2a9ac570aa7d6b80fd6a9021c365f03dc78f224a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76e8ebe3c9a8d872eaa5645ba713b9605cef60e8e426952bc67edc433b47c6ed49158835d3239dfb6ce57e136cdd3880a21a533a1272725ea97f1423bebd41a3
|
7
|
+
data.tar.gz: 95364dfeac5dad9318c7b44897caf759c57c309a0752eb2ba23dfc59e911be90af31b8fce5ce651133699242ac0f4f7d056095a749a75fd12a7bf4d092cc19b8
|
data/Gemfile
CHANGED
data/HISTORY.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 1.3.1 (2014-11-13)
|
2
|
+
|
3
|
+
* Fix name error when trying to use newer versions of RedCarpet [#387](https://github.com/github/markup/pull/387)
|
4
|
+
|
5
|
+
[Full changelog](https://github.com/github/markup/compare/v1.3.0...v1.3.1)
|
6
|
+
|
1
7
|
## 1.3.0 (2014-09-11)
|
2
8
|
|
3
9
|
* Extend the field limit for tables to 50 characters for RST [#306](https://github.com/github/markup/pull/306)
|
data/lib/github-markup.rb
CHANGED
@@ -8,7 +8,7 @@ module GitHub
|
|
8
8
|
GitHub::Markdown.render(content)
|
9
9
|
},
|
10
10
|
"redcarpet" => proc { |content|
|
11
|
-
|
11
|
+
Redcarpet::Markdown.new(Redcarpet::Render::HTML).render(content)
|
12
12
|
},
|
13
13
|
"rdiscount" => proc { |content|
|
14
14
|
RDiscount.new(content).to_html
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-markup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Wanstrath
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: posix-spawn
|
@@ -44,7 +44,6 @@ files:
|
|
44
44
|
- bin/github-markup
|
45
45
|
- github-markup.gemspec
|
46
46
|
- lib/github-markup.rb
|
47
|
-
- lib/github/commands/foo.rst
|
48
47
|
- lib/github/commands/rest2html
|
49
48
|
- lib/github/markup.rb
|
50
49
|
- lib/github/markup/command_implementation.rb
|
data/lib/github/commands/foo.rst
DELETED