prose_mirror_ruby 0.1.5 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f08a0d685cd35c06b11f8272d316cb05b2b07739dc81c21f33dc7bd1321ff94
4
- data.tar.gz: 02aca112ba7040beba1e91223cb73356a730a7dabbede1ea153eba724f1cd70e
3
+ metadata.gz: 712eb9a3c07388a0e452db157d328810bdcf6ba1b8c981a7c4eb5003970cc219
4
+ data.tar.gz: a587600cac0912ad5c8c9e4de877fb712d2a07db8feddacd398316643f058da6
5
5
  SHA512:
6
- metadata.gz: f22625968017270c1780b21285c8aaf6c903492f641b0e68a9bac483f1f82cc200296b1a03ca361ff24162efc43a8082373223e8c8d9bd8238ee21b9d182127d
7
- data.tar.gz: e04a99b48b6e3808970ac33cbc1018228ffc22e384b25df8cb09145d3af56ef581905a2d0df5ed0c0e874adbd3b21f4f601b3e15b53098fdeb44f0674938dd14
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
@@ -638,7 +647,7 @@ module ProseMirror
638
647
  str = str.gsub(/[`*\\~\[\]_]/) { |m| "\\" + m }
639
648
  if start_of_line
640
649
  str = str.gsub(/^[#\-*+>]/) { |m| "\\" + m }
641
- .gsub(/^(\d+)\./) { |_, d| d + "\\." }
650
+ .gsub(/^(\d+)\./) { |match, d| d.to_s + "\\." }
642
651
  end
643
652
  str.gsub("![", "\\![")
644
653
  end
@@ -1,3 +1,3 @@
1
1
  module ProseMirror
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.7"
3
3
  end
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.5
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-07 00:00:00.000000000 Z
11
+ date: 2025-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport