FIX: only add image size when with & height are in pixels

This commit is contained in:
Régis Hanol
2019-07-05 20:34:11 +02:00
parent 589351d996
commit 155cad8b85
2 changed files with 5 additions and 3 deletions

View File

@@ -220,10 +220,10 @@ class InlineUploads
if src && (matched_uploads(src).present? || external_src)
text = node.attributes["alt"]&.value
width = node.attributes["width"]&.value
height = node.attributes["height"]&.value
width = node.attributes["width"]&.value.to_i
height = node.attributes["height"]&.value.to_i
title = node.attributes["title"]&.value
text = "#{text}|#{width}x#{height}" if width && height
text = "#{text}|#{width}x#{height}" if width > 0 && height > 0
after_html_tag = match[0].present?
spaces_before =