forked from inputhq/prosemirror_to_html
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
||
|
||
|