qiita-markdown 0.1.6 → 0.1.7
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 +4 -4
- data/CHANGELOG.md +19 -16
- data/lib/qiita/markdown/filters/redcarpet.rb +1 -0
- data/lib/qiita/markdown/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: 3d25866f4406e5d404845b15505637556d6ef12e
|
|
4
|
+
data.tar.gz: cd8bc17d878fcacc598c0f97e04e1b00941f9cb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9712614c01f262c557eadbb2978a39c9123b177ea251917b497587bc91ca95472b92c3587aacdf025c051ac0b50b0e76969781f0b4a60771a1fb15fd0fb9ac4e
|
|
7
|
+
data.tar.gz: 75465de23affa1517af97383a7a17319579ba3afea15b17c1d8a14ad0d35bf7fc37bfe3f9b15b6dd2e3c86f0765c175da8e5a11ec567f7f416538edd3de52d12
|
data/CHANGELOG.md
CHANGED
|
@@ -1,47 +1,50 @@
|
|
|
1
|
+
## 0.1.7
|
|
2
|
+
- Enable footnotes markdown syntax
|
|
3
|
+
|
|
1
4
|
## 0.1.6
|
|
2
|
-
|
|
5
|
+
- Add missing dependency on pygments.rb (thx @kwappa)
|
|
3
6
|
|
|
4
7
|
## 0.1.5
|
|
5
|
-
|
|
8
|
+
- Memoize Redcarpet::Markdown object
|
|
6
9
|
|
|
7
10
|
## 0.1.4
|
|
8
|
-
|
|
11
|
+
- Support type attribute of script element
|
|
9
12
|
|
|
10
13
|
## 0.1.3
|
|
11
|
-
|
|
14
|
+
- Support text-align syntax on table
|
|
12
15
|
|
|
13
16
|
## 0.1.2
|
|
14
|
-
|
|
17
|
+
- Support rowspan attribute
|
|
15
18
|
|
|
16
19
|
## 0.1.1
|
|
17
|
-
|
|
20
|
+
- Support empty list
|
|
18
21
|
|
|
19
22
|
## 0.1.0
|
|
20
|
-
|
|
23
|
+
- Default to add disabled attribute to checkbox
|
|
21
24
|
|
|
22
25
|
## 0.0.9
|
|
23
|
-
|
|
26
|
+
- Make it Ruby 2.0.0-compatible
|
|
24
27
|
|
|
25
28
|
## 0.0.8
|
|
26
|
-
|
|
29
|
+
- Support gapped task list
|
|
27
30
|
|
|
28
31
|
## 0.0.7
|
|
29
|
-
|
|
32
|
+
- Change dependent gem version
|
|
30
33
|
|
|
31
34
|
## 0.0.6
|
|
32
|
-
|
|
35
|
+
- Remove target="_blank" from a element of mention
|
|
33
36
|
|
|
34
37
|
## 0.0.5
|
|
35
|
-
|
|
38
|
+
- Allow font element with color attribute
|
|
36
39
|
|
|
37
40
|
## 0.0.4
|
|
38
|
-
|
|
41
|
+
- Add iframe and data-attributes support
|
|
39
42
|
|
|
40
43
|
## 0.0.3
|
|
41
|
-
|
|
44
|
+
- Fix bug of code block that has colon-only label
|
|
42
45
|
|
|
43
46
|
## 0.0.2
|
|
44
|
-
|
|
47
|
+
- Remove version dependency on gemoji
|
|
45
48
|
|
|
46
49
|
## 0.0.1
|
|
47
|
-
|
|
50
|
+
- 1st Release
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qiita-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryo Nakamura
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|