Skip to content

Commit 07b82b2

Browse files
committed
Version 0.2.0
1 parent 14eeb30 commit 07b82b2

File tree

4 files changed

+46
-22
lines changed

4 files changed

+46
-22
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## [0.2.0] - 2023-07-03
2+
3+
Hans Lemuet (@Spone) is the new maintainer. The fork is now hosted at https://github.com/etaminstudio/prosemirror_to_html
4+
5+
### Added
6+
7+
- Added support for marks `Strike`, `Subscript`, `Superscript`, `Underline`
8+
- Added support for nodes `Blockquote`, `HorizontalRule`, `Table`, `TableCell`, `TableHeader`, `TableRow`
9+
- `Link` mark: added support for conditional `target`, `title`, `rel` attributes
10+
- `Heading` node: added support for `level` attribute
11+
12+
### Changed
13+
14+
- Improve code style (always use snake_case for methods)
15+
- Refactor `Renderer`
16+
- Refactor `Node`
17+
- Refactor specs to have one spec file for each node and mark
18+
- Update dependencies
19+
20+
### Removed
21+
22+
- `CodeBlockWrapper` node removed in favor of `CodeBlock`
23+
- `Text` node removed
24+
- `User` node removed

Gemfile.lock

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
PATH
22
remote: .
33
specs:
4-
prosemirror_to_html (0.1.0)
4+
prosemirror_to_html (0.2.0)
55
nokogiri
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
diff-lcs (1.4.4)
11-
mini_portile2 (2.6.1)
12-
nokogiri (1.12.4)
13-
mini_portile2 (~> 2.6.1)
10+
diff-lcs (1.5.0)
11+
mini_portile2 (2.8.2)
12+
nokogiri (1.15.2)
13+
mini_portile2 (~> 2.8.2)
1414
racc (~> 1.4)
15-
racc (1.5.2)
15+
racc (1.7.1)
1616
rake (13.0.6)
17-
rspec (3.10.0)
18-
rspec-core (~> 3.10.0)
19-
rspec-expectations (~> 3.10.0)
20-
rspec-mocks (~> 3.10.0)
21-
rspec-core (3.10.1)
22-
rspec-support (~> 3.10.0)
23-
rspec-expectations (3.10.1)
17+
rspec (3.12.0)
18+
rspec-core (~> 3.12.0)
19+
rspec-expectations (~> 3.12.0)
20+
rspec-mocks (~> 3.12.0)
21+
rspec-core (3.12.2)
22+
rspec-support (~> 3.12.0)
23+
rspec-expectations (3.12.3)
2424
diff-lcs (>= 1.2.0, < 2.0)
25-
rspec-support (~> 3.10.0)
26-
rspec-mocks (3.10.2)
25+
rspec-support (~> 3.12.0)
26+
rspec-mocks (3.12.5)
2727
diff-lcs (>= 1.2.0, < 2.0)
28-
rspec-support (~> 3.10.0)
29-
rspec-support (3.10.2)
30-
yard (0.9.26)
28+
rspec-support (~> 3.12.0)
29+
rspec-support (3.12.1)
30+
yard (0.9.34)
3131

3232
PLATFORMS
3333
ruby

lib/prosemirror_to_html/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ProsemirrorToHtml
2-
VERSION = "0.1.0"
2+
VERSION = "0.2.0"
33
end

prosemirror_to_html.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ require "prosemirror_to_html/version"
66
Gem::Specification.new do |spec|
77
spec.name = "prosemirror_to_html"
88
spec.version = ProsemirrorToHtml::VERSION
9-
spec.authors = ["Brian Kimball"]
10-
spec.email = ["[email protected]"]
9+
spec.authors = ["Hans Lemuet", "Brian Kimball"]
10+
1111

1212
spec.summary = %q{Takes ProseMirror compatible JSON and outputs HTML.}
1313
spec.description = %q{Takes ProseMirror compatible JSON and outputs HTML.}
14-
spec.homepage = "https://github.com/inputhq/prosemirror_to_html"
14+
spec.homepage = "https://github.com/etaminstudio/prosemirror_to_html"
1515
spec.license = "MIT"
1616

1717

0 commit comments

Comments
 (0)