prose_mirror_ruby 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 +17 -0
- data/lib/prose_mirror/serializers/markdown_serializer.rb +9 -0
- data/lib/prose_mirror/version.rb +1 -1
- data/lib/prose_mirror.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 712eb9a3c07388a0e452db157d328810bdcf6ba1b8c981a7c4eb5003970cc219
|
4
|
+
data.tar.gz: a587600cac0912ad5c8c9e4de877fb712d2a07db8feddacd398316643f058da6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee856c284a5d4fad868f56703db77cbd96d2637aa68463bd8749eebbb56b3c5ecf173d7bc8a6895f87e6f756942004e55366f6e9ca43c0c0072dc867d3f176f2
|
7
|
+
data.tar.gz: 27d75931228ac3bd915d36a24450dab68e108e02276ff68041465acb9f7f07ac51a65059bfbb374f69626fc76ee0d7161750ca7cb5b9fa18c5696e8458b66388
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.1.7] - 2024-03-19
|
9
|
+
|
10
|
+
### Added
|
11
|
+
- Default mark support
|
12
|
+
- Strikethrough mark support
|
13
|
+
- Blank mark support
|
14
|
+
|
15
|
+
## [0.1.6] - 2024-03-10
|
16
|
+
|
17
|
+
### Fixed
|
18
|
+
- Improved escaping for markdown output
|
19
|
+
|
20
|
+
## [0.1.5] - 2024-03-07
|
21
|
+
|
22
|
+
### Added
|
23
|
+
- Inline thread support in markdown serializer
|
24
|
+
|
8
25
|
## [0.1.0] - 2023-06-15
|
9
26
|
|
10
27
|
### Added
|
@@ -265,9 +265,18 @@ module ProseMirror
|
|
265
265
|
open: ->(_, mark, parent, index) { ProseMirror::Serializers.backticks_for(parent.child(index), -1) },
|
266
266
|
close: ->(_, mark, parent, index) { ProseMirror::Serializers.backticks_for(parent.child(index - 1), 1) },
|
267
267
|
escape: false
|
268
|
+
},
|
269
|
+
|
270
|
+
strikethrough: {
|
271
|
+
open: "~~",
|
272
|
+
close: "~~",
|
273
|
+
mixable: true,
|
274
|
+
expel_enclosing_whitespace: true
|
268
275
|
}
|
269
276
|
}
|
270
277
|
|
278
|
+
DEFAULT_MARK_SERIALIZERS.default = BLANK_MARK
|
279
|
+
|
271
280
|
# Constructor with node serializers, mark serializers, and options
|
272
281
|
# @param nodes [Hash] Node serializer functions
|
273
282
|
# @param marks [Hash] Mark serializer specifications
|
data/lib/prose_mirror/version.rb
CHANGED
data/lib/prose_mirror.rb
CHANGED
@@ -26,8 +26,8 @@ module ProseMirror
|
|
26
26
|
# @return [String] The markdown representation
|
27
27
|
def self.to_markdown(node, options = {})
|
28
28
|
serializer = Serializers::MarkdownSerializer.new(
|
29
|
-
Serializers::MarkdownSerializer::DEFAULT_NODE_SERIALIZERS,
|
30
|
-
Serializers::MarkdownSerializer::DEFAULT_MARK_SERIALIZERS,
|
29
|
+
Serializers::MarkdownSerializer::DEFAULT_NODE_SERIALIZERS.dup,
|
30
|
+
Serializers::MarkdownSerializer::DEFAULT_MARK_SERIALIZERS.dup,
|
31
31
|
options
|
32
32
|
)
|
33
33
|
serializer.serialize(node)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prose_mirror_ruby
|
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
|
- Robert Ross
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|