Method: Gitlab::Client::Markdown#markdown
- Defined in:
- lib/gitlab/client/markdown.rb
#markdown(text, options = {}) ⇒ Gitlab::ObjectifiedHash
Render an arbitrary Markdown document
18 19 20 21 |
# File 'lib/gitlab/client/markdown.rb', line 18 def markdown(text, = {}) body = { text: text }.merge() post('/markdown', body: body) end |