class Growi::ImageConverter::AttachedImageFile

Image Markdownとアタッチされた画像を対応させるクラス

Attributes

data[RW]
markdown_images[RW]

Public Class Methods

new(markdown_images, attached_file) click to toggle source
# File lib/growi/image_converter/attached_image_file.rb, line 7
def initialize(markdown_images, attached_file)
  @data = attached_file
  @markdown_images = markdown_images
end