Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Spone committed Jul 3, 2023
1 parent 14eeb30 commit 07b82b2
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 22 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## [0.2.0] - 2023-07-03

Hans Lemuet (@Spone) is the new maintainer. The fork is now hosted at https://github.com/etaminstudio/prosemirror_to_html

### Added

- Added support for marks `Strike`, `Subscript`, `Superscript`, `Underline`
- Added support for nodes `Blockquote`, `HorizontalRule`, `Table`, `TableCell`, `TableHeader`, `TableRow`
- `Link` mark: added support for conditional `target`, `title`, `rel` attributes
- `Heading` node: added support for `level` attribute

### Changed

- Improve code style (always use snake_case for methods)
- Refactor `Renderer`
- Refactor `Node`
- Refactor specs to have one spec file for each node and mark
- Update dependencies

### Removed

- `CodeBlockWrapper` node removed in favor of `CodeBlock`
- `Text` node removed
- `User` node removed
36 changes: 18 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
PATH
remote: .
specs:
prosemirror_to_html (0.1.0)
prosemirror_to_html (0.2.0)
nokogiri

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.4.4)
mini_portile2 (2.6.1)
nokogiri (1.12.4)
mini_portile2 (~> 2.6.1)
diff-lcs (1.5.0)
mini_portile2 (2.8.2)
nokogiri (1.15.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
racc (1.5.2)
racc (1.7.1)
rake (13.0.6)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.5)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
yard (0.9.26)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
yard (0.9.34)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/prosemirror_to_html/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ProsemirrorToHtml
VERSION = "0.1.0"
VERSION = "0.2.0"
end
6 changes: 3 additions & 3 deletions prosemirror_to_html.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ require "prosemirror_to_html/version"
Gem::Specification.new do |spec|
spec.name = "prosemirror_to_html"
spec.version = ProsemirrorToHtml::VERSION
spec.authors = ["Brian Kimball"]
spec.email = ["[email protected]"]
spec.authors = ["Hans Lemuet", "Brian Kimball"]
spec.email = ["[email protected]", "[email protected]"]

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


Expand Down

0 comments on commit 07b82b2

Please sign in to comment.