gitlab_kramdown 0.9.0 → 0.10.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 +100 -0
- data/LICENSE.txt +17 -16
- data/lib/gitlab_kramdown/version.rb +1 -1
- metadata +32 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46edf71a2cbaa91e378788b9ff7b369c2fe864211cf1d6b8ba673b77a9a13bca
|
4
|
+
data.tar.gz: 9d9411975cb4f61ece5f8033db432a4f1cd6236c99c606aa4fc953654c941572
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee0f367f0d723917d0c5a96650c5a2a9e7e78cbf4c7da762e4f42a3ba563b77562e4cb020f3e67ff67671d345de8b93e046b338d9eb857e955ae230184c685d1
|
7
|
+
data.tar.gz: a302ab1dbc1cb14c1ca4e08087268ca144af2e1c00282ff13bd8ec80f83c96c25e1a3c4e829027fdc97758d67d5ace9c38b38043c80f54e0115d735cda5a6e73
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
## [0.10.0] - 2020-08-27
|
10
|
+
|
11
|
+
- Update Gem dependencies
|
12
|
+
|
13
|
+
## [0.9.0] - 2019-10-17
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
- Fix very long IDs for headers that include links.
|
17
|
+
|
18
|
+
### Added
|
19
|
+
- Images should be clickable and linked to itself
|
20
|
+
- Clickable images behavior is configurable
|
21
|
+
|
22
|
+
### [0.8.0] - 2019-10-14
|
23
|
+
|
24
|
+
### Changed
|
25
|
+
- Revert "Fix very long IDs for headers that include links"
|
26
|
+
|
27
|
+
### [0.7.0] - 2019-10-11
|
28
|
+
|
29
|
+
### Added
|
30
|
+
- Add support for PlantUML
|
31
|
+
|
32
|
+
### Changed
|
33
|
+
- Ruby 2.4 support is dropped.
|
34
|
+
- Fix very long IDs for headers that include links.
|
35
|
+
|
36
|
+
## [0.6.0] - 2019-05-07
|
37
|
+
### Changed
|
38
|
+
- URL Autolinks are now disabled by default (you can re-enable with `autolink: true` configuration param)
|
39
|
+
|
40
|
+
### Added
|
41
|
+
- Added support for rendering Mermaid when their JS is available
|
42
|
+
|
43
|
+
## [0.5.0] - 2019-04-09
|
44
|
+
### Added
|
45
|
+
- Strikethrough support
|
46
|
+
|
47
|
+
## [0.4.2] - 2018-11-21
|
48
|
+
### Changed
|
49
|
+
- URL autolinks will not execute inside `[]()` or `[]` blocks
|
50
|
+
- Freezing `kramdown` version to allow only patchlevel changes
|
51
|
+
|
52
|
+
## [0.4.1] - 2018-11-02
|
53
|
+
### Added
|
54
|
+
- Codebase now have a benchmark utility to compare with plain Kramdown
|
55
|
+
|
56
|
+
### Changed
|
57
|
+
- Many performance improvements on existing RegExp rules
|
58
|
+
- Improve gemspec metadata and include only needed files on gem
|
59
|
+
|
60
|
+
## [0.4.0] - 2018-04-12
|
61
|
+
### Added
|
62
|
+
- URL auto-linking support
|
63
|
+
|
64
|
+
### Changed
|
65
|
+
- Fixed many inconsistencies in references autolink
|
66
|
+
|
67
|
+
## [0.3.0] - 2018-03-23
|
68
|
+
### Added
|
69
|
+
- Headers will include by default an anchor tag (you can disable with `linkable_headers: false`)
|
70
|
+
|
71
|
+
### Changed
|
72
|
+
- Fixed multiline blockquote delimiter
|
73
|
+
- GitLab URL is not customizable with `gitlab_url: 'http://yourcustomgitlab.com'`
|
74
|
+
|
75
|
+
## [0.2.0] - 2018-03-19
|
76
|
+
### Added
|
77
|
+
- Syntax highlighter uses ``` or ~~~
|
78
|
+
|
79
|
+
### Changed
|
80
|
+
- Requires Ruby 2.4
|
81
|
+
- Requires rouge `~> 3.0`
|
82
|
+
|
83
|
+
## [0.1.0] - 2018-03-17
|
84
|
+
### Added
|
85
|
+
- The initial version of the Gem
|
86
|
+
- Special GitLab References
|
87
|
+
- Multiline Blockquote
|
88
|
+
|
89
|
+
[0.10.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.9.0...v0.10.0
|
90
|
+
[0.9.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.8.0...v0.9.0
|
91
|
+
[0.8.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.7.0...v0.8.0
|
92
|
+
[0.7.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.6.0...v0.7.0
|
93
|
+
[0.6.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.5.0...v0.6.0
|
94
|
+
[0.5.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.4.2...v0.5.0
|
95
|
+
[0.4.2]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.4.1...v0.4.2
|
96
|
+
[0.4.1]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.4.0...v0.4.1
|
97
|
+
[0.4.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.3.0...v0.4.0
|
98
|
+
[0.3.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.2.0...v0.3.0
|
99
|
+
[0.2.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/v0.1.0...v0.2.0
|
100
|
+
[0.1.0]: https://gitlab.com/gitlab-org/gitlab_kramdown/compare/15b5e4b46aa0e42974ec2e5ee36c68d97219736f...v0.1.0
|
data/LICENSE.txt
CHANGED
@@ -1,20 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
1
3
|
Copyright (c) 2018-2019 Gabriel Mazetto
|
2
4
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
10
11
|
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
13
14
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
OF
|
20
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_kramdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Mazetto
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kramdown
|
@@ -16,98 +16,98 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.3.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.3.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rouge
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '3.
|
33
|
+
version: '3.2'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '3.
|
40
|
+
version: '3.2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: nokogiri
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.10.
|
47
|
+
version: 1.10.10
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.10.
|
54
|
+
version: 1.10.10
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: asciidoctor-plantuml
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.0.
|
61
|
+
version: 0.0.12
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.0.
|
68
|
+
version: 0.0.12
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '13.0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '13.0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: rdoc
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
89
|
+
version: '6.2'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
96
|
+
version: '6.2'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: bundler
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
103
|
+
version: '1.0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
110
|
+
version: '1.0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: simplecov
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -180,13 +180,13 @@ dependencies:
|
|
180
180
|
version: '2.7'
|
181
181
|
description: GitLab Flavored Markdown extensions on top of Kramdown markup. Tries
|
182
182
|
to be as close as possible to existing extensions.
|
183
|
-
email:
|
183
|
+
email:
|
184
|
+
- brodock@gmail.com
|
184
185
|
executables: []
|
185
186
|
extensions: []
|
186
|
-
extra_rdoc_files:
|
187
|
-
- LICENSE.txt
|
188
|
-
- README.md
|
187
|
+
extra_rdoc_files: []
|
189
188
|
files:
|
189
|
+
- CHANGELOG.md
|
190
190
|
- LICENSE.txt
|
191
191
|
- README.md
|
192
192
|
- lib/gitlab_kramdown.rb
|
@@ -201,30 +201,30 @@ files:
|
|
201
201
|
- lib/gitlab_kramdown/parser/strikethrough.rb
|
202
202
|
- lib/gitlab_kramdown/version.rb
|
203
203
|
- lib/kramdown/parser/gitlab_kramdown.rb
|
204
|
-
homepage:
|
204
|
+
homepage: https://gitlab.com/gitlab-org/gitlab_kramdown
|
205
205
|
licenses:
|
206
206
|
- MIT
|
207
207
|
metadata:
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
208
|
+
homepage_uri: https://gitlab.com/gitlab-org/gitlab_kramdown
|
209
|
+
source_code_uri: https://gitlab.com/gitlab-org/gitlab_kramdown
|
210
|
+
changelog_uri: https://gitlab.com/gitlab-org/gitlab_kramdown/blob/master/CHANGELOG.md
|
211
|
+
bug_tracker_uri: https://gitlab.com/gitlab-org/gitlab_kramdown/-/issues
|
212
212
|
post_install_message:
|
213
213
|
rdoc_options: []
|
214
214
|
require_paths:
|
215
215
|
- lib
|
216
216
|
required_ruby_version: !ruby/object:Gem::Requirement
|
217
217
|
requirements:
|
218
|
-
- - "
|
218
|
+
- - ">="
|
219
219
|
- !ruby/object:Gem::Version
|
220
|
-
version:
|
220
|
+
version: 2.5.0
|
221
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
222
222
|
requirements:
|
223
223
|
- - ">="
|
224
224
|
- !ruby/object:Gem::Version
|
225
225
|
version: '0'
|
226
226
|
requirements: []
|
227
|
-
rubygems_version: 3.0.
|
227
|
+
rubygems_version: 3.0.3
|
228
228
|
signing_key:
|
229
229
|
specification_version: 4
|
230
230
|
summary: GitLab Flavored Kramdown
|