# frozen_string_literal: true module API module Entities class Markdown < Grape::Entity expose :html, documentation: { type: 'string', example: '

Hello world!

"' } end end end