Sha256: 9ed72d5c86af11765d15511d650a7b1522885238750dd479a827476951ebf4ed
Contents?: true
Size: 419 Bytes
Versions: 32
Compression:
Stored size: 419 Bytes
Contents
module RailsConnector # Include this module in order to tag the string as one with Markdown content module MarkdownString include LinkResolvable # Returns whether the String contains Markdown (default to true, overrides String.markdown?). def markdown? true end end end class String # Returns whether the String contains Markdown (default to false). def markdown? false end end
Version data entries
32 entries across 32 versions & 2 rubygems