@nertc commented on this pull request.


> +      if accumulated_length >= max_length
+        node.remove unless !last_child.nil? && 
last_child.ancestors.include?(node)
+        next
+      end
+
+      next unless node.children.empty?
+
+      accumulated_length += node.text? ? node.text.length : empty_tag_length
+      if accumulated_length < max_length
+        last_child = node
+      else
+        node.remove
+      end
+    end
+
+    RichText::SimpleFormat.new.sanitize(doc)

Sorry for the late answer. As HTML was truncated and, therefore, changed, Ruby 
required additional sanitization to ensure that everything was still okay. I'll 
move truncation method in the `RichText::Base`. I think, it will solve most of 
problems and additional complexities introduced by adding this method to the 
concern.

-- 
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/5121#discussion_r1896487537
You are receiving this because you are subscribed to this thread.

Message ID: 
<openstreetmap/openstreetmap-website/pull/5121/review/2521592...@github.com>
_______________________________________________
rails-dev mailing list
rails-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/rails-dev

Reply via email to