10 lines
213 B
Ruby
10 lines
213 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class Markdown < Grape::Entity
|
||
|
expose :html, documentation: { type: 'string', example: '<p dir=\"auto\">Hello world!</p>"' }
|
||
|
end
|
||
|
end
|
||
|
end
|