Sha256: fa3f51cd191276ff8343e82859a585b9153248a3e213ee14802b327c0834607d
Contents?: true
Size: 574 Bytes
Versions: 90
Compression:
Stored size: 574 Bytes
Contents
# frozen_string_literal: true module Nanoc::Filters # @api private class RDoc < Nanoc::Filter identifier :rdoc requires 'rdoc' # Runs the content through [RDoc::Markup](http://docs.seattlerb.org/rdoc/RDoc/Markup.html). # This method takes no options. # # @param [String] content The content to filter # # @return [String] The filtered content def run(content, _params = {}) options = ::RDoc::Options.new to_html = ::RDoc::Markup::ToHtml.new(options) ::RDoc::Markup.new.convert(content, to_html) end end end
Version data entries
90 entries across 90 versions & 1 rubygems