debian-mirror-gitlab/lib/api/entities/markdown.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
213 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# 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