Sha256: 9267e343f46f2262129afa613e7b6ae6adcca7c97d712beee6ee58b419f8171a
Contents?: true
Size: 417 Bytes
Versions: 11
Compression:
Stored size: 417 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
11 entries across 11 versions & 1 rubygems