prose_mirror_ruby 0.1.6 → 0.1.8
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 +22 -0
- data/lib/prose_mirror/serializers/markdown_serializer.rb +12 -2
- 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: 5fea957f77d055100350c126b812ef21b534d382f559173f3126ff010a9e9e0c
|
4
|
+
data.tar.gz: 8f66d489ca827eedd75fd9beccef1350ef9254c72ff6e7ebc38679ca3d4ff382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b02a3a7dd4de879c018af0f998ef72b9e05139d4331a910dc62e449fb68d60ba752a68f9e9d6336c15ed32835c12c81ed922aa742787174b5e092a4c146b9066
|
7
|
+
data.tar.gz: 129e625f31c0e9d02ab7c21423154461731a1c51e4c651b5045536c227a5f9c5fc3829a0ea5a4a998c268821cc7d0874ef20a6c3300c998658e653c09b3948a0
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,28 @@ 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.8] - 2024-06-12
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Minor improvements and bug fixes
|
12
|
+
|
13
|
+
## [0.1.7] - 2024-03-19
|
14
|
+
|
15
|
+
### Added
|
16
|
+
- Default mark support
|
17
|
+
- Strikethrough mark support
|
18
|
+
- Blank mark support
|
19
|
+
|
20
|
+
## [0.1.6] - 2024-03-10
|
21
|
+
|
22
|
+
### Fixed
|
23
|
+
- Improved escaping for markdown output
|
24
|
+
|
25
|
+
## [0.1.5] - 2024-03-07
|
26
|
+
|
27
|
+
### Added
|
28
|
+
- Inline thread support in markdown serializer
|
29
|
+
|
8
30
|
## [0.1.0] - 2023-06-15
|
9
31
|
|
10
32
|
### Added
|
@@ -35,7 +35,8 @@ module ProseMirror
|
|
35
35
|
},
|
36
36
|
|
37
37
|
heading: ->(state, node, parent = nil, index = nil) {
|
38
|
-
|
38
|
+
level = node.attrs[:level].to_i.clamp(1, 6)
|
39
|
+
state.write(state.repeat("#", level) + " ")
|
39
40
|
state.render_inline(node, false)
|
40
41
|
state.close_block(node)
|
41
42
|
},
|
@@ -265,9 +266,18 @@ module ProseMirror
|
|
265
266
|
open: ->(_, mark, parent, index) { ProseMirror::Serializers.backticks_for(parent.child(index), -1) },
|
266
267
|
close: ->(_, mark, parent, index) { ProseMirror::Serializers.backticks_for(parent.child(index - 1), 1) },
|
267
268
|
escape: false
|
269
|
+
},
|
270
|
+
|
271
|
+
strikethrough: {
|
272
|
+
open: "~~",
|
273
|
+
close: "~~",
|
274
|
+
mixable: true,
|
275
|
+
expel_enclosing_whitespace: true
|
268
276
|
}
|
269
277
|
}
|
270
278
|
|
279
|
+
DEFAULT_MARK_SERIALIZERS.default = BLANK_MARK
|
280
|
+
|
271
281
|
# Constructor with node serializers, mark serializers, and options
|
272
282
|
# @param nodes [Hash] Node serializer functions
|
273
283
|
# @param marks [Hash] Mark serializer specifications
|
@@ -645,7 +655,7 @@ module ProseMirror
|
|
645
655
|
|
646
656
|
# Repeat a string n times
|
647
657
|
def repeat(str, n)
|
648
|
-
str * n
|
658
|
+
str * n.to_i
|
649
659
|
end
|
650
660
|
end
|
651
661
|
end
|
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.8
|
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
|