prose_mirror_ruby 0.1.7 → 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 +5 -0
- data/lib/prose_mirror/serializers/markdown_serializer.rb +3 -2
- data/lib/prose_mirror/version.rb +1 -1
- metadata +1 -1
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,11 @@ 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
|
+
|
8
13
|
## [0.1.7] - 2024-03-19
|
9
14
|
|
10
15
|
### 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
|
},
|
@@ -654,7 +655,7 @@ module ProseMirror
|
|
654
655
|
|
655
656
|
# Repeat a string n times
|
656
657
|
def repeat(str, n)
|
657
|
-
str * n
|
658
|
+
str * n.to_i
|
658
659
|
end
|
659
660
|
end
|
660
661
|
end
|
data/lib/prose_mirror/version.rb
CHANGED