Sha256: 513ad1d405f017f2b5fbb166722463f1d337fd0bbc1395afca60957ddb250629

Contents?: true

Size: 437 Bytes

Versions: 21

Compression:

Stored size: 437 Bytes

Contents

module RailsConnector

  # Include this module in order to tag the string as one with Markdown content
  module MarkdownString #:nodoc:
    include LinkResolvable
    # Returns whether the String contains Markdown (default to true, overrides String.markdown?).
    def markdown?
      true
    end
  end

end

class String #:nodoc:
  # Returns whether the String contains Markdown (default to false).
  def markdown?
    false
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
infopark_rails_connector-6.8.0.beta.200.621.4c8e1b0 lib/rails_connector/markdown_string.rb